body {
  font-family: "Outfit", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-x: hidden;
  font-size: 16px;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #ce82ff, #a38be9);
  color: white;
  padding: 6rem 2rem 4rem;
  text-align: center;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  -webkit-background-clip: text;
  -webkit-text-fill-color: coral;
  background-clip: text;
  animation: fadeInUp 1s ease;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s both;
}

/* Hero Section - Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1rem 3rem;
  }
  
  .hero h1 {
    font-size: 3rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1rem 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
}

/* Story Section */
.story-section {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.story-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.story-text {
  padding: 2rem;
  text-align: center;
  padding: 0 1rem;
  font-size: 20px;
}
.read-more-btn {
  display: none;
};

.story-container {
  display: flex;
  flex-wrap: wrap;
}

.story-card {
  width: 470px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-color: #F39D48; /* Vision default */
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.story-card.mission {
  background-color: #2EE198; /* Mission default */
}

.story-inner {
  position: relative;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.story-container {
  display: flex;
  justify-content: space-around;
  gap: 60px;
}
.story-heading {
  margin: 0;
  font-size: 35px;
  font-weight: bold;
  color: white;
  position: absolute;
  bottom: 20px;
  left: 20px;
  transition: all 0.4s ease;
}

.story-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
  position: absolute;
  width: 400px;
  top: 20px;
  left: 20px;
  right: 20px;
  color: #000;
  font-size: 19px;
  line-height: 1.5;
}

.story-card:hover .story-heading {
  bottom: auto;
  top: 20px;
  color: #000;
}

.story-card:hover .story-content {
  opacity: 1;
  transform: translateY(60px);
}

/* Story Section - Responsive */
@media (max-width: 1024px) {
  .story-section {
    padding: 2rem 1rem;
  }
  
  .story-container {
    gap: 40px;
  }
  
  .story-card {
    width: 350px;
    height: 250px;
  }
  
  .story-heading {
    font-size: 32px;
  }
  
  .story-content {
    width: 290px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .story-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .story-card {
    width: 100%;
    max-width: 380px;
    height: 250px;
  }
  
  .story-heading {
    font-size: 28px;
  }
  
  .story-content {
    width: calc(100% - 40px);
    font-size: 17px;
  }
  
  .story-text {
    font-size: 18px;
    padding: 1rem;
  }
  
  .story-text p {
    margin-bottom: 1rem;
  }
  
  .story-text .story-full-text {
    display: none;
  }
  
  .story-text .story-short-text {
    display: block;
  }
  
  .story-text.expanded .story-full-text {
    display: block;
  }
  
  .story-text.expanded .story-short-text {
    display: none;
  }
  
  .read-more-btn {
    display: block;
    background: linear-gradient(135deg, #ce82ff, #a38be9);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
        align-items: center;
    display: inline;
  }
  
  .read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(206, 130, 255, 0.3);
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  
  .story-card {
    height: 220px;
  }
  
  .story-heading {
    font-size: 24px;
  }
  
  .story-content {
    font-size: 16px;
    line-height: 1.4;
  }
  
  .story-text {
    font-size: 16px;
  }
}

/* Leadership Section */
/* Leadership Section */
.leadership-section {
  padding: 5rem 2rem;
  background: white;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.leader-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  height: auto;
  width: 300px;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.founders {
  text-decoration: none;
}

.leader-image {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
}

.leader-info {
  padding: 1.5rem;
  text-align: center;
}

.leader-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.leader-role {
  color: #7f8c8d;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .leadership-grid {
      display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .leadership-section {
    padding: 3rem 1rem;
  }
}

/* Backed By Section */
.backed-section {
  padding: 3rem 0;
  background: #f8f9fa;
  text-align: center;
}

.logo-globe-wrapper {
  width: 100%;
  background-color: #f8f9fa;
  padding: 2.25rem 0;
}

.logo-globe-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.logo-globe-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo-globe-slide img {
  display: block;
  filter: brightness(0);
  transition: all 0.3s ease;
}

.logo-globe-slide img:hover {
  filter: brightness(0.3);
  transform: scale(1.05);
}

.worldclass1 {
  width: 151px;
  height: 51px;
  object-fit: contain;
}

.worldclass2 {
  width: 200px;
  height: 54px;
  object-fit: contain;
}

.worldclass3 {
  width: 171px;
  height: 51px;
  object-fit: contain;
}

/* Backed By Section - Responsive */
@media (max-width: 768px) {
  .backed-section {
    padding: 2rem 0;
  }

  .backed-section p {
    font-size: 11px;
    padding: 16px;
  }
  
  .logo-globe-wrapper {
    padding: 1.5rem 0;
  }
  
  .logo-globe-track {
    gap: 1.5rem;
  }
  
  .logo-globe-slide {
    gap: 1.5rem;
    flex-direction: column;
  }
  
  .worldclass1 {
    width: 120px;
    height: 40px;
  }
  
  .worldclass2 {
    width: 170px;
    height: 105px;
  }
  
  .worldclass3 {
    width: 130px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .logo-globe-track {
    gap: 1rem;
  }
  
  .logo-globe-slide {
    gap: 1rem;
  }
  
  .worldclass1 {
    width: 100px;
    height: 34px;
  }
  
  .worldclass3 {
    width: 110px;
    height: 34px;
  }
}

/* Angel Investors Section */
.angel-investors {
  margin-top: 3rem;
  text-align: center;
  width: 100%;
}

.angel-heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
}

.angel-logos {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.angel-logos img {
  width: 100px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.angel-logos img:hover {
  filter: grayscale(0.3);
  transform: scale(1.05);
}

.and-more {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #555;
}

/* Responsive: Angel Logos */
@media (max-width: 768px) {
  .angel-investors {
    margin-top: 1rem;
  }

  .angel-heading {
    font-size: 1.2rem;
  }

  .angel-logos {
    justify-content: center;
    gap: 1rem;
  }

  .angel-logos img {
    width: 80px;
  }

  .and-more {
    text-align: center;
    font-size: 0.95rem;
  }
}

/* Join Team Section */
.join-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ff7b54, #f96c85);
  color: white;
  text-align: center;
}

.join-content {
  max-width: 600px;
  margin: 0 auto;
}

.join-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.join-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-btn {
  background: white;
  color: #000000;
  font-size: 1rem;
  height: 20px;
  width: 30px;
  text-decoration: none;
  padding: 15px;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.4);
}

.cta-btn:hover {
  background: rgb(0, 0, 0);
  color: #ffffff;
  transition: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.team-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.team-photo {
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  width: 325px;
}

/* Join Team Section - Responsive */
@media (max-width: 1024px) {
  .join-section {
    padding: 4rem 1rem;
  }
  
  .team-photos {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .team-photo {
    width: 100%;
    max-width: 325px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .join-section {
    padding: 3rem 1rem;
  }
  
  .join-section h2 {
    font-size: 2rem;
  }
  
  .join-section p {
    font-size: 1.1rem;
  }
  
  .cta-btn {
    font-size: 0.9rem;
    padding: 12px 20px;
    width: auto;
    height: auto;
    display: inline-block;
  }
  
  .team-photos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .team-photo {
    width: 100%;
    max-width: 300px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .join-section h2 {
    font-size: 1.8rem;
  }
  
  .join-section p {
    font-size: 1rem;
  }
  
  .team-photo {
    height: 150px;
  }
}

/* Values Section */
.values-section {
  padding: 5rem 2rem;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f96c85, #faaa5d);
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.value-card:hover::before {
  opacity: 0.2;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #f96c85, #faaa5d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

/* Values Section - Responsive */
@media (max-width: 1024px) {
  .values-section {
    padding: 4rem 1rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .value-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .values-section {
    padding: 3rem 1rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-card {
    padding: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .value-icon {
    font-size: 2.5rem;
  }
  
  .value-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .value-card {
    padding: 1rem;
  }
  
  .value-icon {
    font-size: 2rem;
  }
  
  .value-card h3 {
    font-size: 1.2rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Global Responsive Design */
@media (max-width: 1200px) {
  body {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  
  * {
    box-sizing: border-box;
  }
}