@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset and Base Styles */
* {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  color:#333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, rgba(26, 84, 80, 0.2), rgba(0, 0, 0, 0.7)), url('3-min.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

/* Header Styles */
.header-container {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(255, 255, 255, 0.2);
  width: 90%;
  max-width: 1200px;
  position: absolute;
  top: 20px;
  border-radius: 60px;
  padding: 15px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 1002;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  color: #ffffff;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #ffffff;
  scale: 1.2;
}

/* Hero Content */
.hero-content {
  margin-top: 120px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.feature {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.feature i {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 15px;
  display: block;
}

.feature h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffffff;
}

.feature p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Overview Section */
.overview-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #1a5450;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a5450;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Timeline Section */
.timeline-section {
  padding: 100px 0;
  background-image: url("white\ pic-min.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  position: relative;
  z-index: 1;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #1a5450, #2a6b66);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item.left {
  padding-right: 50%;
}

.timeline-item.right {
  padding-left: 50%;
}

.timeline-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.timeline-item.right .timeline-content {
  flex-direction: row-reverse;
}

.timeline-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1a5450, #2a6b66);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(26, 84, 80, 0.3);
  z-index: 2;
}

.timeline-icon i {
  font-size: 1.8rem;
  color: white;
}

.timeline-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  flex: 1;
  transition: all 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.timeline-date {
  background: linear-gradient(135deg, #1a5450, #2a6b66);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 15px;
}

.timeline-card h3 {
  font-size: 3rem;
  font-weight: 600;
  color: #1a5450;
  margin-bottom: 15px;
}

.timeline-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.timeline-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.timeline-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
}

.timeline-features i {
  color: #000000;
  font-size: 0.9rem;
}

.timeline-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.timeline-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
 border: #000000 solid 15px;
  border-radius: 15px;
}

.timeline-image:hover img {
  transform: scale(1.05);
}

/* Standards Section */
.standards-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  z-index: 1;
}

.standards-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.standards-text h2 {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.9;
}

.standards-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.2;
}

.certifications {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.cert-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.cert-item i {
  font-size: 2rem;
  color: #ffffff;
  margin-top: 5px;
  min-width: 40px;
}

.cert-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.cert-item p {
  opacity: 0.9;
  line-height: 1.5;
}

.standards-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.stat-card h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-card p {
  opacity: 0.9;
  font-size: 0.9rem;
}

/* Technology Section */
.technology-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  position: relative;
  z-index: 1;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.tech-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
}

