/* Projects Page Styles */

/* Projects Header Section */
.projects-header {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #1a001a, #0f0f13);
  padding-top: 80px; /* offset for navbar */
  text-align: center;
}

.projects-header-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.projects-header-content p {
  font-size: 1.3rem;
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto;
}

.highlight {
  color: #5D3FD3; /* Deep Violet */
}

/* Featured Project Section */
.featured-project {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.featured-project h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #5D3FD3;
}

.featured-content {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-bottom: 4rem;
}

.featured-info {
  flex: 1;
}

.featured-info h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

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

.tags span {
  background: rgba(93, 63, 211, 0.2);
  border: 1px solid #5D3FD3;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
}

.featured-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b0b0b0;
  margin-bottom: 2rem;
}

.project-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature {
  background: rgba(10, 10, 18, 0.6);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(93, 63, 211, 0.2);
}

.feature i {
  color: #5D3FD3;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature h4 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.feature p {
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.project-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Carousel */
.featured-media {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero photo container for Apollo Isle - matches index page styling */
.hero-photo-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Override hero-photo size for projects page to make it larger */
.hero-photo-container .hero-photo {
  max-width: 500px;
  width: 100%;
  height: auto;
}

/* Simple image style that will definitely display */
.featured-media img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border: 3px solid rgba(93, 63, 211, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block; /* Ensures the image displays as block */
}

.featured-media img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(93, 63, 211, 0.4);
}

/* Fallback styles for Swiper if it's not working */
.apolloSwiper, .swiper-slide {
  width: 100%;
}

.swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  background: #5D3FD3;
}

.swiper-button-next,
.swiper-button-prev {
  color: #5D3FD3;
}

/* Technical Showcase Section */
.tech-showcase {
  background: #0a0a12;
  padding: 5rem 0;
}

.tech-showcase h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #5D3FD3;
}

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

.tech-card {
  background: rgba(26, 26, 36, 0.8);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(93, 63, 211, 0.2);
}

.tech-icon {
  font-size: 2.5rem;
  color: #5D3FD3;
  margin-bottom: 1.5rem;
}

.tech-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.tech-card p {
  color: #b0b0b0;
  line-height: 1.6;
}

/* Other Projects Section */
.other-projects {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.other-projects h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #5D3FD3;
}

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

.project-card {
  background: #1a1a24;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(93, 63, 211, 0.3);
}

.project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-info {
  padding: 1.5rem;
}

.project-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.project-info .tags {
  margin-bottom: 1rem;
}

.project-info p {
  color: #b0b0b0;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta {
  background: linear-gradient(to right, #1a001a, #0a0a12);
  padding: 5rem 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.cta-content p {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #5D3FD3;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #4930A8;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(93, 63, 211, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: transparent;
  color: #fff;
  border: 2px solid #5D3FD3;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(93, 63, 211, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(93, 63, 211, 0.1);
}

.btn-tertiary {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: #5D3FD3;
  border: 1px solid #5D3FD3;
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-tertiary:hover {
  background: rgba(93, 63, 211, 0.1);
  transform: translateY(-3px);
}

/* Project Navigation */
.project-navigation {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem 1.5rem;
  text-align: center;
  background: rgba(26, 26, 36, 0.5);
  border-radius: 12px;
}

.project-navigation h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #5D3FD3;
}

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

/* Project Sections */
.project-section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(93, 63, 211, 0.3);
}

.project-section h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #5D3FD3;
  text-align: center;
}

.project-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.project-media {
  flex: 1;
  max-width: 500px;
}

