html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: #e0e0e0;
}
/* Header styling moved to index.html */
/* Navigation background styling moved to index.html */
/* Navigation styles moved to index.html for better integration */
main {
  flex: 1;
  padding: 2em 0;
  background: transparent;
}
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  color: #e0e0e0;
  text-align: center;
  padding: 1.5em;
  width: 100%;
  border-top: 2px solid #444;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
}
.hidden {
  display: none;
}

::-webkit-scrollbar {
  width: 14px;
  background: #222;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

::-webkit-scrollbar-thumb:hover {
  background: #666;
}

::-webkit-scrollbar-button, /* Remove arrows */
::-webkit-scrollbar-corner { /* Remove corner bevel */
  display: none;
  background: transparent;
  height: 0;
  width: 0;
  border: none;
  box-shadow: none;
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #888 #222;
}
#contact {
  border: none;
  border-radius: 10px;
  padding: 2em;
  min-height: 500px; /* Increase this value for a taller section */
  background: #222;
  max-width: 600px;
  margin: 2em auto;
}

.content-section {
  max-width: 900px;
  margin: 2em auto;
  padding: 0 2em;
  text-align: left;
  background: rgba(45, 45, 45, 0.3);
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

iframe {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  min-height: 600px;
  height: 100vh;
  box-sizing: border-box;
  background: transparent;
  border-radius: 15px;
  border: none;
}

/* Page section styling - Updated to work with new transition system */
.page-section {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.page-section.active {
  display: block;
}

.page-section.fade-in {
  animation-name: fadeInSection;
}

.page-section.fade-out {
  animation-name: fadeOutSection;
}

@keyframes fadeOutSection {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Responsive design */
@media (max-width: 768px) {
  .home-hero {
    padding: 2em 1em;
    margin: 1em;
  }
  
  .home-content h2 {
    font-size: 2em;
  }
  
  #about,
  #contact {
    padding: 2em 1.5em;
    margin: 1em;
  }
  
  nav a {
    margin: 0 8px;
    padding: 0.5em 1em;
    font-size: 1em;
  }
  
  .content-section {
    padding: 0 1em;
    margin: 1em;
  }
}

@media (max-width: 480px) {
  .home-content h2 {
    font-size: 1.6em;
  }
  
  nav a {
    margin: 0 4px;
    padding: 0.4em 0.8em;
    font-size: 0.9em;
  }
  
  #about,
  #contact {
    padding: 1.5em 1em;
  }
}
.fade-in {
  animation: fadeInSection 0.6s;
}

@keyframes fadeInSection {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Home page styling */
.home-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  padding: 3em 2em;
  text-align: center;
  border-radius: 15px;
  margin: 2em auto;
  max-width: 900px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: none;
}

.home-content h2 {
  color: #fff;
  font-size: 2.5em;
  margin-bottom: 1em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home-icon {
  font-size: 1.2em;
  margin-right: 0.5em;
  color: #ff6b35;
}

.home-content p {
  color: #f0f0f0;
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 2em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.home-tagline {
  color: #ff6b35 !important;
  font-size: 1.4em !important;
  font-weight: 600 !important;
  margin-bottom: 1.5em !important;
  text-align: center;
  letter-spacing: 1px;
}

.home-trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  margin: 2em 0;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 107, 53, 0.15);
  padding: 0.6em 1.2em;
  border-radius: 10px;
  color: #f0f0f0;
  font-size: 0.95em;
  font-weight: 500;
  border: 1px solid rgba(255, 107, 53, 0.3);
  white-space: nowrap;
}

.home-highlight {
  color: #ff6b35;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-btn {
  background: linear-gradient(45deg, #b71c1c 0%, #ff6b35 100%);
  color: white;
  padding: 0.6em 1.2em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 0.9em;
  font-weight: 400;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(183, 28, 28, 0.3);
  display: inline-block;
  text-decoration: none;
}

.cta-btn-large {
  padding: 0.9em 2em;
  font-size: 1.1em;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(183, 28, 28, 0.4);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(183, 28, 28, 0.4);
  background: linear-gradient(45deg, #d32f2f 0%, #ff8a65 100%);
}

.cta-btn-large:hover {
  box-shadow: 0 10px 30px rgba(183, 28, 28, 0.5);
}

/* About page styling */
#about {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  padding: 3em;
  border-radius: 10px;
  margin: 2em auto;
  max-width: 1100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: none;
  color: #f0f0f0;
}

#about h2 {
  color: #ff6b35;
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 2em;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

#about p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 1.8em;
  text-align: justify;
  color: #f0f0f0;
}

#about ul {
  background: rgba(183, 28, 28, 0.1);
  padding: 2em;
  border-radius: 10px;
  border-left: 4px solid #b71c1c;
  margin: 2em 0;
}

#about li {
  font-size: 1.1em;
  margin-bottom: 1em;
  list-style: none;
  position: relative;
  padding-left: 2em;
}

#about li:before {
  content: "🔥";
  position: absolute;
  left: 0;
  color: #ff6b35;
}