.tech-item i {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.tech-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.tech-item p {
  opacity: 0.9;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a5450;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  color: #2a3335;
  margin-bottom: 40px;
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, #1a5450, #2a6b66);
  color: white;
  box-shadow: 0 10px 30px rgba(26, 84, 80, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2a6b66, #1a5450);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(26, 84, 80, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #1a5450;
  border: 2px solid #1a5450;
}

.btn-secondary:hover {
  background: #1a5450;
  color: white;
  transform: translateY(-3px);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  background: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1003;
  position: relative;
}

.mobile-nav-toggle:hover {
  color: #1a5450;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
    z-index: 1003;
  }
  
  nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 0 0 20px 20px;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    z-index: 1002;
  }
  
  nav.active {
    max-height: 320px;
    padding: 10px 0;
    opacity: 1;
  }
  
  nav a {
    color: #1a5450 !important;
    padding: 15px 40px;
    border-radius: 0;
    border-bottom: 1px solid rgba(26, 84, 80, 0.1);
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    text-align: left;
  }
  
  nav a:last-child {
    border-bottom: none;
  }
  
  nav a:hover {
    background-color: rgba(26, 84, 80, 0.1);
    transform: translateX(10px);
    color: #1a5450 !important;
  }
  
  .header-container {
    position: relative;
    overflow: visible;
    z-index: 1003;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item.left,
  .timeline-item.right {
    padding-left: 80px;
    padding-right: 0;
  }
  
  .timeline-icon {
    left: 30px;
    width: 60px;
    height: 60px;
  }
  
  .timeline-icon i {
    font-size: 1.3rem;
  }
  
  .timeline-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .timeline-item.right .timeline-content {
    flex-direction: column;
  }
  
  .timeline-image {
    order: -1;
  }
  
  .standards-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .standards-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .header-container {
    width: 95%;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  header {
    padding: 0 20px;
  }
  
  nav a {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* Animation Delays */
.timeline-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-item:nth-child(2) { transition-delay: 0.2s; }
.timeline-item:nth-child(3) { transition-delay: 0.3s; }
.timeline-item:nth-child(4) { transition-delay: 0.4s; }
.timeline-item:nth-child(5) { transition-delay: 0.5s; }
.timeline-item:nth-child(6) { transition-delay: 0.6s; }

/* Smooth transitions */
* {
  transition: all 0.3s ease;
}
/* Smooth transitions */
* {
  transition: all 0.3s ease;
}
/* CSS Variables - matches your globals.css */
:root {
  --font-size: 16px;
  --background: #0b0b0b;
  --foreground: oklch(0.145 0 0);
  --primary: #030213;
  --primary-foreground: oklch(100% 0.00011 271.152);
  --secondary: oklch(0.95 0.0058 264.53);
  --secondary-foreground: #030213;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --border: rgba(0, 0, 0, 0.1);
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
}

.dark {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --primary: oklch(0.985 0 0);
  --primary-foreground: oklch(0.205 0 0);
  --secondary: oklch(0.269 0 0);
  --secondary-foreground: oklch(0.985 0 0);
  --muted: oklch(0.269 0 0);
  --muted-foreground: oklch(0.708 0 0);
  --border: oklch(0.269 0 0);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size);
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}

/* Typography */
h2 {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;

  
}

h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  margin-bottom: 1rem;
}

p {
  font-size: var(--text-base);
  font-weight: var(--font-weight-normal);
  line-height: 1.5;

}

/* Process Section Layout */
.process-section {
  padding: 4rem 1rem;
  min-height: 100vh;
  background-color: var(--background);}

.container {
  max-width: 80rem;
  margin: 0 auto;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 4rem;
}

.header h2 {
  margin-bottom: 1rem;
}

.subtitle {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* Steps Container */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* Step Wrapper */
.step-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .step-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .step-wrapper.reverse .step-content {
    order: 2;
  }
  
  .step-wrapper.reverse .step-image {
    order: 1;
  }
}

/* Step Content */
.step-content {
  padding: 0;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.icon-container {
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-wrapper:hover .icon-container {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.step-wrapper:hover .icon {
  color: var(--primary-foreground);
}

.step-number {
  width: 2rem;
  height: 2rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-medium);
  flex-shrink: 0;
}

.step-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Step Image */
.step-image {
  position: relative;
}

.image-container {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: var(--muted);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

/* Decorative Dots */
.decorative-dot {
  position: absolute;
  border-radius: 50%;
}

.decorative-dot.dot-top-right {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--primary);
  opacity: 0.2;
  top: -0.75rem;
  right: -0.75rem;
}

.decorative-dot.dot-bottom-left {
  width: 1rem;
  height: 1rem;
  background-color: var(--primary);
  opacity: 0.2;
  bottom: -0.5rem;
  left: -0.5rem;
}

.decorative-dot.secondary {
  background-color: var(--secondary);
  opacity: 1;
}

/* Reverse layout decorative dots */
.step-wrapper.reverse .decorative-dot.dot-top-right {
  top: auto;
  right: auto;
  bottom: -0.75rem;
  left: -0.75rem;
}

.step-wrapper.reverse .decorative-dot.dot-bottom-left {
  bottom: auto;
  left: auto;
  top: -0.5rem;
  right: -0.5rem;
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.trust-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .process-section {
    padding: 2rem 1rem;
  }
  
  .header {
    margin-bottom: 3rem;
  }
  
  .steps-container {
    gap: 4rem;
  }
  
  .step-wrapper {
    gap: 2rem;
  }
  
  .step-header {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .icon-container {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .step-number {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .process-section {
    padding: 1.5rem 0.75rem;
  }
  
  .steps-container {
    gap: 3rem;
  }
  
  .decorative-dot.dot-top-right {
    width: 1rem;
    height: 1rem;
    top: -0.5rem;
    right: -0.5rem;
  }
  
  .decorative-dot.dot-bottom-left {
    width: 0.75rem;
    height: 0.75rem;
    bottom: -0.375rem;
    left: -0.375rem;
  }
}