:root {
  --primary: #0F172A;
  --secondary: #1E293B;
  --accent: #F97316;
  --accent-hover: #ea580c;
  --accent-glow: rgba(249, 115, 22, 0.3);
  --white: #FFFFFF;
  --bg: #F8FAFC;
  --text-dark: #0F172A;
  --text-light: #CBD5E1;
  --text-muted: #94A3B8;
  --text-paragraph-light: #475569;
  --glass-bg: rgba(30, 41, 59, 0.7);
  --glass-border: rgba(249, 115, 22, 0.15);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: #475569;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { color: var(--text-dark); }

::selection { background: var(--accent); color: var(--white); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
.accent { color: var(--accent) !important; }
.bg-accent { background: var(--accent) !important; }

/* PRELOADER */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.gear-spinner {
  width: 60px; height: 60px;
  border: 4px solid rgba(249,115,22,0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* NAVBAR */
.glass-navbar {
  background: rgba(15, 23, 42, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(249, 115, 22, 0.1);
  padding: 12px 0;
  transition: var(--transition);
}
.glass-navbar.scrolled { background: rgba(15, 23, 42, 0.95) !important; box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.brand-text { font-size: 1.5rem; font-weight: 800; color: var(--white); text-decoration: none; }
.navbar-nav .nav-link {
  color: #94A3B8 !important;
  font-weight: 500;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--white) !important; background: rgba(249,115,22,0.1); }
.glass-dropdown { background: rgba(15,23,42,0.95); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 12px; }
.glass-dropdown .dropdown-item { color: #94A3B8; padding: 10px 20px; transition: var(--transition); }
.glass-dropdown .dropdown-item:hover { background: rgba(249,115,22,0.1); color: var(--white); }

/* BUTTONS */
.btn-accent-glow {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  border: none;
  padding: 12px 32px;
  border-radius: 12px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-accent-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
  color: var(--white);
}
.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 10px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-accent:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.btn-outline-light { border: 2px solid rgba(255,255,255,0.3); color: var(--white); border-radius: 12px; font-weight: 600; transition: var(--transition); }
.btn-outline-light:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }

/* GLASS CARD */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  color: var(--white);
  transition: var(--transition);
}
.glass-card:hover { border-color: rgba(249,115,22,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.glass-card h1, .glass-card h2, .glass-card h3, .glass-card h4, .glass-card h5, .glass-card h6 { color: var(--white); }
.glass-card p { color: var(--white); }
.glass-card .text-muted { color: var(--text-muted) !important; }

/* HERO */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--primary);
  padding-top: 120px;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s ease; background-size: cover; background-position: center; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); z-index: 1; }
.hero-pattern {
  position: absolute; inset: 0; z-index: 1;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(249,115,22,0.03) 40px, rgba(249,115,22,0.03) 41px);
}
.hero-content { position: relative; z-index: 2; }
.hero-image-col { position: relative; z-index: 2; }
.hero-image { max-height: 500px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); border-radius: 16px; }
.hero-image-placeholder {
  width: 100%; max-width: 400px; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 12rem; color: rgba(249,115,22,0.15);
  background: radial-gradient(ellipse at center, rgba(249,115,22,0.08) 0%, transparent 60%);
  border-radius: 50%;
}
.hero-badge {
  display: inline-block;
  background: rgba(249,115,22,0.15);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(249,115,22,0.2);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: #E2E8F0;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-actions { margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: 0.85rem; color: #94A3B8; text-transform: uppercase; letter-spacing: 1px; }
.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #94A3B8; font-size: 0.75rem; letter-spacing: 2px;
}
.scroll-mouse { width: 24px; height: 38px; border: 2px solid #94A3B8; border-radius: 12px; padding: 4px; }
.scroll-dot { width: 4px; height: 8px; background: var(--accent); border-radius: 2px; margin: 0 auto; animation: scrollAnim 2s infinite; }
@keyframes scrollAnim { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }
.hero-dots { position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 10px; }
.hero-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; border: none; transition: var(--transition); }
.hero-dot.active { background: var(--accent); width: 30px; border-radius: 6px; }

/* PAGE HERO */
.page-hero {
  padding: 140px 0 80px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(249,115,22,0.1) 0%, transparent 50%);
}
.page-hero h1, .page-hero h2 { color: var(--white); }
.page-hero p { color: var(--text-light); }
.page-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); }
.page-desc { font-size: 1.1rem; color: #CBD5E1; max-width: 600px; }

/* SECTIONS */
.section { padding: 100px 0; position: relative; }
.section h1, .section h2, .section h3, .section h4, .section h5, .section h6 { color: var(--text-dark); }
.section p { color: #475569; }
.bg-dark-section { background: var(--primary); color: var(--white); }
.bg-dark-section h1, .bg-dark-section h2, .bg-dark-section h3, .bg-dark-section h4, .bg-dark-section h5, .bg-dark-section h6 { color: var(--white); }
.bg-dark-section p { color: var(--white) !important; }
.bg-dark-section .text-muted { color: var(--text-muted) !important; }

.section-header { margin-bottom: 60px; }
.section-badge {
  display: inline-block;
  background: rgba(249,115,22,0.1);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; }
.section-desc { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* SERVICE CARD */
.service-card {
  display: block;
  padding: 35px 30px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  height: 100%;
  overflow: hidden;
}
.service-card:hover { color: inherit; }
.service-img {
  margin: -35px -30px 20px;
  height: 200px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-icon {
  width: 70px; height: 70px;
  background: rgba(249,115,22,0.1);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--accent);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--accent); color: var(--white); transform: scale(1.1) rotate(-5deg); }
.service-card h4 { color: var(--white); margin-bottom: 0.8rem; font-weight: 700; }
.service-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }
.service-link { color: var(--accent); font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.service-link i { transition: var(--transition); display: inline-block; }
.service-card:hover .service-link i { transform: translateX(4px); }
.service-sidebar-link { color: var(--text-muted); text-decoration: none; display: block; padding: 8px 12px; border-radius: 8px; transition: var(--transition); }
.service-sidebar-link:hover, .service-sidebar-link.active { color: var(--accent); background: rgba(249,115,22,0.1); }

/* ABOUT */
.about-image-wrapper { position: relative; }
.about-image-placeholder {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  aspect-ratio: 4/3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.about-image-placeholder i { font-size: 5rem; color: var(--accent); margin-bottom: 1rem; }
.about-image-placeholder h4 { color: var(--white); font-weight: 700; }
.about-image-placeholder p { color: var(--white); }
.about-experience {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: 20px;
  padding: 25px 30px;
  text-align: center;
  box-shadow: 0 8px 30px var(--accent-glow);
}
.exp-number { display: block; font-size: 2.5rem; font-weight: 900; color: var(--white); line-height: 1; }
.exp-label { font-size: 0.8rem; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 1px; }
.about-feature { display: flex; align-items: center; gap: 8px; color: var(--white); font-weight: 500; }
.text-dark-heading { color: var(--text-dark) !important; }

/* STRENGTHS */
.strength-card { padding: 35px 25px; height: 100%; }
.strength-card h4 { color: var(--white); font-weight: 700; }
.strength-card p { color: var(--text-light); }

/* CAPABILITIES */
.capability-card { padding: 25px; }
.capability-icon { font-size: 2rem; color: var(--accent); }
.capability-progress { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; }
.capability-progress .progress-bar { background: linear-gradient(90deg, var(--accent), var(--accent-hover)); border-radius: 4px; }
.capability-pct { display: block; text-align: right; font-size: 0.85rem; color: var(--accent); font-weight: 600; margin-top: 4px; }

/* MACHINERY */
.machinery-card { display: block; text-decoration: none; color: inherit; height: 100%; overflow: hidden; padding: 30px; text-align: center; }
.machinery-card:hover { color: inherit; }
.machinery-img { height: 200px; overflow: hidden; }
.machinery-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.machinery-card:hover .machinery-img img { transform: scale(1.08); }
.machinery-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--accent);
}
.machinery-icon { font-size: 3rem; color: var(--accent); margin-bottom: 1rem; }
.machinery-info {  }
.machinery-info h5 { color: var(--white); font-weight: 700; margin-bottom: 0.3rem; }
.machinery-info p { color: var(--text-light); font-size: 0.9rem; }
.machinery-type { display: block; color: var(--accent); font-weight: 600; font-size: 0.85rem; margin-bottom: 0.5rem; }
.capacity-badge {
  display: inline-block;
  background: rgba(249,115,22,0.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* TOOLS */
.tool-card { padding: 30px 20px; height: 100%; }
.tool-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 0.8rem; display: block; }
.tool-card h5 { color: var(--white); font-weight: 700; margin-bottom: 0.3rem; }
.tool-spec { display: block; color: var(--text-light); font-size: 0.85rem; }

/* SPECIALIZATION CARDS */
.specialization-card { display: block; text-decoration: none; color: inherit; padding: 40px 25px; height: 100%; }
.specialization-card:hover { color: inherit; }
.specialization-card h4 { color: var(--white); font-weight: 700; }
.specialization-card p { color: var(--text-light); font-size: 0.9rem; }

/* WHY CHOOSE US */
.whychoose-card { padding: 35px 25px; height: 100%; }
.whychoose-card h4 { color: var(--white); font-weight: 700; }
.whychoose-card p { color: var(--text-light); font-size: 0.9rem; }

/* PROJECTS */
.project-card { display: block; text-decoration: none; color: inherit; height: 100%; overflow: hidden; }
.project-card:hover { color: inherit; }
.project-img { height: 220px; overflow: hidden; position: relative; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.project-card:hover .project-img img { transform: scale(1.08); }
.project-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--text-muted);
}
.project-cat {
  position: absolute; bottom: 10px; left: 10px;
  background: var(--accent); color: var(--white);
  padding: 4px 12px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 600;
}
.project-info { padding: 20px; }
.project-info h5 { color: var(--white); font-weight: 700; }
.project-info p { color: var(--text-light); }

/* GALLERY */
.gallery-card { display: block; text-decoration: none; }
.gallery-img { position: relative; overflow: hidden; border-radius: var(--radius); height: 250px; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-img:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(15,23,42,0.7);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  color: var(--white);
}
.gallery-img:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; }
.gallery-cat { font-size: 0.75rem; background: var(--accent); padding: 2px 10px; border-radius: 4px; margin-top: 4px; }

