/* ============================================
   eFlixDigital - Complete Modern Styles
   Brand: #92dfda | Modern, Clean, Professional
   ============================================ */

/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #1a2a3f;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- VARIABLES ---------- */
:root {
  --brand-primary: #92dfda;
  --brand-primary-dark: #6bc1bb;
  --brand-primary-deep: #4a9f99;
  --brand-primary-light: #c1f0ec;
  --brand-accent: #2c7a6e;
  
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.03);
  --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.02);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 28px;
  --border-radius-xl: 40px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

/* ---------- BUTTONS ---------- */
.btn-primary, .btn-outline, .btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius-xl);
  font-weight: 600;
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--brand-primary);
  color: var(--gray-900);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary-deep);
}

.btn-outline:hover {
  background: rgba(146, 223, 218, 0.1);
  border-color: var(--brand-primary-dark);
  transform: translateY(-2px);
}

/* ---------- NAVIGATION ---------- */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-xs);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(146, 223, 218, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e3c3a 0%, #2b6b66 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.logo span {
  color: var(--brand-primary-deep);
  background: none;
  -webkit-background-clip: unset;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--brand-primary-deep);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gray-800);
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    padding: 1.5rem 0;
  }
  
  .nav-links.active {
    display: flex;
  }
}

/* ---------- HERO SECTION ---------- */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #f5fffe 100%);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(146,223,218,0.15), transparent);
  pointer-events: none;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(145deg, #0f2c2a, #2f6b66);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
  max-width: 540px;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  flex: 0.8;
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(146, 223, 218, 0.3);
  text-align: center;
  transition: var(--transition-base);
}

.hero-stats:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.stat-badge {
  background: var(--brand-primary);
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: var(--border-radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }
  
  .hero-stats {
    width: 100%;
  }
}

/* ---------- SECTION HEADERS ---------- */
.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.section-sub {
  text-align: center;
  color: var(--gray-600);
  max-width: 680px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

/* ---------- SERVICES CARDS ---------- */
.services {
  padding: 5rem 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card, .ai-card {
  background: var(--gray-50);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  transition: var(--transition-base);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
}

.service-card:hover, .ai-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-lg);
}

.service-icon, .ai-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(146, 223, 218, 0.5);
}

.service-card h3, .ai-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p, .ai-card p {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.badge {
  display: inline-block;
  background: rgba(146, 223, 218, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-primary-deep);
}

/* ---------- HIGHLIGHT SECTION (ERP/POS) ---------- */
.highlight-section {
  background: linear-gradient(110deg, #f0fbfa 0%, #ffffff 100%);
  padding: 5rem 0;
  border-top: 1px solid #caeae6;
  border-bottom: 1px solid #caeae6;
}

.highlight-flex {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}

.highlight-text {
  flex: 1.2;
}

.highlight-text h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #114542;
  margin-bottom: 1.25rem;
}

.highlight-text p {
  color: #2f5f5b;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-list li::before {
  content: "✓";
  background: var(--brand-primary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #1a4e4a;
  font-size: 0.85rem;
}

.highlight-image {
  flex: 0.9;
  background: #cbf3f0;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-base);
}

.highlight-image:hover {
  transform: scale(1.02);
}

.mock-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .highlight-flex {
    flex-direction: column;
  }
}

/* ---------- AI SOLUTIONS SECTION ---------- */
.ai-section {
  background: linear-gradient(110deg, #f0fbfa 0%, #ffffff 100%);
  padding: 5rem 0;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 5rem 0;
  background: var(--gray-50);
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-name {
  font-weight: 700;
  color: var(--gray-900);
}

.author-title {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ---------- PROJECTS SECTION ---------- */
.projects-section {
  padding: 5rem 0;
  background: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.project-card {
  background: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-primary);
}

.project-image {
  overflow: hidden;
  height: 220px;
}

.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: 1.5rem;
}

.project-content h3 {
  margin-bottom: 0.75rem;
}

.project-desc {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.project-meta {
  margin-bottom: 1.25rem;
}

.project-meta .price {
  font-weight: 800;
  color: var(--brand-primary-deep);
  font-size: 1.1rem;
}

.project-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- PAYMENT PLANS ---------- */
.payment-plans {
  background: linear-gradient(135deg, #1e3c3a 0%, #2b6b66 100%);
  padding: 5rem 0;
  color: white;
}

.payment-plans .section-title,
.payment-plans .section-sub {
  color: white;
}

.payment-card {
  background: white;
  border-radius: var(--border-radius-md);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.payment-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.payment-card h3 {
  color: var(--brand-primary-deep);
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin: 1rem 0;
}

.payment-features {
  list-style: none;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.payment-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}

.payment-features li:before {
  content: "✓";
  color: var(--brand-primary);
  margin-right: 10px;
  font-weight: bold;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-deep) 100%);
  padding: 5rem 0;
  text-align: center;
  color: white;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: white;
  color: var(--brand-primary-deep);
  padding: 1rem 2rem;
  border-radius: var(--border-radius-xl);
  font-weight: 700;
  transition: var(--transition-base);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cta-btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-xl);
  font-weight: 700;
  transition: var(--transition-base);
}

.cta-btn-secondary:hover {
  background: white;
  color: var(--brand-primary-deep);
  transform: translateY(-3px);
}

/* ---------- CONTACT SECTION ---------- */
.contact {
  background: #0a2c2a;
  color: white;
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info h3,
.contact-form h3 {
  color: var(--brand-primary-light);
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-info i {
  width: 24px;
  color: var(--brand-primary);
}

.contact-form form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(4px);
}

.input-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.input-group input,
.input-group select,
.input-group textarea {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: var(--border-radius-xl);
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  transition: var(--transition-base);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--brand-primary);
  background: white;
}

.contact-btn {
  background: var(--brand-primary);
  color: var(--gray-900);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: var(--border-radius-xl);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-base);
  width: 100%;
}

.contact-btn:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
}

/* ---------- FOOTER ---------- */
footer {
  background: #051f1d;
  color: #b9ddd9;
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}

/* ---------- FLOATING BUTTONS (WhatsApp & Call) ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  background: #128C7E;
}

.call-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.call-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #007bff;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
}

.call-btn:hover {
  transform: scale(1.08);
  background: #0056b3;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .whatsapp-btn span, .call-btn span {
    display: none;
  }
  
  .whatsapp-btn, .call-btn {
    padding: 12px;
    border-radius: 50%;
  }
  
  .whatsapp-btn i, .call-btn i {
    font-size: 24px;
    margin: 0;
  }
}

/* ---------- AI CHAT WIDGET (Modern Redesign) ---------- */
#chat-toggle {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: var(--brand-primary-deep);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10000;
  transition: var(--transition-base);
  box-shadow: var(--shadow-lg);
}