/* Contact page styling */
#contact {
  border: none;
  border-radius: 15px;
  padding: 3em;
  min-height: 500px;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  max-width: 700px;
  margin: 2em auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: #e0e0e0;
}

#contact h2 {
  color: #ff6b35;
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 1.5em;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

#contact p {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 2em;
  line-height: 1.8;
  color: #f0f0f0;
}

#contact ul {
  background: rgba(183, 28, 28, 0.1);
  padding: 1.8em;
  border-radius: 10px;
  margin-bottom: 2.5em;
  border-left: 4px solid #b71c1c;
}

#contact li {
  margin-bottom: 1.2em;
  font-size: 1.05em;
  color: #f0f0f0;
  font-size: 1.1em;
  margin-bottom: 0.8em;
  list-style: none;
  position: relative;
  padding-left: 2em;
}

#contact li:before {
  content: "";
  position: absolute;
  left: 0;
}

#contact li:nth-child(2):before {
  content: "";
}

#contact li:nth-child(3):before {
  content: "";
}

#contact a {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
}

#contact a:hover {
  color: #ff8a65;
  text-decoration: underline;
}

/* Form styling */
#contact form {
  background: rgba(68, 68, 68, 0.3);
  padding: 2em;
  border-radius: 10px;
  border: 1px solid #555;
}

#contact label {
  display: block;
  color: #ff6b35;
  font-weight: bold;
  margin-bottom: 0.5em;
  font-size: 1.1em;
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
  width: 100%;
  padding: 1em;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(30, 30, 30, 0.8);
  color: #f0f0f0;
  font-size: 1em;
  margin-bottom: 1.5em;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

#contact input[type="text"]:focus,
#contact input[type="email"]:focus,
#contact textarea:focus {
  outline: none;
  border-color: rgba(255, 107, 53, 0.6);
  background: rgba(35, 35, 35, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

#contact textarea {
  resize: vertical;
  min-height: 120px;
}

#contact button {
  background: linear-gradient(45deg, #b71c1c 0%, #ff6b35 100%);
  color: white;
  padding: 1em 2.5em;
  border: none;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(183, 28, 28, 0.3);
  display: block;
  margin: 0 auto;
}

#contact button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(183, 28, 28, 0.4);
  background: linear-gradient(45deg, #d32f2f 0%, #ff8a65 100%);
}

#contact button:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(183, 28, 28, 0.3);
}

/* Projects Gallery Styling */
.projects-section {
  margin: 3em 0;
  padding: 2em 0;
}

.projects-section h3 {
  color: #ff6b35;
  font-size: 2em;
  text-align: center;
  margin-bottom: 2em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Carousel Styling */
.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
}

.carousel-wrapper {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-card {
  min-width: 100%;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #444;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.card-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #333;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-card:hover .card-image img {
  transform: scale(1.05);
}

.image-count {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: #ff6b35;
  padding: 0.5em 0.8em;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: bold;
}

.no-image {
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 3em;
  border-radius: 8px;
}

.card-content {
  padding: 2em;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  color: #ff6b35;
  font-size: 1.5em;
  margin-bottom: 1em;
  font-weight: bold;
  text-align: center;
}

.card-description {
  color: #e0e0e0;
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 1.5em;
  text-align: center;
  flex-grow: 1;
}

.card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
  margin-bottom: 1.5em;
  justify-content: center;
}

