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

body {
    font-family: Georgia, serif;
    font-size: 16px;
    color: #333333;
    background-color: #ffffff;
    line-height: 1.6;
}

/* a {
    color: #c0392b;
    text-decoration: none;
} */

/* a:hover {
    text-decoration: underline;
} */

/* img {
    max-width: 100%;
    height: auto;
} */

/* =====================
   HEADER
===================== */
#site-header {
    background-color: #1a1a1a;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#site-header .site-branding .site-title {
    font-size: 26px;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
}

#site-header .site-branding .site-title a {
    color: #ffffff;
}

#site-header .site-branding .site-description {
    font-size: 13px;
    color: #aaaaaa;
    margin: 0;
}

/* =====================
   NAVIGATION
===================== */
#site-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

#site-navigation ul li a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

#site-navigation ul li a:hover {
    color: #c0392b;
    text-decoration: none;
}

/* =====================
   MAIN CONTENT
===================== */
#main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 30px;
}

/* =====================
   FOOTER
===================== */
#site-footer {
    background-color: #1a1a1a;
    color: #aaaaaa;
    text-align: center;
    padding: 20px 30px;
    font-size: 14px;
    margin-top: 60px;
}

#site-footer a {
    color: #c0392b;
}
/* dev---------------css----------------------- */

/* ============================================
   Ambica Plastomech LLP - Main Stylesheet
   Primary: #0E5B7A
   ============================================ */

:root {
  --primary: #0E5B7A;
  --primary-dark: #094158;
  --primary-light: #1a7ba3;
  --accent: #f5a623;
  --dark: #0a1e2a;
  --gray-900: #1a2b36;
  --gray-700: #475569;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(14, 91, 122, 0.08);
  --shadow-md: 0 8px 24px rgba(14, 91, 122, 0.12);
  --shadow-lg: 0 20px 50px rgba(14, 91, 122, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(14, 91, 122, 0.08);
  transition: all var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, 0.95); }

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; max-width: var(--max-width); margin: 0 auto;
}

.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.25rem; color: var(--primary); }
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(14, 91, 122, 0.3);
}
.logo-text small { display: block; font-size: 0.65rem; font-weight: 500; letter-spacing: 2px; color: var(--gray-500); text-transform: uppercase; margin-top: -2px; }

.nav-menu { display: flex; gap: 8px; list-style: none; align-items: center; }
.nav-menu a {
  color: var(--gray-900); font-weight: 500; font-size: 0.95rem;
  padding: 10px 16px; border-radius: 8px;
  position: relative; transition: all var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--primary); background: rgba(14, 91, 122, 0.06);
}
.nav-menu a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--primary); border-radius: 2px;
}

.cta-btn {
  background: var(--primary); color: white !important;
  padding: 12px 24px !important; border-radius: 50px !important;
  font-weight: 600; transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(14, 91, 122, 0.25);
}
.cta-btn:hover {
  background: var(--primary-dark) !important; transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 91, 122, 0.4); color: white !important;
}

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--primary); transition: all var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ============================================
   HERO BANNER (shared across pages)
   ============================================ */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  background:
    radial-gradient(circle at 20% 30%, rgba(26, 123, 163, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(14, 91, 122, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #f0f7fb 0%, #ffffff 50%, #e6f1f7 100%);
  overflow: hidden;
}

.hero.hero-page { min-height: 55vh; padding: 160px 0 80px; }

.hero::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(14, 91, 122, 0.04) 35px, rgba(14, 91, 122, 0.04) 36px);
  pointer-events: none;
}

.hero-wave {
  position: absolute; right: -10%; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px; opacity: 0.5; pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14, 91, 122, 0.08); color: var(--primary);
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
  border: 1px solid rgba(14, 91, 122, 0.15);
}
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

.hero h1 { margin-bottom: 24px; }
.hero h1 span { color: var(--primary); position: relative; display: inline-block; }
.hero h1 span::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 12px;
  background: rgba(245, 166, 35, 0.3); z-index: -1; transform: skewX(-15deg);
}

.hero-subtitle { font-size: 1.15rem; color: var(--gray-700); margin-bottom: 36px; max-width: 600px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 8px 20px rgba(14, 91, 122, 0.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(14, 91, 122, 0.4); color: white; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-3px); }
.btn svg { transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 100px 0; position: relative; }
.section-title { text-align: center; margin-bottom: 64px; }
.section-title .eyebrow {
  display: inline-block; color: var(--primary); font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; font-size: 0.8rem;
  margin-bottom: 12px;
}
.section-title h2 { margin-bottom: 16px; }
.section-title p { color: var(--gray-700); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

.bg-light { background: var(--gray-50); }
.bg-dark { background: var(--dark); color: white; }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: white; }