#chat-toggle:hover {
  transform: scale(1.1);
  background: var(--brand-primary-dark);
}

#chat-box {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 380px;
  height: 550px;
  background: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 99999;
  border: 1px solid rgba(146, 223, 218, 0.3);
}

#chat-box.hidden {
  display: none !important;
}

.chat-header {
  background: linear-gradient(135deg, #1e3c3a, #2b6b66);
  color: white;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.chat-header strong {
  font-size: 1rem;
}

.chat-header small {
  font-size: 0.7rem;
  opacity: 0.85;
}

#chat-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

#chat-close:hover {
  opacity: 0.7;
}

.chat-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-input {
  display: flex;
  border-top: 1px solid var(--gray-200);
  background: white;
  flex-shrink: 0;
}

.chat-input input {
  flex: 1;
  border: none;
  padding: 1rem;
  outline: none;
  font-size: 0.95rem;
}

.chat-input button {
  background: var(--brand-primary-deep);
  color: white;
  border: none;
  padding: 0 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-base);
}

.chat-input button:hover {
  background: var(--brand-primary-dark);
}

.msg-user {
  display: flex;
  justify-content: flex-end;
}

.msg-user span {
  background: var(--brand-primary-deep);
  color: white;
  padding: 0.7rem 1rem;
  border-radius: 20px 20px 4px 20px;
  max-width: 80%;
  word-wrap: break-word;
  font-size: 0.9rem;
}

.msg-bot {
  display: flex;
  justify-content: flex-start;
}

.msg-bot span {
  background: white;
  color: var(--gray-800);
  padding: 0.7rem 1rem;
  border-radius: 20px 20px 20px 4px;
  max-width: 80%;
  word-wrap: break-word;
  box-shadow: var(--shadow-xs);
  font-size: 0.9rem;
}

.typing-dots {
  animation: blink 1.4s infinite;
}

@keyframes blink {
  0%, 20% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

.handover-buttons {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.handover-btn {
  background: var(--brand-primary);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--transition-base);
}

.handover-btn:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #chat-box {
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    border-radius: 0;
  }
  
  #chat-toggle {
    bottom: 20px;
    right: 20px;
  }
}

