/* CSS Variables - Based on your Tailwind theme */
:root {
  --color-background: #ffffff;
  --color-foreground: oklch(0.145 0 0);
  --color-primary: #030213;
  --color-primary-foreground: oklch(1 0 0);
  --color-secondary: oklch(0.95 0.0058 264.53);
  --color-secondary-foreground: #030213;
  --color-muted: #ececf0;
  --color-muted-foreground: #717182;
  --color-border: rgba(0, 0, 0, 0.1);
  --font-size: 16px;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --radius: 0.625rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.5;
  font-weight: var(--font-weight-normal);
  overflow-x: hidden;
}

/* Typography */
h1 {
  font-size: 3rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.3;
  color: #ffffff;
}

h3 {
  font-size: 1.875rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}

p {
  font-size: 1rem;
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
}

/* Layout */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;

}

.section-header {
  z-index: 2000;
  text-align: center;
  margin-bottom: 4rem;

}

.story-section .section-header h2 {
  margin-bottom: 1rem;
  color: #000000;
}

.section-description {
  font-size: 1.125rem;
  color: #ffffff;
  max-width: 32rem;
  margin: 0 auto;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 6rem 1.5rem;
  color: var(--color-primary-foreground);
}

.hero-con{
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  text-align: center;
  gap: 250px;
  padding: 25px;
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-title {
  color: var(--color-primary-foreground);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-stats {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-stats {
    justify-content: flex-start;
  }
}

.stat-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.stat-card h3 {
  color: var(--color-primary-foreground);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.stat-number {
  font-size: 2rem;
  color: var(--color-primary-foreground);
  font-weight: var(--font-weight-medium);
}

.hero-image-container {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-image-container {
    justify-content: flex-end;
  }
}

.hero-image-wrapper {
  position: relative;
  max-width: 32rem;
}

.hero-image {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-badge {
  position: absolute;
  bottom: -3rem;
  right: -1.5rem;
  background: var(--color-background);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.badge-subtitle {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-bottom: 0.25rem;
}

.badge-title {
  font-size: 1.125rem;
  color: var(--color-foreground);
  font-weight: var(--font-weight-medium);
}

/* Founder Section */
.founder-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .founder-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.founder-image-container {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .founder-image-container {
    justify-content: flex-start;
  }
}

.founder-image-wrapper {
  position: relative;
  max-width: 28rem;
}

.founder-image {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.founder-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.founder-content {
    z-index: 1000;
  text-align: center;
}

@media (min-width: 1024px) {
  .founder-content {
    text-align: left;
  }
}

.founder-name {
  margin-bottom: 1rem;
  color: #ffffff;
}

.founder-role {
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: var(--font-weight-medium);
}

.founder-bio {
  margin-bottom: 2rem;
}

.founder-bio p {
  color: var(--color-muted-foreground);
  margin-bottom: 1rem;
}

.founder-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.detail-card {
  background: rgba(3, 2, 19, 0.1);
  border-radius: var(--radius);
  padding: 0.75rem;
}

.detail-label {
  font-size: 0.875rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.detail-value {
  color: #ffffff;
  font-weight: var(--font-weight-medium);
}


.leader-team{
  color: #000000;
}

.team-description{
  color: #000000;
}

/* Story Section */
.story-section {
  padding: 5rem 1.5rem;
  background: var(--color-background);
}

.story-content {
  max-width: 64rem;
  margin: 0 auto;
}

.story-description {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  line-height: 1.7;
  margin-bottom: 4rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .principles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.principle-card {
  text-align: center;
}

.principle-icon {
  width: 4rem;
  height: 4rem;
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.principle-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.principle-card p {
  color: var(--color-muted-foreground);
}

/* Team Section */
.team-section {
  padding: 5rem 1.5rem;
  background: var(--color-background);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background: var(--color-background);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.team-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.team-card-content {
  padding: 1.5rem;
}

.team-member-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.team-member-image {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  position: relative;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-member-role {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-medium);
}

.team-member-department {
  display: inline-block;
  background: var(--color-muted);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.team-member-bio {
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.team-member-expertise {
  margin-top: 1rem;
}

.expertise-label {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-bottom: 0.5rem;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.expertise-tag {
  display: inline-block;
  background: rgba(3, 2, 19, 0.1);
  color: var(--color-primary);
  border-radius: 9999px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}

.join-team-cta {
  text-align: center;
  background: rgba(236, 236, 240, 0.5);
  border-radius: 1rem;
  padding: 2rem;
}

.join-team-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.join-team-cta p {
  color: var(--color-muted-foreground);
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: rgba(3, 2, 19, 0.9);
  transform: translateY(-1px);
}

/* Values Section */
.values-section {
  padding: 5rem 1.5rem;
  background: rgba(236, 236, 240, 0.3);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--color-primary);
  color: var(--color-primary-foreground);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(3, 2, 19, 0.1);
  color: var(--color-primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
}

.achievements-section {
  background: var(--color-primary);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
}

.achievements-section h3 {
  font-size: 2rem;
  color: var(--color-primary-foreground);
  margin-bottom: 2rem;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 1024px) {
  .achievements-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.achievement-card {
  text-align: center;
}

.achievement-number {
  font-size: 2.5rem;
  color: var(--color-primary-foreground);
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-medium);
}

.achievement-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .founder-name,
  .join-team-cta h3,
  .achievements-section h3 {
    font-size: 1.5rem;
  }
  
  .hero-stats,
  .founder-details {
    justify-content: center;
  }
  
  .hero-badge,
  .founder-badge {
    position: static;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 9999;
}

.whatsapp-btn img {
  width:  70px;
  height: 70px;
  display: block;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.3);
}
.footer {
    background: #000000;
    padding: 1rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}