/* Video Container for YouTube Embeds */
.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(93, 63, 211, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(93, 63, 211, 0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Video container within project cards */
.project-image .video-container {
  height: 200px;
  padding-bottom: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.project-image .video-container:hover {
  transform: none;
  box-shadow: none;
}

/* Simplitech Showcase Styles */
.projects-spacing {
  padding: 40px 0;
}

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

.simplitech-header h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #5D3FD3;
  font-weight: 700;
}

.simplitech-subtitle {
  font-size: 1.2rem;
  color: #a0a0a0;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.simplitech-header .tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.simplitech-video-showcase {
  margin-bottom: 4rem;
}

.video-container-large {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 0;
  padding-bottom: 33.75%; /* Wider and shorter aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(93, 63, 211, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container-large:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(93, 63, 211, 0.4);
}

.video-container-large iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.simplitech-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.simplitech-description h3 {
  font-size: 1.8rem;
  color: #5D3FD3;
  margin-bottom: 1rem;
  font-weight: 600;
}

.simplitech-description p {
  color: #b0b0b0;
  line-height: 1.7;
  font-size: 1.05rem;
}

.simplitech-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item i {
  color: #5D3FD3;
  font-size: 1.5rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.feature-item h4 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-item p {
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.simplitech-tech h4 {
  color: #5D3FD3;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.simplitech-tech p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.simplitech-tech .project-links {
  margin-top: 1.5rem;
}

/* Responsive Design for Simplitech */
@media (max-width: 992px) {
  .simplitech-info-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .simplitech-header h2 {
    font-size: 2.5rem;
  }
  
  .video-container-large {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .simplitech-showcase {
    padding: 4rem 0;
  }
  
  .simplitech-header h2 {
    font-size: 2rem;
  }
  
  .simplitech-header .tags {
    gap: 0.5rem;
  }
  
  .simplitech-video-showcase {
    margin-bottom: 3rem;
  }
  
  .simplitech-info-grid {
    gap: 2rem;
  }
}

/* Epic Games Externship Project - Modern Design */
.epic-games-modern {
  background: linear-gradient(135deg, #0a0a12 0%, #1a1a2e 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.epic-games-modern .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.epic-games-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(93, 63, 211, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, rgba(93, 63, 211, 0.02) 0%, transparent 100%);
  pointer-events: none;
}

/* Modern Header */
.epic-header-modern {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.epic-title-group {
  margin-bottom: 2rem;
}

.epic-header-modern h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #5D3FD3 0%, #8A63D2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.epic-subtitle-modern {
  font-size: 1.1rem;
  color: #a0a0a0;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.epic-tags-modern {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.tag-modern {
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tag-modern.primary {
  background: linear-gradient(135deg, #5D3FD3 0%, #8A63D2 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(93, 63, 211, 0.3);
}

.tag-modern.secondary {
  background: rgba(26, 26, 36, 0.6);
  color: #b0b0b0;
  border: 1px solid rgba(93, 63, 211, 0.3);
}

.tag-modern.secondary:hover {
  background: rgba(93, 63, 211, 0.1);
  border-color: #5D3FD3;
  color: #fff;
  transform: translateY(-2px);
}

/* Content Container */
.epic-content-modern {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Enhanced Video Section */
.epic-video-modern {
  margin: 4rem 0;
  display: flex;
  justify-content: center;
  position: relative;
}

.video-wrapper-modern {
  position: relative;
  max-width: 900px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(93, 63, 211, 0.2);
  transition: all 0.3s ease;
}

.video-wrapper-modern:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(93, 63, 211, 0.4);
}

.video-frame-modern {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
}

.video-frame-modern iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-overlay-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(93, 63, 211, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-wrapper-modern:hover .video-overlay-modern {
  opacity: 1;
}

.play-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(93, 63, 211, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.video-wrapper-modern:hover .play-indicator {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-indicator i {
  color: #fff;
  font-size: 1.8rem;
  margin-left: 4px;
}

/* Modern Content Layout */
.epic-content-modern {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Main Description Card */
.epic-card-modern {
  background: rgba(26, 26, 36, 0.6);
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(93, 63, 211, 0.2);
}

.epic-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(93, 63, 211, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.main-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #5D3FD3 0%, #8A63D2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(93, 63, 211, 0.3);
}

.card-icon i {
  color: #fff;
  font-size: 1.5rem;
}

.card-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

.card-content p {
  color: #b0b0b0;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* Feature Cards Grid */
.epic-features-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card-modern {
  background: rgba(26, 26, 36, 0.4);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(93, 63, 211, 0.1);
  transition: all 0.3s ease;
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(93, 63, 211, 0.05) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  border-color: rgba(93, 63, 211, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-card-modern:hover::before {
  opacity: 1;
}

.feature-icon-modern {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #5D3FD3 0%, #8A63D2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-modern {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(93, 63, 211, 0.4);
}

.feature-icon-modern i {
  color: #fff;
  font-size: 1.8rem;
}

.feature-card-modern h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.feature-card-modern p {
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Technical Details */
.epic-details-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.detail-section {
  background: rgba(26, 26, 36, 0.4);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(93, 63, 211, 0.1);
}

.detail-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(93, 63, 211, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.detail-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.detail-section h3 i {
  color: #5D3FD3;
  font-size: 1.2rem;
}

.detail-section p {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Achievements Grid */
.achievements-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(93, 63, 211, 0.05);
  border-radius: 8px;
  border-left: 3px solid #5D3FD3;
  transition: all 0.3s ease;
}

.achievement-item:hover {
  background: rgba(93, 63, 211, 0.1);
  transform: translateX(5px);
}

.achievement-item i {
  color: #5D3FD3;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.achievement-item span {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
  .epic-header-modern h2 {
    font-size: 2.2rem;
  }
  
  .epic-features-modern {
    grid-template-columns: 1fr;
  }
  
  .epic-details-modern {
    grid-template-columns: 1fr;
  }
  
  .main-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .epic-games-modern {
    padding: 4rem 0;
  }
  
  .epic-header-modern h2 {
    font-size: 1.8rem;
  }
  
  .epic-content-modern {
    padding: 0 1rem;
  }
  
  .epic-card-modern,
  .feature-card-modern,
  .detail-section {
    padding: 2rem;
  }
  
  .epic-tags-modern {
    gap: 0.5rem;
  }
  
  .tag-modern {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* Simplitech Project - Modern Design */
.simplitech-modern {
  background: linear-gradient(135deg, #0a0a12 0%, #1a1a2e 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.simplitech-modern .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.simplitech-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(93, 63, 211, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 150, 255, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, rgba(93, 63, 211, 0.02) 0%, transparent 100%);
  pointer-events: none;
}

/* Modern Header */
.simplitech-header-modern {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.simplitech-title-group {
  margin-bottom: 2rem;
}

.simplitech-header-modern h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #5D3FD3 0%, #8A63D2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.simplitech-subtitle-modern {
  font-size: 1.1rem;
  color: #a0a0a0;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.simplitech-tags-modern {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Enhanced Video Section */
.simplitech-video-modern {
  margin: 4rem 0;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Fresh Content Layout */
.simplitech-content-fresh {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Content Container */
.simplitech-content-modern {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Project Description Section */
.simplitech-description-section {
  text-align: center;
  margin-bottom: 4rem;
  background: rgba(26, 26, 36, 0.3);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(93, 63, 211, 0.1);
}

.description-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.description-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.project-type {
  background: linear-gradient(135deg, #5D3FD3 0%, #8A63D2 100%);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.description-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b0b0b0;
  max-width: 800px;
  margin: 0 auto;
}

/* Two-Column Layout */
.simplitech-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.column-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #5D3FD3 0%, #8A63D2 100%);
  border-radius: 2px;
}

/* Features Column */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  background: rgba(26, 26, 36, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(93, 63, 211, 0.1);
  transition: all 0.3s ease;
}

.feature-row:hover {
  background: rgba(26, 26, 36, 0.5);
  border-color: rgba(93, 63, 211, 0.2);
  transform: translateX(8px);
}

.feature-icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #5D3FD3 0%, #8A63D2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-row:hover .feature-icon-circle {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(93, 63, 211, 0.3);
}

.feature-icon-circle i {
  color: #fff;
  font-size: 1.2rem;
}

.feature-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem 0;
}

.feature-text p {
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Tech Column */
.tech-stack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(26, 26, 36, 0.3);
  border-radius: 10px;
  border: 1px solid rgba(93, 63, 211, 0.1);
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: rgba(26, 26, 36, 0.5);
  border-color: rgba(93, 63, 211, 0.2);
  transform: translateY(-3px);
}

.tech-icon {
  width: 40px;
  height: 40px;
  background: rgba(93, 63, 211, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-icon i {
  color: #5D3FD3;
  font-size: 1.3rem;
}

.tech-details h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.2rem 0;
}

.tech-details span {
  font-size: 0.85rem;
  color: #a0a0a0;
}

/* Project Highlights */
.project-highlights {
  background: rgba(26, 26, 36, 0.3);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(93, 63, 211, 0.1);
}

.project-highlights h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1.5rem 0;
}

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

.highlights-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.highlights-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #5D3FD3;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .simplitech-header-modern h2 {
    font-size: 2.2rem;
  }
  
  .simplitech-two-column {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .tech-stack-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .simplitech-modern {
    padding: 4rem 0;
  }
  
  .simplitech-header-modern h2 {
    font-size: 1.8rem;
  }
  
  .simplitech-content-fresh {
    padding: 0 1rem;
  }
  
  .simplitech-description-section {
    padding: 2rem;
  }
  
  .description-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .simplitech-two-column {
    gap: 2rem;
  }
  
  .feature-row {
    padding: 1.2rem;
  }
  
  .tech-item {
    padding: 1rem;
  }
  
  .project-highlights {
    padding: 1.5rem;
  }
  
  .simplitech-tags-modern {
    gap: 0.5rem;
  }
}

/* Miami Plants Redesign Project */
.fullwidth-project {
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.project-brief {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.brief-text {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-top: 1rem;
}

/* Main showcase container */
.mp-showcase {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  background: rgba(15, 15, 19, 0.5);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Desktop View (Main Image) */
.mp-desktop-view {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.mp-desktop-view .showcase-img {
  width: 100%;
  max-height: 650px;
  object-fit: contain;
  border-radius: 8px;
  border: 3px solid rgba(93, 63, 211, 0.3);
  background-color: #13131d;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mp-desktop-view .showcase-img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(93, 63, 211, 0.3);
}

/* Secondary Views Container */
.mp-secondary-views {
  display: flex;
  gap: 2.5rem;
  width: 100%;
  margin-top: 1rem;
}

/* Feature View */
.mp-feature-view {
  flex: 1.5;
  text-align: center;
}

.mp-feature-view .feature-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 8px;
  border: 3px solid rgba(93, 63, 211, 0.3);
  background-color: #13131d;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mp-feature-view .feature-img:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(93, 63, 211, 0.3);
}

/* Phone View */
.mp-phone-view {
  flex: 1;
  text-align: center;
}

/* Phone mockup styling */
.phone-mockup {
  background-color: #000;
  border-radius: 2rem;
  padding: 0.75rem;
  border: 8px solid #1a1a1a;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  max-width: 280px;
  margin: 0 auto;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.phone-mockup:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1.5rem;
  background-color: #1a1a1a;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  z-index: 1;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
  display: block;
}

.phone-mockup:hover {
  transform: translateY(-10px) rotate(3deg);
  box-shadow: 0 20px 40px rgba(93, 63, 211, 0.4);
}

.img-caption {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin-top: 1.2rem;
  text-align: center;
}

/* Tech Tags */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.tech-tag {
  background: rgba(93, 63, 211, 0.2);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid rgba(93, 63, 211, 0.5);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: rgba(93, 63, 211, 0.3);
  transform: translateY(-5px);
}

.tech-tag i {
  margin-right: 0.5rem;
  color: #5D3FD3;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .mp-secondary-views {
    flex-direction: column;
    align-items: center;
  }
  
  .mp-feature-view, .mp-phone-view {
    width: 100%;
    max-width: 500px;
  }
}

.project-details {
  flex: 1;
}

.project-details p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.tech-section {
  background: rgba(10, 10, 18, 0.6);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.tech-section h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #5D3FD3;
}

/* Responsive adjustments for project sections */
@media (max-width: 900px) {
  .project-content {
    flex-direction: column;
  }
  
  .project-media {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

/* Footer Styles */
footer {
  background: #0a0a12;
  padding: 3rem 0;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #5D3FD3;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #5D3FD3;
}

.footer-copyright {
  color: #707070;
  font-size: 0.9rem;
}

/* App Showcase Styles */
.app-showcase {
  background: linear-gradient(145deg, #0a0a12, #13131d);
  padding: 5rem 0;
  margin-bottom: 2rem;
}

.app-showcase h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #5D3FD3;
}

.app-showcase .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.taskJugglerSwiper {
  padding: 20px 0 50px 0;
}

/* Phone Mockup Styles */
.phone-mockup {
  background-color: #000;
  border-radius: 2rem;
  padding: 0.75rem;
  border: 8px solid #1a1a1a;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  margin: 0 auto;
  max-width: 300px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-mockup:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1.5rem;
  background-color: #1a1a1a;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  z-index: 1;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.2rem;
}

.phone-mockup .caption {
  text-align: center;
  color: #b0b0b0;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  padding: 0 0.5rem;
}

.phone-mockup:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 20px 40px rgba(93, 63, 211, 0.3);
}

/* Responsive Fixes */
@media (max-width: 992px) {
  .featured-content {
    flex-direction: column-reverse;
  }
  
  .project-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .phone-mockup {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .project-features {
    grid-template-columns: 1fr;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .phone-mockup {
    max-width: 220px;
  }
}
