/* 
   BQ Contractors Modernization
   Theme: Professional, Industrial, Premium
   Colors: Deep Blue, Safety Orange, White, Grey
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
  --primary: #002D62;
  /* Deep Blue */
  --secondary: #F7931E;
  /* Safety Orange/Gold */
  --dark: #1A1A1A;
  --light: #F4F6F8;
  --white: #FFFFFF;
  --grey: #666666;
  --border: #E0E0E0;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #e08210;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 100px;
  /* Adjust based on logo aspect ratio */
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
  font-size: 16px;
  padding: 10px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

/* Dropdown Styles */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  top: 100%;
  left: 0;
  border-top: 3px solid var(--primary);
  border-radius: 0 0 4px 4px;
}

.nav-links li:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.3s ease;
}

.dropdown-content li {
  width: 100%;
}

.dropdown-content a {
  padding: 12px 20px;
  display: block;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
}

.dropdown-content a:hover {
  background-color: #f9f9f9;
  padding-left: 25px;
  /* Slide effect */
}

.dropdown-content a:last-child {
  border-bottom: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: calc(100vh - 120px);
  margin-top: 120px;
  background: linear-gradient(rgba(0, 45, 98, 0.7), rgba(0, 45, 98, 0.7)), url('./images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-content {
  max-width: 800px;
  animation: fadeUp 1s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

/* Services Preview */
.services-preview {
  background-color: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-header .line {
  width: 80px;
  height: 4px;
  background-color: var(--secondary);
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--secondary);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--primary);
}

/* About Preview */
.about-preview {
  background-color: var(--white);
}

/* Feature Row (Zigzag Layout) */
.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-text {
  flex: 1;
}

.feature-image {
  flex: 1;
  position: relative;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

/* About Grid (Legacy/Fallback) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image img {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.service-detail .about-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--grey);
}

.achievements-list {
  margin-bottom: 30px;
}

.achievements-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 0.95rem;
}

.achievements-list li::before {
  content: '\f00c';
  /* FontAwesome Check */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--secondary);
}

.stats {
  display: flex;
  gap: 60px;
  margin-top: 40px;
  margin-bottom: 40px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.stat-item h4 {
  font-size: 2.5rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey);
  font-weight: 600;
}

/* Latest News */
.latest-news {
  background-color: var(--light);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.news-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.news-image {
  height: 200px;
  background-color: #ddd;
  /* Placeholder color */
  background-size: cover;
  background-position: center;
}

.news-content {
  padding: 25px;
}

.news-date {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.news-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.news-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
}

.news-link:hover {
  color: var(--secondary);
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
  bottom: -10px;
  left: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a0a0a0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #a0a0a0;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  /* Mobile Navigation */
  .hamburger {
    display: block;
    cursor: pointer;
    z-index: 1100;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 120px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    margin-bottom: 20px;
  }

  .nav-links a {
    font-size: 1.1rem;
    display: block;
    width: 100%;
  }

  /* Mobile Dropdown */
  .dropdown-content {
    position: static;
    box-shadow: none;
    border-top: none;
    background: #f9f9f9;
    padding-left: 20px;
    display: none;
    /* JS toggles this */
  }

  .dropdown-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  .dropdown-content a {
    padding: 10px;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
  }

  .about-grid,
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 40px;
  }

  .feature-text,
  .feature-image {
    width: 100%;
    flex: auto;
  }

  .about-image {
    width: 100%;
  }

  .stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}

/* Hamburger Icon Styles */
.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--primary);
  transition: all 0.3s ease-in-out;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Global Responsive Adjustments */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .projects-grid,
  .services-grid,
  .news-grid,
  .team-grid {
    grid-template-columns: 1fr;
    /* Force single column on very small screens */
  }
}

/* Timeline Styles */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
  padding-left: 30px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 30px;
}

.timeline-marker {
  position: absolute;
  left: -36px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--secondary);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--primary);
}

.timeline-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.timeline-year {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 10px;
  display: inline-block;
}

.timeline-content h3 {
  margin: 5px 0 10px;
  color: var(--primary);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 3px solid transparent;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--secondary);
}

