:root {
  --maroon: #800000;
  --maroon-dark: #600000;
  --skyblue: #00bfff;
  --dark: #1a1a1a;
  --white: #ffffff;
  --light-bg: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background: var(--white);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--maroon);
}
.logo span {
  color: var(--dark);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-domain {
  margin-left: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #800000;
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-domain i {
  color: #00bfff;
  font-size: 14px;
}

.brand-logo {
  width: 198px;
  height: 60px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-top {
  font-size: 20px;
  font-weight: 700;
  color: #c40000;
}

.brand-bottom {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(90deg, #0033cc, #00b3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}
.nav-links li {
  margin-left: 25px;
}
.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s;
}
.nav-links a:hover {
  color: var(--maroon);
}

.btn-wa-nav {
  background: #25d366;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url("https://images.unsplash.com/photo-1562654501-a0ccc0af3fb1?auto=format&fit=crop&q=80&w=1600");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 0 20px;
}

.op-hours-badge {
  background: var(--skyblue);
  color: #000;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 25px;
  display: inline-block;
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}
.hero p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

/* Buttons */
.btn-primary {
  background: var(--maroon);
  color: var(--white);
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.btn-outline:hover {
  background: var(--skyblue);
  color: #000;
}

/* Section General */
section {
  padding: 100px 8%;
}
.bg-light {
  background: var(--light-bg);
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title span {
  color: var(--maroon);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}
.section-title h2 {
  font-size: 2.5rem;
  margin-top: 10px;
}
.line {
  width: 60px;
  height: 5px;
  background: var(--maroon);
  margin: 15px auto;
  border-radius: 10px;
}

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  border: 1px solid #eee;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--maroon);
}
.product-card.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.product-card.hide {
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
  pointer-events: none;
}
.product-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-info {
  padding: 25px;
}
.product-info h3 {
  margin-bottom: 12px;
  color: var(--maroon);
  font-weight: 700;
}
.product-info p {
  color: #666;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonial-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.stars {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Contact & Map */
.location-section {
  padding-top: 110px;
  padding-bottom: 110px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.location-section .contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.1fr);
  gap: 40px;
  align-items: stretch;
}

.location-section .contact-details {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.location-section .contact-kicker {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #0b63f6;
  margin-bottom: 12px;
}

.location-section .contact-details > h2 {
  font-size: 2.1rem;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #111827;
}

.location-section .info-block {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  background: #fff;
}

.location-section .info-block + .info-block {
  margin-top: 14px;
}

.location-section .info-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  background: linear-gradient(135deg, #0f172a, #1d4ed8, #06b6d4);
  box-shadow: 0 10px 20px rgba(29, 78, 216, 0.28);
}

.location-section .info-content h3 {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  color: #0f172a;
  margin-bottom: 8px;
}

.location-section .info-content p {
  color: #1f2937;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.location-section .inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0b63f6;
  text-decoration: none;
}

.location-section .inline-link:hover {
  text-decoration: underline;
}

.location-section .map-container {
  min-height: 100%;
}

.location-section .contact-map {
  position: sticky;
  top: 110px;
}

.location-section .social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.location-section .social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  text-decoration: none;
}

.location-section .instagram-btn {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.location-section .facebook-btn {
  background: linear-gradient(135deg, #1877f2, #0e5fd8);
}

.location-section .service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.location-section .service-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #dbe3ef;
  background: #f8fbff;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 600;
}
.map-wrapper {
  width: 100%;
  position: relative;
  height: 100%;
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
}

.business-card {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.25);
  z-index: 5;
}

.business-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.business-logo {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  object-fit: cover;
}

.business-card h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.business-card .rating {
  font-size: 0.85rem;
  color: #444;
}

.business-card .stars {
  color: #fbbc04;
  margin-right: 6px;
}

.business-address {
  font-size: 0.85rem;
  color: #555;
  margin: 8px 0 12px;
}

.owner-badge {
  margin: 8px 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0b63f6;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-view-map {
  display: inline-block;
  background: #0b63f6;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  text-decoration: none;
}

.btn-view-map:hover {
  background: #094bcc;
}

.map-wrapper iframe {
  flex: 1;
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
}

/* Floating WA */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 2000;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
  animation: pulseWA 2.5s infinite;
}
.wa-float.show {
  transform: translateY(0);
  opacity: 1;
}
.wa-float:hover {
  transform: scale(1.1);
}

.wa-icon {
  width: 34px;
  height: 34px;
}

@keyframes pulseWA {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

footer {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 40px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .location-section .contact-grid,
  .testimonial-container {
    grid-template-columns: 1fr;
  }
  .location-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .location-section .contact-details {
    padding: 26px;
  }
  .location-section .contact-map {
    position: static;
  }
  .map-wrapper {
    flex-direction: column;
  }
  .business-card {
    position: static;
    width: 100%;
    border-radius: 14px;
    margin: 0;
  }
  .map-wrapper iframe {
    height: 350px;
    min-height: 350px;
  }
}
.cta-section {
  background: var(--maroon);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.cta-section p {
  margin-bottom: 30px;
  opacity: 0.9;
}

.urgency-text {
  margin-top: 20px;
  font-weight: 700;
  color: #ffd700;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
}

.filter-btn {
  border: 1px solid #eee;
  background: #fff;
  color: var(--dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}

.btn-wa {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 15px;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.25);
}

.product-card:hover {
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .filter-buttons {
    gap: 10px;
  }
  .filter-btn {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  .btn-wa {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .filter-btn {
    flex: 1 1 100%;
  }
  .map-wrapper iframe {
    height: 350px;
    min-height: 350px;
  }
}

nav .brand-text .brand-top {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(90deg, #c40000, #ff2d2d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.running-wrapper {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #971010, #0871a9, #09a218);
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0;
}

.running-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 22s linear infinite;
}

.running-wrapper:hover .running-track {
  animation-play-state: paused;
}

.running-text {
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  padding-right: 120px;
  font-size: 1.4rem;
}

.promo-section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #f9fbff 0%, #eef4ff 100%);
}

.about-section {
  padding: 100px 8%;
  background: #ffffff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-slider {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.08);
}

.about-slider:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.18),
    0 12px 24px rgba(0, 0, 0, 0.12);
}

.about-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.15)
  );
  pointer-events: none;
}

.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  filter: brightness(1.1) contrast(1);
  transition:
    opacity 1.2s ease-in-out,
    transform 6s ease-in-out;
}

.about-slide.active {
  opacity: 1;
  transform: scale(1.08);
}

.about-image {
  min-height: 420px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
  border-radius: 24px;
  overflow: hidden;
}

.about-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #800000;
}

.about-content h2 {
  font-size: 2rem;
  margin: 15px 0 20px;
}

.about-content p {
  color: #555;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.about-highlights span {
  background: #f1f5ff;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.promo-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  transition: 0.4s ease;
}

.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

.promo-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.promo-card:hover .promo-image img {
  transform: scale(1.05);
}

.promo-content {
  padding: 25px;
}

.promo-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #800000;
}

