/* Reset and Base Styles */
* {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

p, li, span, label, button {
  text-transform: uppercase;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  border: 1px solid #778b3b;
  border-radius: 28.15px;
  padding: 1rem;
  background: rgba(163, 191, 80, 0.3);
  box-shadow: 0 4px 30px rgba(163, 191, 80, 0.3);
  backdrop-filter: blur(16.8px);
  -webkit-backdrop-filter: blur(16.8px);
  max-width: 250vw;
}

.navbar ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  flex-wrap: wrap;
}

.navbar li {
  transition: all 0.3s ease;
}

.navbar li:hover {
  background-color: rgba(163, 191, 80, 0.5);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 15px;
}

.navbar a {
  color: #333;
  font-weight: 500;
  padding: 0.5rem;
}

/* Container */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100vw;
  padding-top: 100px;
}

/* Hero Section */
.introduction {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 4rem 2rem;
  min-height: 100vh;
}

.hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  width: 100%;
}

.about {
  font-size: 20px;
  text-align: center;
  flex: 1;
  min-width: 300px;
}

.about h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #778b3b;
}

.about h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #901b22;
}

.about p {
  padding: 2rem;
  font-size: 1.1rem;
  color: #666;
}

.about-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem;
}

.image {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 300px;
}

.image img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 66px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

/* About Section */
.about-section {
  width: 100%;
  max-width: 1200px;
  padding: 4rem 2rem;
  text-align: center;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #778b3b;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #666;
  font-size: 1.1rem;
  text-transform: none;
}

.quick-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.fact {
  text-align: center;
  padding: 1.5rem;
  background: rgba(163, 191, 80, 0.1);
  border-radius: 15px;
}

.fact h3 {
  font-size: 2rem;
  color: #778b3b;
  margin-bottom: 0.5rem;
}

.fact p {
  color: #666;
  font-size: 0.9rem;
}

/* Buttons */
button {
  border-radius: 25px;
  padding: 12px 20px;
  border: none;
  background-color: #901b22;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 4px 15px rgba(144, 27, 34, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(144, 27, 34, 0.4);
  background-color: rgba(144, 27, 34, 0.8);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
}