.team-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin-bottom: 20px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: var(--transition);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 0 20px;
}

.team-card h3 {
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.team-role {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  display: block;
}

.team-desc {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* CSR Gallery */
.csr-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2x2 Grid */
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .csr-gallery {
    grid-template-columns: 1fr;
    /* Stack on mobile */
  }
}

.csr-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.csr-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.csr-img-wrapper {
  height: 300px;
  /* Increased height */
  overflow: hidden;
}

.csr-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  /* Focus on top of images */
  transition: transform 0.5s ease;
}

.csr-item:hover .csr-img-wrapper img {
  transform: scale(1.05);
}

.csr-caption {
  padding: 20px;
  text-align: left;
}

.csr-caption h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.csr-caption p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Page Header Global Styles */
.page-header {
  margin-top: 120px;
  /* Offset for fixed header */
  padding: 100px 0;
  color: var(--white);
  text-align: center;
  background-size: cover;
  background-position: center;
  /* Default gradient fallback */
  background-color: var(--primary);
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Projects Grid Styles */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.project-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.project-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-cat {
  color: var(--secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 5px;
  display: block;
}

.project-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.project-card p {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Partners Grid */
/* Partners 3D Carousel */
/* Partners Infinite Marquee */
/* Partners Infinite Marquee */
/* Partners Infinite Marquee */
.logo-marquee {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  overflow: hidden;
  position: relative;
  display: flex !important;
  /* Fix: Forces tracks to be side-by-side */
  user-select: none;
  /* Premium Fade Mask */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
  display: flex !important;
  flex-wrap: nowrap !important;
  /* Strict Single Row */
  width: auto;
  min-width: 100%;
  /* Ensure it fills spacing */
  flex-shrink: 0;
  /* Prevent shrinking */
  align-items: center;
  /* Vertical Alignment */
  animation: scroll 30s linear infinite;
  /* Faster Speed (was 60s) */
  will-change: transform;
  /* Hardware Acceleration */
}

.logo-marquee:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content img {
  height: 80px;
  width: auto;
  flex: 0 0 auto;
  /* Prevent shrinking */
  margin: 0 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
  backface-visibility: hidden;
  /* crisper rendering */
}

.marquee-content img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
  will-change: transform, filter;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }

  /* Move full width of track for seamless loop */
}

@media (max-width: 768px) {
  .marquee-content img {
    height: 50px;
    margin: 0 20px;
  }
}

/* Ensure images fit well */
.partner-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

/* Hover effect on the Ring - pause rotation? */
.partners-scene:hover .partners-ring {
  animation-play-state: paused;
}

.partner-item:hover img {
  filter: grayscale(0%);
}

.partner-item:hover {
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@keyframes spin {
  from {
    transform: rotateY(0deg);
  }

}

.image-wrapper img {
  max-height: 250px;
}

/* 3D Tilt Effect for Badges */
.tilt-container {
  perspective: 1000px;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}

.tilt-card {
  width: 48%;
  /* Fill most of the area */
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  /* Smooth movement */
  cursor: pointer;
}

.tilt-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transform: translateZ(20px);
  /* Pop out */
  transition: box-shadow 0.3s ease;
}

.tilt-card:hover img {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Glare Effect */
.tilt-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 12px;
  transform: translateZ(21px);
  /* Above image */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.tilt-card:hover::after {
  opacity: 0.6;
}

/* Project Filters */
.project-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px auto 20px;
  padding: 0 20px;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid var(--secondary);
  border-radius: 50px;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.filter-btn:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
  background: var(--secondary);
  color: #fff;
  /* White text for active state */
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
  /* Glow effect */
}

/* Hide inactive categories */
.project-category {
  display: none;
  /* Hidden by default when filtering */
  animation: fadeIn 0.5s ease-in-out;
}

.project-category.show {
  display: block;
  /* Show active */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Projects Grid from HTML */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.project-image {
  height: 250px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 20px;
  flex-grow: 1;
}

.project-cat {
  color: var(--secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 5px;
  display: block;
}