.promo-content p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 18px;
}

.btn-promo {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: 0.3s;
}

.btn-promo:hover {
  background: #1ebe5d;
}

.promo-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff3b3b;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .running-wrapper {
    height: 42px;
  }

  .running-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .running-track {
    animation-duration: 18s;
  }
}

@media (max-width: 1024px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  .about-image {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .promo-grid {
    grid-template-columns: 1fr;
  }
}

.hero {
  position: relative;
  min-height: 80vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)),
    url("../images/hero/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(128, 0, 255, 0.25),
    transparent 60%
  );
  pointer-events: none;
}

.footer-modern {
  background: linear-gradient(135deg, #800000, #3a003a);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo {
  width: 90px;
  margin-bottom: 20px;
}

.footer-modern h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-info {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 18px;
}

/* ===== CONTACT BOTTOM SECTION ===== */

.social-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  border: 1px solid #eef2f7;
  transition: all 0.3s ease;
  padding: 30px;
}

.social-card h3 {
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-card .social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
  padding: 0;
  gap: 0;
}

.social-btn.instagram {
  background: #e1306c;
}
.social-btn.facebook {
  background: #1877f2;
}
.social-btn.whatsapp {
  background: #25d366;
}

.social-card .social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

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

/* =====================================
   NAVBAR SCROLL EFFECT
===================================== */

.navbar-scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.print-portfolio-section {
  padding: 100px 8%;
  background: #ffffff;
}

.print-portfolio-head {
  text-align: center;
  margin-bottom: 40px;
}

.print-portfolio-head span {
  color: #800000;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.print-portfolio-head h2 {
  font-size: 2.4rem;
  margin: 10px 0;
}

.print-portfolio-head p {
  color: #666;
  font-size: 0.95rem;
}

.print-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.print-portfolio-card,
.portfolio-item {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.print-portfolio-card.show,
.portfolio-item.show {
  opacity: 1;
  transform: translateY(0);
}

.print-portfolio-card:hover,
.portfolio-item:hover {
  transform: translateY(-6px);
}

.print-portfolio-card img,
.portfolio-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.print-portfolio-card:hover img,
.portfolio-item:hover img {
  transform: scale(1.08);
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: calc(100vh - 120px);
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.why-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.why-card i {
  font-size: 26px;
  color: #800000;
  margin-bottom: 12px;
}

.clients-section {
  padding: 100px 8%;
  background: #ffffff;
  text-align: center;
}

.clients-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.clients-desc {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 0.95rem;
}

.clients-logos {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: logoScroll 25s linear infinite;
}

.clients-track img {
  height: 70px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.clients-track img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.clients-logos:hover .clients-track {
  animation-play-state: paused;
}