/* INDUSTRY */
.industry-card { padding: 35px 25px; text-align: center; height: 100%; }
.industry-card h4 { color: var(--white); font-weight: 700; }
.industry-card p { color: var(--text-light); }
.industry-pill {
  display: inline-block;
  background: rgba(249,115,22,0.1);
  color: var(--accent);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  margin: 5px;
  border: 1px solid rgba(249,115,22,0.2);
  transition: var(--transition);
}
.industry-pill:hover { background: var(--accent); color: var(--white); }

/* TESTIMONIALS */
.testimonial-card { padding: 30px; height: 100%; }
.testimonial-stars { color: #fbbf24; margin-bottom: 1rem; }
.testimonial-content { color: var(--white); font-style: italic; line-height: 1.6; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 1.5rem; }
.testimonial-company { color: var(--white); font-size: 0.85rem; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }

/* TIMELINE */
.timeline { position: relative; max-width: 600px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--accent), transparent);
}
.timeline-item { position: relative; padding-left: 60px; margin-bottom: 40px; }
.timeline-year {
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px;
  background: var(--accent); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.75rem;
  z-index: 2;
}
.timeline-content { padding: 20px; }
.timeline-content h5 { color: var(--white); font-weight: 700; }

/* COUNTERS */
.counter-card { padding: 30px 20px; }
.counter-number { display: block; font-size: 2.5rem; font-weight: 900; color: var(--accent); line-height: 1; }
.counter-label { display: block; color: var(--text-muted); font-size: 0.85rem; margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }

