:root {
  /* Precise Mockup Colors */
  --color-bg-dark: #FFFFFF;
  --color-bg-alt: #F8F9FA; 
  --color-primary: #081B3A; /* Dark Navy Blue from Mockup */
  --color-secondary: #0D2B5D; /* Lighter Navy Blue */
  --color-accent: #F4B41A; /* Mockup Yellow/Gold */
  --color-text-light: #1C2833; /* Dark text */
  --color-text-muted: #6C757D; /* Grey text */
  --color-border: #EAECEE;
  --color-card-bg: #FFFFFF;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-section: 120px; /* More breathing room */
  --spacing-container: 5%;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.glass-panel-dark {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-container);
}

section {
  padding: var(--spacing-section) 0;
  position: relative;
}

.section-bg-alt {
  background-color: var(--color-bg-alt);
}

.section-bg-dark {
  background-color: #0A0F1C;
  color: #FFFFFF;
}

.section-bg-dark .section-title {
  color: #FFFFFF;
}

.section-bg-gradient {
  background: linear-gradient(135deg, #0A0F1C 0%, #1a2744 100%);
  color: #FFFFFF;
}

.section-bg-gradient .section-title {
  color: #FFFFFF;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.section-subtitle {
  color: var(--color-primary);
  font-size: 1rem;

  letter-spacing: 2px;
  font-weight: 600;
}

/* Top Bar */
.top-bar {
  background-color: #051024; /* Very dark navy */
  color: #FFFFFF;
  font-size: 0.75rem;
  padding: 0.5rem 0;
  position: relative;
  z-index: 1001;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left span, .top-bar-right span {
  margin-right: 1.5rem;
  opacity: 0.9;
}

.top-bar-left i {
  margin-right: 0.4rem;
  color: var(--color-accent);
}

.since-text {
  color: var(--color-accent);
  font-weight: 600;
}

.social-icons {
  display: inline-flex;
  gap: 1rem;
}

.social-icons a {
  color: #FFFFFF;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 1;
  color: var(--color-accent);
}

/* Header & Nav */
header.main-header {
  position: sticky; /* Makes it stay at the top when scrolling */
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-primary);
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
}

.logo-subtext {
  font-size: 0.65rem;
  letter-spacing: 4px;
  font-weight: 600;
  margin: 0.2rem 0;
}

.logo-tagline {
  font-size: 0.55rem;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 1px;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--color-accent);
}

.btn-get-in-touch {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.btn-get-in-touch i {
  color: var(--color-accent);
}

.btn-get-in-touch:hover {
  background-color: var(--color-secondary);
  color: #ffffff;
}

.cta-btn-outline {
  background-color: transparent;
  color: var(--color-accent);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;

  font-size: 0.9rem;
  border: 1px solid var(--color-accent);
  display: inline-block;
  cursor: pointer;
}

.cta-btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
}

/* Mobile Menu Icon */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px; /* Prevent going under fixed header */
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide .container {
  position: relative;
  z-index: 3;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1541889812-70b9fa00c735?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.6) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin-top: 150px; /* Push text down to give gap from top */
  padding-bottom: 100px; /* Extra gap at bottom to avoid overlap with floating trust strip */
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-features {
  display: flex;
  gap: 2rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.hero-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-features i {
  color: var(--color-primary);
}

/* Trust Strip */
.trust-strip {
  background: transparent;
  padding: 0;
  margin-top: -80px;
  position: relative;
  z-index: 10;
  border-top: none;
}

.trust-strip .container {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid var(--color-accent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 3rem 2rem;
  color: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-item h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.trust-item p {
  font-size: 0.85rem;
  font-weight: 700;

}

/* Grid Layouts for Sections */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

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

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

@media (max-width: 1200px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid-5 {
    grid-template-columns: 1fr;
  }
}

/* About Section */
.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-overlay-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  padding: 2rem;
  border-radius: 4px;
}

.process-steps {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.step i {
  color: var(--color-text-muted);
}

/* Services / What We Do */
.service-card {
  background: var(--color-card-bg);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid var(--color-border);
  height: 100%;
}

.section-bg-dark .service-card, .section-bg-gradient .service-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  color: #FFFFFF;
  backdrop-filter: blur(10px);
}

.section-bg-dark .service-card h3, .section-bg-gradient .service-card h3 {
  color: #FFFFFF;
}

.section-bg-dark .service-card p, .section-bg-gradient .service-card p {
  color: rgba(255, 255, 255, 0.7);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.section-bg-dark .service-card:hover, .section-bg-gradient .service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.05);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Industries */
.industry-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
}

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

.industry-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 28, 0.95) 0%, rgba(10, 15, 28, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

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

.industry-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.industry-content p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.industry-projects {
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.industry-card:hover .industry-projects {
  opacity: 1;
  transform: translateY(0);
}

.industry-projects li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.industry-projects li::before {
  content: '•';
  color: var(--color-accent);
}

/* Projects Horizontal Scroll */
.projects-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.projects-container::-webkit-scrollbar {
  display: none;
}

.project-card {
  min-width: 400px;
  scroll-snap-align: start;
  background-color: var(--color-card-bg);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.project-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.project-card-body {
  padding: 2rem;
}

.project-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
  color: var(--color-primary);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.project-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.project-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

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

.feature-item {
  display: flex;
  gap: 1.5rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 229, 255, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.feature-content p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Certifications / Awards */
.certificate-card {
  border: 1px solid var(--color-accent);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 179, 0, 0.05) 0%, transparent 100%);
  height: 100%;
}

.certificate-card i {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.award-item {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.award-item:last-child {
  border-bottom: none;
}

.award-title {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.award-org {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Clients */
.client-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  opacity: 0.8;
}

.client-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-muted);
  padding: 1.5rem 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
  background: var(--color-card-bg);
}

.client-logo:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-5px);
}

/* Process */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background-color: var(--color-bg-dark);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  position: relative;
  z-index: 2;
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 229, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: var(--color-bg-dark);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0091ea 100%);
  color: var(--color-bg-dark);
  text-align: center;
  padding: 5rem 2rem;
}

