/* Container styling to mimic the image layout */
  .vmc-container {
    display: flex;
    flex-wrap: wrap;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
    
    overflow: hidden;
  }

  /* Left Section: Text Content */
  .vmc-left {
    flex: 1 1 40%;
    padding: 40px;
    background-color: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .vmc-title {
    font-size: 28px;
    font-weight: bold;
    color: #003366; /* Dark blue typical of industrial sites */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .vmc-intro {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .vmc-list-section {
    margin-bottom: 20px;
  }

  .vmc-list-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    border-left: 4px solid #0055a5;
    padding-left: 10px;
  }

  .vmc-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  .vmc-list li {
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
  }

  .vmc-list li::before {
    content: "•";
    color: #0055a5;
    font-weight: bold;
    position: absolute;
    left: 0;
  }

  /* Right Section: Image Grid */
  .vmc-right {
    flex: 1 1 50%;
    background-color: #f4f4f4;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
  }

  .grid-item {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 5px;
    text-align: center;
  }

  .grid-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3; /* Keeps images uniform */
    object-fit: cover;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .vmc-container {
      flex-direction: column;
    }
    .vmc-left, .vmc-right {
      width: 100%;
      order: 2; /* Text first usually on mobile, or keep order */
    }
    .vmc-right {
      order: 1; /* Images often look better top on mobile */
    }
  }.galleryphoto {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .product-card {
      background-color: #fff;
      border-radius: 10px;
      padding: 5px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      text-align: center; margin-bottom: 20px;
    }

    .product-card img {
      width: 100%;
      height: 200px;
      object-fit:cover;
      border-radius: 6px;
    }

    .product-name {
      font-size: 18px;
      font-weight: bold;
      margin-top: 15px;
      color: #333;
    }

    .product-desc {
      font-size: 14px;
      color: #555;
      margin-top: 8px;
    }.container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }/* Hero / Intro Section */
        .intro-section {
            padding: 60px 0; margin-top:80px;
            background-color: #f9f9f9;
            text-align: center;
        }

        .intro-section h1 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .intro-section p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
            color: #555;
        }

        /* Services Grid */
        .services-section {
            padding: 60px 0;
        }

        .services-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 28px;
            color: #2c3e50;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: #0056b3;
        }

        .service-icon {
            font-size: 32px;
            color: #0056b3;
            margin-bottom: 15px;
            display: block;
        }

        /* Company Details */
        .details-section {
            padding: 40px 0;
            background-color: #fff;
        }

        .details-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px; 
        }

        .details-text {
            flex: 1;
            min-width: 600px;
        }

        .details-text h3 {
            color: #0056b3;
            margin-bottom: 15px;
        }

        .founder-image {
            flex: 1; float: right;
            min-width: 300px;
            text-align: right;
        }

        .founder-image img {
            max-width: 100%;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        /* Vision, Mission, Values */
        .vmv-section {
            padding: 60px 0;
            background-color: #f0f4f8;
        }

        .vmv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .vmv-card {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            border-top: 4px solid #0056b3;
        }

        .vmv-card h3 {
            margin-top: 0;
            color: #2c3e50;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }

        .vmv-card ul {
            padding-left: 20px;
        }

        .vmv-card ul li {
            margin-bottom: 8px;
        }

        /* Clients/Logos */
        .clients-section {
            padding: 60px 0;
            text-align: center;
        }

        .client-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 80px;
            margin-top: 30px;
            
            
        }

        .client-logos img {
            max-height: 150px;
            max-width: 220px;
        }
@media (max-width: 768px) {
            .details-content {
                flex-direction: column;
            }
        }

       /* ============================================
   EASY CUSTOMIZATION - CSS VARIABLES
   Change these to update the entire site theme
============================================ */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f4f4f5;
  --bg-card: #ffffff;
  
  --fg-primary: #18181b;
  --fg-secondary: #52525b;
  --fg-muted: #a1a1aa;
  
  --accent: #34518B;
  --accent-light: #4a6db0;
  --accent-dark: #243a66;
  
  --border: #e4e4e7;
  --glow: rgba(52, 81, 139, 0.1);
  
  --font-display: 'Instrument Serif', serif;
  --font-body: 'Space Grotesk', sans-serif;
  
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--fg-primary);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

.font-display {
  font-family: var(--font-display);
}