/* CTA */
.cta-wrapper { padding: 60px; }
.cta-section { padding: 80px 0; }
.cta-section p { color: var(--text-light); }

/* CONTACT */
.contact-info-item { display: flex; gap: 15px; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-item i { font-size: 1.3rem; margin-top: 2px; }
.contact-info-item h6 { color: var(--white); margin-bottom: 2px; font-weight: 600; }

/* FORMS */
.glass-input {
  background: rgba(15,23,42,0.6) !important;
  border: 1px solid rgba(249,115,22,0.2) !important;
  border-radius: 10px !important;
  color: var(--white) !important;
  padding: 12px 16px !important;
  transition: var(--transition);
}
.glass-input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-glow) !important;
  outline: none;
}
.glass-input::placeholder { color: var(--text-muted); }
.form-label { color: var(--text-muted); font-weight: 500; font-size: 0.9rem; }
.form-select.glass-input { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); }
.glass-alert { background: rgba(30,41,59,0.8); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); color: var(--text-muted); }

/* UPLOAD AREA */
.upload-area {
  padding: 40px 20px;
  text-align: center;
  border: 2px dashed rgba(249,115,22,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.upload-area:hover { border-color: var(--accent); background: rgba(249,115,22,0.05); }

/* MAP */
.map-container { overflow: hidden; }

/* FILTER */
.filter-bar .btn-filter {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border: 1px solid rgba(249,115,22,0.1);
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.filter-bar .btn-filter:hover, .filter-bar .btn-filter.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* FOOTER */
.footer-section {
  background: var(--primary);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
  color: #CBD5E1;
}
.footer-gradient {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.footer-section h5 { color: var(--white); font-weight: 700; }
.footer-section p { color: #CBD5E1; }
.footer-section .text-muted { color: #CBD5E1 !important; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--white); text-decoration: none; transition: var(--transition); font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact .contact-item { display: flex; gap: 12px; margin-bottom: 12px; color: #CBD5E1; font-size: 0.9rem; }
.footer-contact .contact-item a { color: var(--white); text-decoration: none; transition: var(--transition); }
.footer-contact .contact-item a:hover { color: var(--accent); }
.footer-divider { border-color: rgba(249,115,22,0.1); margin: 30px 0; }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 80px; right: 20px; z-index: 999;
  width: 55px; height: 55px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* SCROLL TOP */
.scroll-top {
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  width: 45px; height: 45px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  text-decoration: none;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); color: white; }

/* PAGINATION */
.pagination .page-link {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 10px 18px;
  margin: 0 4px;
  border-radius: 8px !important;
  transition: var(--transition);
}
.pagination .page-item.active .page-link { background: var(--accent); border-color: var(--accent); color: var(--white); }
.pagination .page-link:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ERROR 404 */
.error-404 span { font-size: 8rem; background: linear-gradient(135deg, var(--accent), var(--accent-hover)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.error-404 h2 { color: var(--white); }
.error-404 p { color: var(--text-light); }

/* SERVICE DESCRIPTION */
.service-description { color: #475569; line-height: 1.8; }
.service-description h1, .service-description h2, .service-description h3, .service-description h4 { color: var(--text-dark); }
.service-description p { color: #475569; }

/* PROJECT DESCRIPTION */
.project-description { color: #475569; line-height: 1.8; }
.project-description h1, .project-description h2, .project-description h3, .project-description h4 { color: var(--text-dark); }
.project-description p { color: #475569; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .stat-number { font-size: 1.5rem; }
  .section { padding: 60px 0; }
  .cta-wrapper { padding: 30px; }
  .about-experience { position: static; margin-top: 20px; }
  .navbar-brand { font-size: 1.2rem; }
}

@media (max-width: 576px) {
  .hero-stats { gap: 1rem; }
  .stat-item { flex: 1; text-align: center; }
}
