@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Delius&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');

/* 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;
  max-width: 100%;
}

/* 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;

}
.founder-label{
  font-size: 3rem !important;
  animation: slide 2s ;
  color: #000000;
  font-weight: 200;
}


@keyframes slide {
  0%{
    transform: translateX(-100%);
  }
  100%{
    transform: translateX(0%);
  }
}
.section-header {
  z-index: 2000;
  text-align: center;
  margin-bottom: 4rem;
  width: auto;
}
.section-header h2{
  font-size: 2rem;
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
  text-decoration: underline;
}
.founder-section .logo{
  position: relative;
  top: -50px;
  width: 200px;
  height: 60px;
  border-radius: 12px;
}
.story-section .section-header h2 {
  margin-bottom: 1rem;
  color: #000000;
}

.section-description {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 5rem;
  color: #ffffff;
  animation: scroll-left-right 15s linear infinite;
  letter-spacing: 2px;
  text-align: center;
  text-shadow: 0 5px 14px 5px rgba(0,0,0,0.3);
}

.welcome-tag{
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 5rem;
  color: #e5bd43;
  animation: scroll-right-left 15s linear infinite;
  text-shadow: 1px 14px 10px 3px rgba(0, 0, 0, 0.7);
}


@keyframes scroll-left-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Hero Section */
.hero-section {

  padding: 6rem 1.5rem;
  color: var(--color-primary-foreground);
}

.hero-con{
  text-align: center;
  gap: 250px;
  padding: 25px;
  background: linear-gradient(to top, #ffeebb 0%, #e2be50 100%);
}
.hero-con h2{
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
  font-family: 3rem;
  margin-top: 2rem;
  color: #000000;
  text-decoration: underline;
}
.hero-con p{
  margin-top: 1rem;
  color: #000000;
  border: 5px solid #e2be50;
  padding: 24px 12px;
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: italic;
  word-spacing: 3px;
}
.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(to bottom, #e2be50 0%, #ffffff 100%);
}

.founder-grid {
  margin-top: -200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  align-items: center;
}



.founder-image-container {
  display: flex;
  justify-content: center;
  animation: founder-img-pop 2s ;
}

@keyframes founder-img-pop{
  0%{
    transform: translateY(100%);
  }
  100%{
    transform: translateY(0%);
  }
}

@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);
  margin-top: -200px;
}

.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 {
  position: static;
  z-index: 1000;
  width: 80%;
  text-align: center;
  background-color: #ffffff;
  padding: 24px;
}

@media (min-width: 1024px) {
  .founder-content {
    text-align: left;
  }
}

.founder-name {
  margin-bottom: 1rem;
  color: #000000;
  font-family: "DM Serif Text", serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1px;
}

.founder-role {
  font-size: 1.125rem;
  color: #000000;
  margin-bottom: 1.5rem;
  font-weight: var(--font-weight-medium);
  text-decoration: underline;
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
}

.founder-bio {
  margin-bottom: 2rem;
  border: 1px solid #000000;
  padding: 30px;
  color: #000000;
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: italic;
  word-spacing: 3px;
}

.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);
  border-radius: var(--radius);
  padding: 0.75rem;
  border: 2px solid #000000;
}

.detail-label {
  font-size: 0.875rem;
  color: #000000;
  margin-bottom: 0.25rem;
}

.detail-value {
  color: #000000;
  font-weight: var(--font-weight-medium);
}


.leader-team{
  color: #ffffff;
}

.team-description{
  color: #ffffff;
}


/* Story Section */
.story-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(to top, #ffffff 0%, #ffffff 100%);
}

.story-content {
  max-width: 64rem;
  margin: 0 auto;
  
}

.story-description {
  font-size: 1.125rem;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 4rem;
  border: 5px solid #e2be50;
  padding: 24px;
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: italic;
  word-spacing: 2px;
}

.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;
  background-color: #00000000;
  border: 2px solid #4d4d4d;
  padding: 12px;
  border-radius: 12px;
}

.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;
  color: #000000;
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
}

.principle-card p {
  color: #000000;
  font-size: 0.8rem;
}

/* Team Section */
.team-section {
  padding: 5rem 1.5rem;
  background-color: #4d4d4d;
}

.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 {
  
  border: 1px solid rgb(255, 213, 25);
  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;
  color: #ffffff;
}

.team-member-role {
  color: #ffffff;
  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: #ffffff;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-shadow: 0 5px 14px rgba(0,0,0,0.3);
}

.team-member-expertise {
  margin-top: 1rem;
}

.expertise-label {
  font-size: 0.875rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 5px 14px rgba(0,0,0,0.3);
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.expertise-tag {
  display: inline-block;
  background: rgba(3, 2, 19, 0.1);
  color: #ffffff;
  border-radius: 9999px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  text-shadow: 0 5px 14px rgba(0,0,0,0.3);
}

.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-color: #4d4d4d;
}

.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;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 12px;
  padding: 12px;
}

.value-card:hover .value-icon {
  background: var(--color-primary);
  color: #ffffff;
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(3, 2, 19, 0.1);
  color: #ffffff;
  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;
  color: #ffffff;
}

.value-card p {
  color: #ffffff;
  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;
  }

  .founder-grid {
    margin-top: 150px;
    grid-template-columns: 1fr 1fr;
  }
  
  .section-header h2 {
    font-size: 2rem;
    
  }

  .section-header{
    width: 100%;
    overflow-x: hidden;
  }
  
  .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;
  }

  .founder-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    margin-top: -200px;
  }

  .section-description{
    font-size: 1.5rem;
  }
  .welcome-tag{
    font-size: 1.5rem;
  }
}

/* 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;
}