/* ---------- UTILITY CLASSES ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ---------- ANIMATIONS ---------- */
[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   PROJECT DETAILS PAGE STYLES
   ============================================ */

/* Project Hero */
.project-hero {
    background: linear-gradient(135deg, #f0fbfa 0%, #ffffff 100%);
    padding: 4rem 0 2rem;
    border-bottom: 1px solid rgba(146, 223, 218, 0.3);
}

.project-breadcrumb {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.project-breadcrumb a {
    color: var(--brand-primary-deep);
    text-decoration: none;
}

.project-breadcrumb a:hover {
    text-decoration: underline;
}

.project-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
    background: linear-gradient(145deg, #0f2c2a, #2f6b66);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.client-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(146, 223, 218, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.9rem;
    color: var(--brand-primary-deep);
}

/* Main Project Grid */
.project-main {
    padding: 3rem 0 5rem;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Project Info Left Column */
.project-info h2 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: var(--gray-900);
}

.project-info h2:first-of-type {
    margin-top: 0;
}

.project-description p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.feature-item i {
    color: var(--brand-primary-deep);
    font-size: 1.1rem;
}

.feature-item span {
    color: var(--gray-700);
}

/* Tech Stack */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-badge {
    background: var(--gray-100);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brand-primary-deep);
    border: 1px solid var(--gray-200);
    transition: var(--transition-fast);
}

.tech-badge:hover {
    background: var(--brand-primary-light);
    border-color: var(--brand-primary);
}

/* Project Meta Grid */
.project-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    margin: 1.5rem 0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.meta-item i {
    font-size: 1.5rem;
    color: var(--brand-primary-deep);
}

.meta-item div {
    display: flex;
    flex-direction: column;
}

.meta-item strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
}

.meta-item span {
    font-weight: 600;
    color: var(--gray-900);
}

/* Project Actions */
.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.project-actions .btn-primary,
.project-actions .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Project Media (Right Column) */
.project-media {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-thumbnail {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--gray-100);
}

.project-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.project-thumbnail:hover img {
    transform: scale(1.02);
}

.client-logo {
    text-align: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--border-radius-md);
}

.client-logo p {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.client-logo img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
}

/* Related Projects */
.related-projects {
    padding: 5rem 0;
    background: var(--gray-50);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

.related-image {
    height: 180px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: 1.5rem;
}

.related-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.related-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.related-content .btn-outline {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

/* Animations */
[data-aos] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Project Show Page Styles (add to your main CSS) */
.project-hero {
    background: linear-gradient(135deg, #f0fbfa 0%, #ffffff 100%);
    padding: 4rem 0 2rem;
    border-bottom: 1px solid rgba(146,223,218,0.3);
}
.project-breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.project-breadcrumb a { color: var(--brand-primary-deep); text-decoration: none; }
.project-hero h1 {
    font-size: clamp(2rem,5vw,3rem);
    background: linear-gradient(145deg,#0f2c2a,#2f6b66);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.client-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(146,223,218,0.2);
    padding: 0.4rem 1rem;
    border-radius: 40px;
}
.project-main { padding: 3rem 0 5rem; }
.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
@media (max-width:768px) { .project-grid { grid-template-columns: 1fr; } }
.project-info h2 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    gap: 0.8rem;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.feature-item i { color: var(--brand-primary-deep); }
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.tech-badge {
    background: var(--gray-100);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    border: 1px solid var(--gray-200);
}
.project-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 1.5rem;
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    margin: 1.5rem 0;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.meta-item i { font-size: 1.5rem; color: var(--brand-primary-deep); }
.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}
.project-thumbnail {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.project-thumbnail img { width: 100%; transition: transform 0.5s; }
.project-thumbnail:hover img { transform: scale(1.02); }
.client-logo {
    text-align: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--border-radius-md);
}
.related-projects {
    padding: 5rem 0;
    background: var(--gray-50);
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 2rem;
}
.related-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-base);
}
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.related-image { height: 180px; overflow: hidden; }
.related-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.related-card:hover .related-image img { transform: scale(1.05); }
.related-content { padding: 1.5rem; }
.related-content h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.related-content p { color: var(--gray-600); margin-bottom: 1rem; }

/* ========== PROJECTS CAROUSEL ========== */
.projects-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 1rem;
}

.projects-carousel-container {
    overflow-x: hidden;
    scroll-behavior: smooth;
    flex: 1;
    border-radius: var(--border-radius-md);
}

.projects-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 1.34rem);
    min-width: 0;
}

/* Navigation buttons */
.carousel-nav {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    color: var(--brand-primary-deep);
    font-size: 1.2rem;
    z-index: 2;
}

.carousel-nav:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
    transform: scale(1.05);
}

/* Dot pagination */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--brand-primary-deep);
    transform: scale(1.2);
    width: 24px;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .projects-carousel-wrapper {
        gap: 0.5rem;
    }
    .carousel-slide {
        flex: 0 0 100%;
    }
    .carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}