/* Reset & Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  line-height: 1.6;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.top-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  text-decoration: none;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: #eff6ff;
  color: #1e40af;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  gap: 4px;
  z-index: 101;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: #1e40af;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -5px);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 80px 24px 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 20px;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: scale(1.05);
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
  }
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  position: relative;
  background-image: url('004.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero h1,
.hero p {
  color: #fff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    min-height: 90vh;
    padding: 100px 20px 60px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(30, 64, 175, 0.4);
}

.btn-download-professional {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #fff;
  padding: 14px 24px 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 
    0 8px 25px rgba(5, 150, 105, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn-download-professional:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 35px rgba(5, 150, 105, 0.4),
    0 5px 15px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
}

.btn-icon {
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #1e3a8a;
  font-weight: 700;
}

.section p {
  font-size: 16px;
  color: #4b5563;
  max-width: 700px;
}

.section-alt {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.card h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: #1e3a8a;
}

.tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
  font-weight: 500;
  margin-bottom: 12px;
}

/* Professional Page Styles */
:root {
  --primary: #10b981;
  --primary-dark: #059669;
  --accent: #3b82f6;
  --bg-bright: linear-gradient(135deg, #f8fdfa 0%, #f0fdf4 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: clamp(32px, 6vw, 48px);
  background: linear-gradient(135deg, var(--primary-dark), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #34d399);
  border-radius: 2px;
}

/* Core Solutions Modern */
.core-solutions-modern {
  padding: 100px 0;
  background: var(--bg-bright);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.section-header p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
}

.solutions-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.solution-block {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 24px;
  padding: 48px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: 100%;
}

.solution-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #10b981, #34d399);
}

.solution-block:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 35px 90px rgba(16, 185, 129, 0.25),
    0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.block-icon {
  position: absolute;
  top: -30px;
  left: 32px;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #10b981, #34d399);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.4);
  z-index: 2;
  border: 4px solid white;
}

.block-content {
  padding-top: 24px;
}

.block-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(16, 185, 129, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.block-content h3 {
  font-size: 24px;
  color: #1f2937;
  margin: 8px 0 16px;
  font-weight: 700;
}

.block-content p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .solutions-blocks {
    grid-template-columns: 1fr;
  }
  
  .solution-block {
    padding: 64px 32px 48px;
  }
  
  .block-icon {
    position: static;
    margin: 0 auto 24px;
  }
  
  .block-tag {
    position: static;
    margin-bottom: 16px;
    display: inline-block;
  }
}

/* Why Enzytex */
.why-enzytex {
  padding: 100px 0;
  background: rgba(16, 185, 129, 0.06);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.why-card {
  position: relative;
  padding: 64px 32px 48px;
  background: linear-gradient(145deg, #ffffff, #f8fdfa);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: all 0.4s ease;
  overflow: visible;
  margin-bottom: 24px;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #10b981, #34d399);
  z-index: 1;
}

.why-number {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 
    0 8px 25px rgba(59, 130, 246, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
  border: 3px solid white;
}

.why-card h3 {
  font-size: 24px;
  color: #1f2937;
  margin: 32px 0 20px;
  font-weight: 700;
}

/* About Page Styles */
.about-story {
  padding: 100px 0;
  background: var(--bg-bright);
}

.story-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), #34d399);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-left: 80px;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 8px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #34d399);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.timeline-content h4 {
  color: var(--primary-dark);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.journey-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.stat {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.vision-mission {
  padding: 100px 0;
  background: rgba(16, 185, 129, 0.05);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.value-card {
  text-align: center;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), #34d399);
}

.value-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(16, 185, 129, 0.2);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary), #34d399);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.value-card h3 {
  font-size: 26px;
  color: #1f2937;
  margin-bottom: 20px;
  font-weight: 700;
}

.quality-section {
  padding: 100px 0;
}

.quality-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.quality-header p {
  font-size: 18px;
  color: #6b7280;
}

.quality-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.feature-card {
  padding: 40px 32px;
  background: linear-gradient(145deg, #ffffff, #f8fdfa);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(16, 185, 129, 0.2);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--accent), #60a5fa);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.feature-card h4 {
  font-size: 22px;
  color: #1f2937;
  margin-bottom: 16px;
}

/* Footer */
.footer-cols {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  font-size: 14px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #1e3a8a;
}

.footer-col p {
  color: #6b7280;
  margin-bottom: 8px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #3b82f6;
}

.social-links {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.social-links a {
  font-size: 20px;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: #eff6ff;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 20px 24px;
  text-align: center;
}

.copy {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .story-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 12px 20px;
  }
  
  .section {
    padding: 40px 20px;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
  
  .about-story,
  .vision-mission,
  .quality-section,
  .core-solutions,
  .why-enzytex,
  .core-solutions-modern {
    padding: 60px 0;
  }
  
  .values-grid,
  .quality-features,
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .solution-card {
    flex-direction: column;
    text-align: center;
  }
}
.core-solutions-modern {
  padding: 80px 20px;
  background: #f9fafb;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 600;
}

.solutions-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.solution-block {
  background: #ffffff;
  padding: 50px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.solution-block:hover {
  transform: translateY(-10px);
}

.block-icon {
  font-size: 48px;
  margin-bottom: 18px;
}

.solution-block h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.solution-block p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}
body {
  font-family: 'Poppins', sans-serif;
}

.solutions-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.solution-block {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 70px 20px 50px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0,0,0,0.1);
  border-top: 6px solid #2ecc71;
}

/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap'); */

body {
  font-family: 'Poppins', sans-serif;
}

/* Section */
.core-solutions {
  padding: 80px 20px;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 600;
}

/* Layout */
.solutions-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

/* Cards */
.solution-block {
  position: relative;
  width: 320px;
  height: 200px;
  background: #ffffff;
  border-radius: 18px;
  border-top: 8px solid #2ecc71;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  text-align: center;
  padding-top: 90px; /* space for circle */
  overflow: visible; /* IMPORTANT for full circle */
}

/* FULL CIRCLE (FINAL FIX) */
.icon-circle {
  position: absolute;
  top: -40px; /* ensures full circle visibility */
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: #2ecc71;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  border: 6px solid #ffffff;
  box-shadow: 0 10px 25px rgba(46,204,113,0.4);
}

/* Text */
.solution-block h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #222;
  margin: 0;
}

/* Arrows */
.arrow {
  font-size: 40px;
  color: #2ecc71;
  font-weight: bold;
  margin-top: 20px;
}
