/* /* body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0d1117;
  color: #ffffff;
  line-height: 1.6;
}

.hero {
  background: linear-gradient(145deg, #1f2937, #111827);
  padding: 100px 20px;
  text-align: center;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2rem;
  color: #9ca3af;
}

.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 6px;
  background: #3b82f6;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #2563eb;
}

.section-title {
  text-align: center;
  margin-top: 80px;
  font-size: 2.2rem;
  color: #e5e7eb;
}

.features {
  padding: 60px 20px;
  background: #1f2937;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: #111827;
  padding: 30px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 10px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.investor-note {
  padding: 60px 20px;
  background: #111827;
  text-align: center;
}

footer {
  padding: 20px;
  text-align: center;
  background: #0d1117;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Animations */
/* .fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}

.delay {
  animation-delay: 0.3s;
}

.delay2 {
  animation-delay: 0.6s;
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: none;
  }
} 

  */

  body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9fb;
  color: #333;
}

.header {
  background: linear-gradient(to right, #2f80ed, #56ccf2);
  color: white;
  padding: 2rem;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 3rem 1rem;
  gap: 2rem;
}

.card {
  width: 300px;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.delay1 { animation-delay: 0.3s; }
.delay2 { animation-delay: 0.6s; }
.delay3 { animation-delay: 0.9s; }
.delay4 { animation-delay: 1.2s; }

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}


.contact {
  background: #fff;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #eee;
  animation: fadeInUp 1s ease-in-out;
}

.contact a {
  color: #2f80ed;
  text-decoration: none;
  font-weight: bold;
}

footer {
  background: #f0f0f0;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.gallery-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.gallery-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}