/* ============================================
   CARDS / GRIDS
   ============================================ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: white; border-radius: var(--radius-lg); padding: 36px 28px;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1px solid rgba(14, 91, 122, 0.06);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(14, 91, 122, 0.2); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(14, 91, 122, 0.1), rgba(26, 123, 163, 0.05));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--primary);
  transition: all var(--transition);
}
.card:hover .card-icon { background: var(--primary); color: white; transform: rotate(-5deg) scale(1.1); }
.card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.card p { color: var(--gray-700); font-size: 0.95rem; }

/* Industry pills/cards */
.industries-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px;
}
.industry-card {
  text-align: center; padding: 32px 20px; background: white;
  border-radius: var(--radius); transition: all var(--transition);
  border: 1px solid var(--gray-100); cursor: pointer;
}
.industry-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white; border-color: var(--primary);
}
.industry-card:hover h4, .industry-card:hover .industry-icon { color: white; }
.industry-card:hover .industry-icon { background: rgba(255, 255, 255, 0.2); }
.industry-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(14, 91, 122, 0.08); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; transition: all var(--transition);
}
.industry-card h4 { font-size: 1rem; transition: color var(--transition); }

/* ============================================
   TIMELINE / MILESTONE
   ============================================ */
.timeline {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  position: relative; margin-top: 60px;
}
.timeline::before {
  content: ''; position: absolute; top: 40px; left: 5%; right: 5%; height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  z-index: 0;
}
.timeline-item { position: relative; text-align: center; }
.timeline-year {
  display: inline-block; width: 80px; height: 80px; line-height: 80px;
  background: white; border: 3px solid var(--primary); border-radius: 50%;
  font-weight: 800; color: var(--primary); font-size: 1.1rem;
  position: relative; z-index: 2; transition: all var(--transition);
  box-shadow: 0 0 0 6px rgba(14, 91, 122, 0.08);
}
.timeline-item:hover .timeline-year {
  background: var(--primary); color: white; transform: scale(1.1);
  box-shadow: 0 0 0 10px rgba(14, 91, 122, 0.15);
}
.timeline-content {
  margin-top: 24px; padding: 24px 18px;
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border-top: 4px solid var(--primary);
}
.timeline-item:hover .timeline-content { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.timeline-content h4 { color: var(--primary); margin-bottom: 12px; font-size: 1rem; }
.timeline-content ul { list-style: none; font-size: 0.85rem; color: var(--gray-700); }
.timeline-content li { padding: 4px 0; }

/* ============================================
   PROCESS STEPS
   ============================================ */
.process {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  position: relative;
}
.process-step { text-align: center; position: relative; padding: 24px 12px; }
.process-step:not(:last-child)::after {
  content: '→'; position: absolute; right: -10px; top: 60px;
  font-size: 2rem; color: var(--primary); opacity: 0.4;
}
.process-icon {
  width: 100px; height: 100px; margin: 0 auto 20px;
  background: linear-gradient(135deg, #e6f4f8, #d0e7ef);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 2rem;
  transition: all var(--transition); position: relative;
}
.process-step:hover .process-icon {
  transform: translateY(-8px) rotate(-5deg);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white; box-shadow: var(--shadow-md);
}
.process-num {
  position: absolute; top: -10px; right: -5px; width: 32px; height: 32px;
  background: var(--accent); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
}
.process-step h4 { margin-bottom: 8px; font-size: 1.1rem; }
.process-step p { font-size: 0.85rem; color: var(--gray-700); }

/* ============================================
   STATS
   ============================================ */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; padding: 60px 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg); color: white; position: relative; overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15), transparent 70%);
}
.stat { text-align: center; position: relative; }
.stat-num { font-size: 3rem; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; color: white; line-height: 1; margin-bottom: 8px; }
.stat-num .plus { color: var(--accent); }
.stat-label { font-size: 0.95rem; opacity: 0.9; }

/* ============================================
   MACHINE / PRODUCT CARDS
   ============================================ */
.machine-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  position: relative; border: 1px solid var(--gray-100);
}
.machine-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.machine-image {
  height: 240px; background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.machine-image img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform 0.6s ease; }
.machine-card:hover .machine-image img { transform: scale(1.08); }
.machine-count {
  position: absolute; top: 16px; right: 16px;
  background: var(--primary); color: white; padding: 6px 16px;
  border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}
.machine-info { padding: 24px; }
.machine-info h3 { margin-bottom: 8px; }
.machine-info p { color: var(--gray-700); font-size: 0.9rem; }

/* Product grid for IBM */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px;
}
.product-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1px solid var(--gray-100); cursor: pointer;
}
.product-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-md); }
.product-header {
  background: var(--primary); color: white; padding: 12px 16px;
  font-weight: 600; font-size: 0.95rem; text-align: center;
}
.product-image {
  height: 220px; background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-image img { max-height: 80%; object-fit: contain; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2)); }
.product-image .placeholder {
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
  border: 2px dashed rgba(255,255,255,0.3); padding: 40px 20px; border-radius: 8px;
}
.product-specs {
  display: grid; grid-template-columns: 1fr 1fr; padding: 16px;
  font-size: 0.85rem; gap: 8px 12px;
}
.product-specs span:nth-child(odd) { color: var(--gray-500); font-weight: 500; }
.product-specs span:nth-child(even) { color: var(--dark); font-weight: 700; text-align: right; }
.product-cap { background: var(--accent); color: white; padding: 4px 10px; border-radius: 12px; font-size: 0.7rem; font-weight: 600; position: absolute; top: 12px; right: 12px; }