/* Utility classes mapped to vars */
.text-accent { color: var(--accent); }
.text-secondary { color: var(--fg-secondary); }
.text-muted { color: var(--fg-muted); }
.section-bg-secondary { background: var(--bg-secondary); }

/* ============================================
   HERO SLIDER
============================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease-out-expo), visibility 1s;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 8s var(--ease-in-out);
}

.slide.active .slide-bg {
  transform: scale(1);
}

/* Light overlay for light theme text readability */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0.5) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 6%;
}

.slide-number {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out-expo) 0.2s;
}

.slide.active .slide-number {
  opacity: 1;
  transform: translateY(0);
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s var(--ease-out-expo) 0.3s;
  color: var(--fg-primary);
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-title .highlight {
  color: var(--accent);
  font-style: italic;
}

.slide-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--fg-secondary);
  max-width: 500px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-expo) 0.4s;
}

.slide.active .slide-description {
  opacity: 1;
  transform: translateY(0);
}

.slide-cta {
  display: flex;
  gap: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out-expo) 0.5s;
}

.slide.active .slide-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 60px;
  left: 6%;
  right: 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 40px;
  height: 4px;
  background: var(--border);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.slider-dot::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}

.slider-dot.active::after {
  width: 100%;
  animation: dotProgress 6s linear;
}

@keyframes dotProgress {
  from { width: 0; }
  to { width: 100%; }
}

.slider-dot:hover {
  background: #d1d5db;
}

.slider-arrows {
  display: flex;
  gap: 12px;
}

.slider-arrow {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fg-primary);
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: scale(1.1);
}

.slider-arrow:active {
  transform: scale(0.95);
}

/* Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 20;
  width: 0;
}

.slider-progress.running {
  animation: progress 6s linear;
}

@keyframes progress {
  from { width: 0; }
  to { width: 100%; }
}

/* Side Stats */
.slider-stats {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.slider-stat {
  text-align: right;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s var(--ease-out-expo);
}

.slide.active .slider-stat {
  opacity: 1;
  transform: translateX(0);
}

.slide.active .slider-stat:nth-child(1) { transition-delay: 0.6s; }
.slide.active .slider-stat:nth-child(2) { transition-delay: 0.7s; }
.slide.active .slider-stat:nth-child(3) { transition-delay: 0.8s; }

.slider-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.slider-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

@media (max-width: 1024px) {
  .slider-stats {
    display: none;
  }
}

@media (max-width: 768px) {
  .slider-nav {
    bottom: 30px;
    flex-direction: column;
    gap: 20px;
  }
  
  .slider-arrow {
    width: 48px;
    height: 48px;
  }
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
  position: relative;
  background: var(--accent);
  color: white;
  padding: 16px 36px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(52, 81, 139, 0.5);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.5);
  color: var(--fg-primary);
  padding: 16px 36px;
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-quart);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(52, 81, 139, 0.05);
  color: var(--accent);
}

/* ============================================
   NAVIGATION
============================================ */
.nav-blur {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border);
}

.nav-link {
  position: relative;
  color: var(--fg-secondary);
  transition: color 0.3s var(--ease-out-quart);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover {
  color: var(--fg-primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* ============================================
   SERVICES SECTION
============================================ */
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -20px rgba(52, 81, 139, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(52, 81, 139, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  color: var(--accent);
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: white;
}

/* ============================================
   PROCESS SECTION
============================================ */
.process-step {
  position: relative;
  padding-left: 80px;
}

.process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  transition: all 0.3s ease;
}

.process-step:hover .process-number {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.process-line {
  position: absolute;
  left: 28px;
  top: 60px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--border), transparent);
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--glow);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--fg-muted);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  border-color: var(--accent);
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.footer-link {
  color: var(--fg-secondary);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--fg-secondary);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.stagger-container .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-container .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-container .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-container .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-container .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-container .reveal:nth-child(6) { transition-delay: 0.5s; }

/* Map container */
.map-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

/* Scroll down indicator */
.scroll-indicator {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 20;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.5s forwards;
  color: var(--fg-muted);
}

@keyframes fadeInUp {
  to { opacity: 0.8; }
}

.scroll-indicator span {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--fg-muted);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator .wheel {
  width: 3px;
  height: 8px;
  background: var(--fg-muted);
  border-radius: 2px;
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.5; }
}

/* ============================================
   REDUCED MOTION
============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }

  .slide-bg {
    transform: scale(1) !important;
  }
}