.cta-section h2 {
  color: var(--color-bg-dark);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: 1px;
  transition: opacity 0.5s ease;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;

  border: none;
  display: inline-block;
  cursor: pointer;
}

.btn-dark:hover {
  background-color: #121A2F;
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--color-bg-dark);
  border: 2px solid var(--color-bg-dark);
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;

  display: inline-block;
  cursor: pointer;
}

.btn-outline-dark:hover {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

/* Contact */
.contact-form {
  background-color: var(--color-card-bg);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

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

.form-control {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
  padding: 1rem;
  border-radius: 4px;
  font-family: var(--font-body);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.08);
}

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

.contact-info {
  padding-right: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: #0f172a; /* Deep industrial slate/blue */
  color: #f8fafc;
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--color-secondary); /* Electric yellow accent */
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  color: #ffffff; /* White logo in footer */
}

.footer-brand p {
  color: #94a3b8; /* Light gray text */
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ffffff; /* White headers */
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 30px;
  background-color: var(--color-secondary);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8; /* Light gray links */
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-secondary); /* Electric yellow on hover */
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #64748b;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  .grid-2 {
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-section: 60px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 80px);
    background-color: #ffffff;
    box-shadow: 10px 0 30px rgba(0,0,0,0.15);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1rem 2rem;
    transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
    overflow-y: auto;
  }
  
  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    color: #111111;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: block;
    transform-origin: left;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .nav-links a:hover, .nav-links a:active {
    transform: scale(1.05) translateX(10px);
    font-weight: 800;
    color: #000000;
    letter-spacing: 0.5px;
    border-bottom-color: transparent;
  }
  
  .header-cta {
    display: none;
  }

  .hero h1 {
    font-size: 1.8rem;
    word-wrap: break-word;
  }
  
  .hero-content {
    margin-top: 60px;
    text-align: center;
    padding: 0 10px;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .hero-features {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 5px;
    margin-top: 2rem;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 5px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-features span {
    font-size: 0.7rem;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 25%;
  }

  .hero-features i {
    font-size: 1.2rem;
    color: var(--color-accent);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }

  .project-card {
    min-width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 2rem;
  }
  
  .contact-info {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

/* Unified Chat Menu */
.chat-menu-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chat-menu-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  margin-bottom: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.chat-menu-container:hover .chat-menu-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-option {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.chat-label {
  background: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  white-space: nowrap;
}

.chat-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.chat-option:hover .chat-icon-circle {
  transform: scale(1.1);
}

.whatsapp-option .chat-icon-circle {
  background-color: #25D366;
}

.tech-support-option .chat-icon-circle {
  background-color: var(--color-primary);
}

.chat-menu-main-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #1a202c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.3s;
}

.chat-menu-container:hover .chat-menu-main-btn {
  transform: scale(1.05);
}

/* Live Chat Widget */
.live-chat-widget {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 350px;
  max-width: calc(100vw - 40px);
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chat-header {
  background: var(--color-primary);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.chat-body {
  display: none;
  flex-direction: column;
  height: 400px;
  background: #f8f9fa;
}

.chat-messages {
  flex-grow: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-messages .message {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.chat-messages .message.admin {
  background: #e9ecef;
  color: #212529;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-messages .message.user {
  background: var(--color-primary);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-input-area {
  display: flex;
  padding: 10px;
  background: white;
  border-top: 1px solid var(--color-border);
}

.chat-input-area input {
  flex-grow: 1;
  border: 1px solid #ced4da;
  border-radius: 20px;
  padding: 10px 15px;
  outline: none;
}

.chat-input-area input:focus {
  border-color: var(--color-primary);
}

.chat-input-area button {
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
  opacity: 0;
}

.lightbox.active .lightbox-content {
  animation: lightboxPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes lightboxPop {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--color-secondary);
}

/* Utilities */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

/* Contact Page Colorful Submit Button */
.cta-btn-colorful {
  background: linear-gradient(135deg, var(--color-primary), #004d99) !important;
  color: #fff !important;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-btn-colorful::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, var(--color-accent), #fca311) !important;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-btn-colorful:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(252, 163, 17, 0.5) !important;
  color: #000 !important;
}

.cta-btn-colorful:hover::before {
  opacity: 1;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
  color: white;
}

.hero-subtitle {
  color: #3b82f6;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 650px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
}