/* Category tabs */
.tabs {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 48px; padding: 8px; background: var(--gray-50);
  border-radius: 50px; max-width: fit-content; margin-left: auto; margin-right: auto;
}
.tab-btn {
  padding: 10px 24px; border: none; background: transparent;
  border-radius: 50px; font-weight: 600; cursor: pointer; font-size: 0.9rem;
  color: var(--gray-700); transition: all var(--transition);
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active { background: var(--primary); color: white; box-shadow: var(--shadow-md); }
.tab-content { display: none; animation: fadeIn 0.4s ease; }
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================
   CONTACT
   ============================================ */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.contact-info { padding: 0; }
.contact-info-item {
  display: flex; gap: 20px; padding: 24px; margin-bottom: 16px;
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border-left: 4px solid var(--primary);
}
.contact-info-item:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }
.contact-info-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: rgba(14, 91, 122, 0.1); color: var(--primary);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.contact-info h4 { margin-bottom: 6px; font-size: 1rem; color: var(--gray-500); font-weight: 600; }
.contact-info p, .contact-info a { color: var(--dark); font-weight: 600; font-size: 1rem; }
.contact-info a:hover { color: var(--primary); }

.contact-form {
  background: white; padding: 40px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-100);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; color: var(--gray-700); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px; border: 2px solid var(--gray-100);
  border-radius: 10px; font-size: 0.95rem; font-family: inherit;
  background: var(--gray-50); transition: all var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary); background: white;
  box-shadow: 0 0 0 4px rgba(14, 91, 122, 0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.map-embed {
  margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); height: 400px;
  background: var(--gray-100);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark); color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px; position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px;
}
.footer h4 { color: white; margin-bottom: 24px; font-size: 1.05rem; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-about p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; transition: all var(--transition); }
.footer ul a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.9rem; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 30px;
  text-align: center; font-size: 0.85rem;
}

/* ============================================
   FEATURE SPLIT (image + content)
   ============================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-image {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  aspect-ratio: 4/3; position: relative;
  box-shadow: var(--shadow-md);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.split-image:hover img { transform: scale(1.05); }
.split-image .placeholder-img {
  display: flex; align-items: center; justify-content: center;
  height: 100%; flex-direction: column; gap: 16px;
  color: var(--primary); padding: 40px;
}
.split h2 { margin-bottom: 24px; }
.split p { color: var(--gray-700); margin-bottom: 20px; font-size: 1.05rem; }
.feature-list { list-style: none; margin-top: 24px; }
.feature-list li { padding: 10px 0; display: flex; gap: 12px; align-items: start; }
.feature-list svg { flex-shrink: 0; color: var(--primary); margin-top: 4px; }

/* Vision Mission cards */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card {
  padding: 48px 36px; border-radius: var(--radius-lg);
  position: relative; overflow: hidden; transition: all var(--transition);
}
.vm-card.vision { background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%); border: 1px solid rgba(14, 91, 122, 0.1); }
.vm-card.mission { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; }
.vm-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.vm-card.mission h3 { color: white; }
.vm-icon {
  width: 80px; height: 80px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; transition: all var(--transition);
}
.vm-card.vision .vm-icon { background: var(--primary); color: white; }
.vm-card.mission .vm-icon { background: rgba(255, 255, 255, 0.15); color: white; }
.vm-card:hover .vm-icon { transform: rotate(-8deg) scale(1.1); }
.vm-card h3 { font-size: 1.75rem; margin-bottom: 16px; }
.vm-card p { font-size: 1.05rem; line-height: 1.75; }
.vm-card.mission p { color: rgba(255, 255, 255, 0.9); }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg); padding: 60px; text-align: center;
  color: white; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; left: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.2), transparent 60%);
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -50%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 60%);
}
.cta-banner h2 { color: white; margin-bottom: 16px; position: relative; }
.cta-banner p { font-size: 1.1rem; opacity: 0.95; margin-bottom: 32px; position: relative; }
.cta-banner .btn { position: relative; }
.cta-banner .btn-primary { background: white; color: var(--primary); }
.cta-banner .btn-primary:hover { background: var(--accent); color: white; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .nav-menu {
    position: fixed; top: 75px; left: 0; right: 0; bottom: 0;
    background: white; flex-direction: column; padding: 40px 24px;
    gap: 4px; transform: translateX(100%); transition: transform 0.4s ease;
    overflow-y: auto;
  }
  .nav-menu.active { transform: translateX(0);height: 400px; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 14px 20px; font-size: 1.05rem; }
  .menu-toggle { display: flex; }
  .timeline, .process { grid-template-columns: repeat(2, 1fr); }
  .timeline::before, .process-step:not(:last-child)::after { display: none; }
  .split, .vm-grid, .contact-wrap, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  section { padding: 70px 0; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .cta-banner { padding: 40px 24px; }
  .footer-grid { gap: 32px; }
}
@media (max-width: 560px) {
  .timeline, .process { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 24px; }
  .stats { padding: 40px 24px; }
}