/* Section Styles */
.experiences, .skills, .services, .projects, .blog, .testimonials {
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #778b3b;
  margin-bottom: 1rem;
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.carousel-nav {
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  font-size: 2rem;
  padding: 0.5rem;
  color: #778b3b;
  border-radius: 50%;
}

.carousel-nav:hover {
  background-color: rgba(163, 191, 80, 0.2);
  transform: scale(1.2);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #778b3b;
  transform: scale(1.3);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* Experience Cards */
.experiences-card {
  min-width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 25px;
  background-color: rgba(163, 191, 80, 0.33);
  text-align: center;
  box-shadow: 0 8px 25px rgba(119, 139, 59, 0.3);
  flex-shrink: 0;
}

.experiences-card .logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.experiences-card .logo img {
  border: 2px solid #778b3b;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.experiences-card .company {
  font-weight: bolder;
  color: #778b3b;
  font-size: 1.2rem;
}

.experiences-card .title {
  font-weight: bold;
  font-size: 1.4rem;
  margin: 1rem 0;
  color: #333;
}

.experiences-card .date {
  font-style: italic;
  color: #666;
  margin: 1rem 0;
}

.experiences-card .desc {
  font-size: 1rem;
  color: #555;
  text-transform: none;
  line-height: 1.6;
}

/* Skills Cards */
.skills-track {
  display: flex;
  gap: 2rem;
}

.skills-card {
  min-width: 300px;
  max-width: 320px;
  padding: 2rem;
  border-radius: 25px;
  background-color: rgba(144, 27, 34, 0.47);
  text-align: center;
  box-shadow: 0 8px 25px rgba(144, 27, 34, 0.3);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.skills-card:hover {
  transform: translateY(-5px);
}

.skills-card .title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.skills-card .item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.skills-card .item p {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 0.8rem;
  color: white;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.skills-card .item p:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Services Cards */
.services-track {
  display: flex;
  gap: 2rem;
}

.services-card {
  min-width: 320px;
  max-width: 350px;
  padding: 2rem;
  border-radius: 25px;
  background-color: rgba(163, 191, 80, 0.33);
  text-align: center;
  box-shadow: 0 8px 25px rgba(119, 139, 59, 0.3);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.services-card:hover {
  transform: translateY(-5px);
}

.services-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border-radius: 15px;
  background-color: #f0f0f0;
  transition: transform 0.3s ease;
}

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

.services-card .title {
  color: #778b3b;
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.services-card .desc {
  color: #555;
  text-transform: none;
  line-height: 1.6;
}

/* Projects Grid */
.project-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: transparent;
  color: #778b3b;
  border: 2px solid #778b3b;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #778b3b;
  color: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: white;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.view-details-btn {
  background-color: white;
  color: #333;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-details-btn:hover {
  background-color: #778b3b;
  color: white;
}

.project-content {
  padding: 2rem;
}

.project-content .title {
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.project-content .desc {
  color: #666;
  margin-bottom: 1.5rem;
  text-transform: none;
  line-height: 1.6;
}

.tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tool-tag {
  background-color: rgba(119, 139, 59, 0.1);
  color: #778b3b;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid #778b3b;
  font-weight: 500;
}

.project-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background-color: #778b3b;
  color: white;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.project-link:hover {
  background-color: #901b22;
  transform: translateY(-2px);
}

/* Blog Section */
.blog {
  background-color: #f8f9fa;
  padding: 4rem 2rem;
  margin: 0;
  max-width: none;
  width: 100%;
}

.view-all-btn {
  color: #778b3b;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border: 2px solid #778b3b;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background-color: #778b3b;
  color: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.blog-category {
  background-color: #778b3b;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

.blog-date {
  color: #666;
  font-size: 0.9rem;
}

.blog-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  text-transform: none;
}

.blog-content p {
  color: #666;
  line-height: 1.6;
  text-transform: none;
  margin-bottom: 1rem;
}

.read-more {
  color: #778b3b;
  font-weight: 600;
  font-size: 0.9rem;
}

.read-more:hover {
  color: #901b22;
}

/* Testimonials */
.testimonials {
  background-color: #f8f9fa;
  padding: 4rem 2rem;
  margin: 0;
  max-width: none;
  width: 100%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
  text-transform: none;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.3rem;
}

.testimonial-author p {
  color: #666;
  font-size: 0.9rem;
  text-transform: none;
}

/* Contact Section */
.contact {
  background-color: rgb(226, 226, 226);
  padding: 4rem 2rem;
  width: 100%;
  margin: 0;
  max-width: none;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.socials {
  padding: 1rem 0;
}

.socials h3 {
  margin-bottom: 2rem;
  color: #333;
  font-size: 1.5rem;
}

.socials ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.socials li {
  background-color: #778b3b;
  padding: 1rem;
  color: white;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.socials li:hover {
  background-color: #901b22;
  transform: translateX(5px);
}

.socials a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
  font-weight: 500;
}

.form {
  padding: 1rem 0;
}

.form h3 {
  margin-bottom: 2rem;
  color: #333;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
  font-weight: 500;
}

.form input,
.form textarea {
  border: 2px solid #e0e0e0;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 10px;
  width: 100%;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: #778b3b;
  box-shadow: 0 0 0 3px rgba(119, 139, 59, 0.1);
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease;
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #666;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close:hover {
  color: #901b22;
  transform: scale(1.1);
}

.modal-project {
  padding: 2rem;
}

.modal-project img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.modal-project h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.project-description {
  font-size: 1.1rem;
  color: #666;
  text-transform: none;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 2rem;
}

.modal-tools h4 {
  color: #778b3b;
  margin-bottom: 1rem;
  text-align: center;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.modal-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: #778b3b;
  color: white;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.modal-btn:hover {
  background-color: #901b22;
  transform: translateY(-2px);
}

/* Footer */
footer {
  color: #666;
  text-align: center;
  margin-top: 3rem;
  padding: 2rem 0;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { 
    opacity: 0;
    transform: translateY(-50px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: slideIn 0.6s ease forwards;
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .quick-facts {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .skills-card {
    min-width: 280px;
    max-width: 300px;
  }
  
  .services-card {
    min-width: 300px;
    max-width: 320px;
  }
  
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin: 1rem;
    padding: 0.5rem;
  }
  
  .navbar ul {
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    flex-wrap: wrap;
  }
  
  .navbar li {
    font-size: 0.8rem;
  }
  
  .container {
    padding-top: 20px;
  }
  
  .introduction {
    padding: 2rem 1rem;
    min-height: auto;
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .about {
    order: 2;
  }
  
  .image {
    order: 1;
  }
  
  .about h1 {
    font-size: 1.8rem;
  }
  
  .about h2 {
    font-size: 1.4rem;
  }
  
  .about p {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .about-btn {
    flex-direction: column;
    gap: 1rem;
  }
  
  .about-section,
  .experiences,
  .skills,
  .services,
  .projects,
  .blog,
  .testimonials {
    padding: 2rem 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .carousel-controls {
    flex-direction: column;
    gap: 1rem;
  }
  
  .carousel-nav {
    font-size: 1.5rem;
  }
  
  .skills-card {
    min-width: 280px;
    max-width: 300px;
    padding: 1.5rem;
  }
  
  .skills-card .item {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-card {
    min-width: 300px;
    max-width: 320px;
    padding: 1.5rem;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .project-links {
    flex-direction: column;
  }
  
  .contact-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .quick-facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .fact {
    padding: 1rem;
  }
  
  .fact h3 {
    font-size: 1.5rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .navbar ul {
    gap: 0.3rem;
  }
  
  .navbar li {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
  }
  
  .about h1 {
    font-size: 1.5rem;
  }
  
  .about h2 {
    font-size: 1.2rem;
  }
  
  .about p {
    font-size: 0.9rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .skills-card {
    min-width: 250px;
    max-width: 280px;
    padding: 1rem;
  }
  
  .services-card {
    min-width: 280px;
    max-width: 300px;
    padding: 1rem;
  }
  
  .project-card {
    margin: 0 0.5rem;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  button {
    font-size: 0.8rem;
    padding: 10px 15px;
  }
  
  .image img {
    max-height: 350px;
  }
  
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }
  
  .modal-project {
    padding: 1rem;
  }
  
  .modal-links {
    flex-direction: column;
  }
  
  .quick-facts {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Large Screen Styles */
@media (min-width: 1200px) {
  .skills-card {
    min-width: 320px;
    max-width: 350px;
  }
  
  .services-card {
    min-width: 350px;
    max-width: 400px;
  }
  
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
  
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Loading and Error States */
.loading {
  text-align: center;
  padding: 2rem;
  color: #666;
}

.error {
  text-align: center;
  padding: 2rem;
  color: #901b22;
  background-color: rgba(144, 27, 34, 0.1);
  border-radius: 10px;
  margin: 1rem 0;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
button:focus,
.carousel-nav:focus,
.filter-btn:focus,
input:focus,
textarea:focus,
a:focus {
  outline: 2px solid #778b3b;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .skills-card {
    background-color: rgba(144, 27, 34, 0.8);
  }
  
  .services-card {
    background-color: rgba(163, 191, 80, 0.8);
  }
  
  button {
    border: 2px solid #fff;
  }
}