.detail-badge {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  padding: 0.4em 0.8em;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: bold;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.card-features {
  background: linear-gradient(145deg, rgba(183, 28, 28, 0.15), rgba(255, 107, 53, 0.1));
  padding: 1.5em;
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
  margin-top: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.features-title {
  color: #ff6b35;
  font-weight: bold;
  margin-bottom: 1em;
  text-align: center;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7em;
}

.features-list li {
  color: #e8e8e8;
  font-size: 0.95em;
  position: relative;
  padding: 0.6em 0.6em 0.6em 2.2em;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.features-list li:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateX(3px);
}

.features-list li:before {
  content: "🔥";
  position: absolute;
  left: 0.7em;
  top: 0.6em;
  font-size: 1em;
}

.features-more {
  color: #888;
  font-size: 0.8em;
  text-align: center;
  margin-top: 0.8em;
  font-style: italic;
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(45deg, #b71c1c 0%, #ff6b35 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(183, 28, 28, 0.3);
  z-index: 10;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(183, 28, 28, 0.5);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8em;
  margin-top: 2em;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: #888;
  transform: scale(1.2);
}

.carousel-dot.active {
  background: linear-gradient(45deg, #b71c1c 0%, #ff6b35 100%);
  transform: scale(1.3);
  box-shadow: 0 2px 8px rgba(183, 28, 28, 0.4);
}

/* Loading Animation */
.loading-placeholder {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.loading-card {
  text-align: center;
  color: #888;
}

.loading-shimmer {
  width: 200px;
  height: 200px;
  background: linear-gradient(90deg, #333 25%, #444 50%, #333 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
  border-radius: 15px;
  margin: 0 auto 1em auto;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.error-card {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  color: #888;
  text-align: center;
  background: rgba(183, 28, 28, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(183, 28, 28, 0.3);
}

/* Responsive Carousel */
@media (max-width: 768px) {
  .carousel-container {
    padding: 0 40px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
  }
  
  .card-image {
    height: 250px;
  }
  
  .card-content {
    padding: 1.5em;
  }
  
  .card-title {
    font-size: 1.3em;
  }
  
  .card-details {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    padding: 0 30px;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1em;
  }
  
  .card-image {
    height: 200px;
  }
  
  .card-content {
    padding: 1em;
  }
  
  .card-title {
    font-size: 1.2em;
  }
  
  .card-description {
    font-size: 0.9em;
  }
  
  .features-list li {
    font-size: 0.8em;
  }
}

/* Project Filters */
.project-filters {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-bottom: 3em;
  flex-wrap: wrap;
}

.filter-btn {
  background: linear-gradient(45deg, #2d2d2d 0%, #1a1a1a 100%);
  color: #e0e0e0;
  border: 2px solid #555;
  padding: 0.8em 1.5em;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9em;
}

.filter-btn:hover {
  background: linear-gradient(45deg, #b71c1c 0%, #ff6b35 100%);
  border-color: #ff6b35;
  color: white;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(45deg, #b71c1c 0%, #ff6b35 100%);
  border-color: #ff6b35;
  color: white;
  box-shadow: 0 4px 16px rgba(183, 28, 28, 0.3);
}

/* Projects Grid */
.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

/* Project Folders */
.project-folder {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border-radius: 15px;
  border: 1px solid #444;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.project-folder:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.1);
}

.folder-header {
  display: flex;
  align-items: center;
  padding: 1.5em 2em;
  cursor: pointer;
  transition: background 0.3s ease;
  border-bottom: 1px solid #444;
}

.folder-header:hover {
  background: rgba(255, 107, 53, 0.1);
}

.folder-icon {
  font-size: 1.5em;
  margin-right: 1em;
}

.folder-header h4 {
  color: #ff6b35;
  font-size: 1.4em;
  margin: 0;
  flex-grow: 1;
}

.folder-count {
  color: #888;
  font-size: 0.9em;
  margin-right: 1em;
  background: rgba(255, 107, 53, 0.1);
  padding: 0.4em 0.8em;
  border-radius: 15px;
}

.folder-toggle {
  color: #ff6b35;
  font-size: 1.2em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.folder-header.collapsed .folder-toggle {
  transform: rotate(-90deg);
}

.folder-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5em;
  padding: 2em;
  background: rgba(0, 0, 0, 0.2);
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.folder-content.collapsed {
  max-height: 0;
  padding: 0 2em;
}

.project-card {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #444;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
}

.project-image {
  height: 180px;
  overflow: hidden;
  background: #333;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 1.3em;
}

.project-content h5 {
  color: #ff6b35;
  font-size: 1.2em;
  margin-bottom: 0.7em;
  font-weight: bold;
}

.project-content p {
  color: #e0e0e0;
  font-size: 0.9em;
  line-height: 1.5;
  margin-bottom: 1em;
}

.project-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-type {
  background: linear-gradient(45deg, #b71c1c 0%, #ff6b35 100%);
  color: white;
  padding: 0.3em 0.7em;
  border-radius: 15px;
  font-size: 0.75em;
  font-weight: bold;
}

.project-date {
  color: #888;
  font-size: 0.85em;
  font-weight: bold;
}

/* Hide folders based on filter */
.project-folder.hidden {
  display: none;
}

/* Additional project info styles */
.project-info {
  padding: 1.5em;
}

.project-info h4 {
  color: #ff6b35;
  margin: 0 0 0.5em 0;
  font-size: 1.3em;
}

.project-category {
  background: linear-gradient(45deg, #b71c1c 0%, #ff6b35 100%);
  color: white;
  padding: 0.3em 0.7em;
  border-radius: 15px;
  font-size: 0.75em;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1em;
}

.project-description {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 1em;
}

.project-date,
.project-client,
.project-value {
  color: #ccc;
  font-size: 0.9em;
  margin: 0.3em 0;
}

.project-features {
  margin-top: 1em;
  color: #e0e0e0;
}

.project-features ul {
  margin: 0.5em 0;
  padding-left: 1.2em;
}

.project-features li {
  margin: 0.2em 0;
  font-size: 0.9em;
}

.image-gallery {
  display: flex;
  gap: 0.5em;
  margin-top: 1em;
  flex-wrap: wrap;
}

.gallery-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-image:hover {
  transform: scale(1.1);
}

.no-image {
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  font-size: 2em;
  border-radius: 8px;
}

/* Responsive design */
@media (max-width: 768px) {
  .project-filters {
    gap: 0.5em;
  }
  
  .filter-btn {
    padding: 0.6em 1em;
    font-size: 0.8em;
  }
  
  .folder-header {
    padding: 1em 1.5em;
  }
  
  .folder-header h4 {
    font-size: 1.2em;
  }
  
  .folder-content {
    grid-template-columns: 1fr;
    padding: 1.5em;
  }
  
  .project-card {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .project-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .folder-header {
    padding: 1em;
  }
  
  .folder-content {
    padding: 1em;
  }
}


