body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

nav {
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 123, 255, 0.9);
    border-bottom: 2px solid black;
    position: relative;
    height: 60px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
  }

  .logo img {
    width: 70px;
    height: auto;
    transition: transform 0.3s ease;
  }

  .logo img:hover {
    transform: scale(1.05);
  }

  nav ul {
    display: flex;
    gap: 35px;
    align-items: center;
    transition: max-height 0.4s ease-in-out;
  }

  nav ul li {
    list-style: none;
    position: relative;
  }

  nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
  }

  nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #fff;
    bottom: -4px;
    left: 0;
    transition: width 0.3s ease;
  }

  nav ul li a:hover::after {
    width: 100%;
  }

  nav ul li a:hover {
    color: #ffeb3b;
  }

  /* Dropdown styles */
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    background: rgba(0, 66, 116, 0.95);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    z-index: 10;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown-content li a {
    padding: 12px 16px;
    display: block;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .dropdown-content li a:hover {
    background-color: #0170B9;
  }

  .menu-icon {
    display: none;
    cursor: pointer;
  }

  .menu-icon i {
    color: #fff;
    font-size: 30px;
  }

  /* Responsive */
  @media (max-width: 480px) {
    nav ul {
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      flex-direction: column;
      background: rgba(0, 66, 116, 0.95);
      gap: 0;
      max-height: 0;
      overflow: hidden;
    }

    nav ul li {
      padding: 15px 0;
    }

    .menu-icon {
      display: block;
    }

    .dropdown-content {
      position: static;
      background: rgba(0, 66, 116, 0.95);
      box-shadow: none;
      opacity: 1 !important;
      transform: none !important;
      transition: none;
    }

    .dropdown.active .dropdown-content {
      display: block;
    }
  }

  /* animation section */


  /* about us */

  .about-us-section {
  padding: 60px 20px;
  background: #f7fafd;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-us-content {
  max-width: 900px;
  background: #fff;
  border-left: 6px solid #00bcd4;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.highlight {
  color: #00bcd4;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

/* Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-us-content {
    padding: 30px 20px;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-text {
    font-size: 1rem;
  }
}


.about-us, .mission-vision, .features, .counters {
  padding: 3rem 2rem;
  text-align: center;
}



.mission-vision {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background: #fff;
}

.mission-vision .box {
  width: 45%;
  margin: 1rem 0;
  padding: 1rem;
  background: #e5e7eb;
  border-radius: 8px;
}

/* new mission section */
.mission-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  animation: fadeSlideUp 1s ease-in-out;
}

.mission-box {
  background-color: #007bff;
  color: white;
  padding: 2rem 2.5rem;
  border-radius: 10px;
  max-width: 960px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.mission-box h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mission-intro {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.mission-points {
  list-style: none;
  padding-left: 0;
}

.mission-points li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.mission-points i {
  color: #00ffae;
  font-size: 1.2rem;
}

/* Animation */
@keyframes fadeSlideUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .mission-box {
    padding: 1.5rem;
  }

  .mission-box h2 {
    font-size: 1.5rem;
  }

  .mission-points li {
    font-size: 0.95rem;
  }
}


.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.features .feature {
  background: #d1fae5;
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
}

.counters {
  background: #111827;
  color: white;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.counter-box {
  margin: 1rem;
  text-align: center;
}

.counter {
  font-size: 2.5rem;
  font-weight: bold;
  color: #10b981;
}

/* impact section */

.impact-ecosystem {
  padding: 3rem 1rem;
  text-align: center;
  background: #f9fafb;
}

.impact-ecosystem h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #111827;
}

.impact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.impact-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-5px);
}

.impact-card i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 0.5rem;
}

.impact-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
  color: #007bff;
}

.impact-card p {
  font-size: 1rem;
  color: #444;
}

.ecosystem-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.partner {
  background: #e0f2fe;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #0c4a6e;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
  .impact-card, .partner {
    width: 90%;
  }
}

/* impact-img-section */


.impact-section {
  padding: 50px 20px;
  text-align: center;
  font-family: sans-serif;
  background: #fff;
}

.impact-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.highlight {
  color: #6bcf2f;
}

.impact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.impact-item {
  max-width: 200px;
  text-align: center;
}

.label {
  font-size: 0.85rem;
  color: #333;
  margin-top: 15px;
}

/* Hexagon Shape */
.hex-wrap {
  width: 160px;
  aspect-ratio: 1;
  clip-path: polygon(
    50% 0%,
    93% 25%,
    93% 75%,
    50% 100%,
    7% 75%,
    7% 25%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ccc;
  padding: 5px;
}

.hex-inner {
  width: 100%;
  height: 100%;
  background: white;
  clip-path: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.value {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
}

.unit {
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  margin-top: 5px;
}

.icon {
  margin-top: 8px;
  font-size: 1.2rem;
}

/* Gradients */
.green {
  background: linear-gradient(135deg, #a8eb12, #6bcf2f);
}
.teal {
  background: linear-gradient(135deg, #00c9a7, #00d4ff);
}
.sky {
  background: linear-gradient(135deg, #00b4db, #0083b0);
}
.blue {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
}
.aqua {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
}

/* Responsive */
@media (max-width: 768px) {
  .impact-grid {
    gap: 20px;
  }
  .impact-item {
    max-width: 45%;
  }
}
@media (max-width: 480px) {
  .impact-item {
    max-width: 100%;
  }
}


/* transaction section */

/* Section Styling */
.traction-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.traction-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.highlight-green {
  color: #7cc243;
}

/* Grid / Layout */
.traction-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

/* Hexagon Card */
.traction-card {
  width: 140px;
  aspect-ratio: 1;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.traction-card:hover {
  transform: translateY(-5px);
}

/* Hex Gradient Colors */
.hex.blue {
  background: linear-gradient(135deg, #00b4ff, #0072ff);
}

.hex.green {
  background: linear-gradient(135deg, #8cd400, #46c063);
}

.hex.orange {
  background: linear-gradient(135deg, #ffb347, #ffcc33);
}

/* Text Inside Hex */
.traction-content h3 {
  font-size: 1.4rem;
  margin: 0;
  font-weight: 700;
}

.traction-content p {
  margin-top: 5px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Arrow Styles */
.traction-arrow {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid;
  transform: rotate(0deg);
}

.green-arrow {
  border-left-color: #8cd400;
}

.blue-arrow {
  border-left-color: #00b4ff;
}

.orange-arrow {
  border-left-color: #ffb347;
}

/* Awards / Logos Section */
.awards-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.awards-logos img {
  max-height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.awards-logos img:hover {
  transform: scale(1.05);
}

.logo {
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Individual logo sizes */
.faad-logo {
  height: 50px;
  width: auto;
}

.unicorns-logo {
  height: 200px;
  width: auto;
}

.venture-logo {
  height: 35px;
  width: auto;
}

.catalysts-logo {
  height: 200px;
  width: auto;
}

.chakra-logo {
  height: 200px;
  width: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .traction-cards {
    flex-direction: column;
  }

  .traction-arrow {
    display: none;
  }

  .traction-card {
    width: 60%;
  }
}

/* team section */
.team-section {
      padding: 60px 20px;
      text-align: center;
    }

    .team-section h2 {
      font-size: 2.8rem;
      margin-bottom: 50px;
      color: #333;
    }

    .team-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .team-card {
  background: #fff;
  width: 250px;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 16px rgba(0,0,0,0.1), 0 30px 50px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  position: relative;
}

    .team-card:hover {
      transform: translateY(-10px);
    }
    
    .member-photo {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      object-fit: cover;
      object-position: top;
      margin-bottom: 15px;
    }


    .team-card h3 {
      margin: 10px 0 5px;
      font-size: 1.4rem;
      color: #222;
    }

    .designation {
      color: #555;
      font-size: 1rem;
      margin-bottom: 5px;
    }

    .experience {
      font-size: 0.9rem;
      color: #888;
      margin-bottom: 15px;
    }

    .previous-companies {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 15px;
    }

    .previous-companies img {
      width: 60px;
      height: 60px;
      object-fit: contain;
      border-radius: 6px;
      background-color: #f0f0f0;
    }

    .linkedin-link img {
      width: 30px;
      height: 30px;
      transition: transform 0.3s ease;
    }

    .linkedin-link:hover img {
      transform: scale(1.1);
    }

    @media (max-width: 600px) {
      .team-card {
        width: 90%;
      }
    }

    .team-row {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }

    @media (max-width: 768px) {
      .team-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }
    }


    /* footer section */
.footer-distributed {
  background-color: #10182F;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  height: 30rem;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 50px 50px 60px 50px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
  display: inline-block;
  vertical-align: top;
}

/* Footer Left */
.footer-distributed .footer-left {
  width: 30%;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-left li {
  list-style: none;
}
.footer-left li a {
  color: white;
  text-decoration: none;
  line-height: 2.5;
}
.footer-left li a:hover {
  color: #0056b3;
}

/* Footer Center */
.footer-distributed .footer-center {
  width: 35%;
}
.footer-distributed .footer-center div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.footer-distributed .footer-center i {
  background-color: #33383b;
  color: #ffffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin-right: 15px;
}
.footer-distributed .footer-center i.fa-envelope {
  font-size: 17px;
  line-height: 38px;
}
.footer-distributed .footer-center p {
  display: inline-block;
  color: #ffffff;
  margin: 0;
}
.footer-distributed .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}
.footer-distributed .footer-center p a {
  color: #ffffff;
  text-decoration: none;
}

/* Footer Right */
.footer-distributed .footer-right {
  width: 30%;
  margin-left: 3%;
}
.footer-distributed .footer-company-about {
  line-height: 20px;
  color: #92999f;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}
.footer-distributed .footer-company-about p {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer-right form {
  display: flex;
  gap: 10px;
  margin-top: 7%;
}
.footer-right input[type="email"] {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #7489C6;
  background: none;
  color: #fff;
  outline: none;
}
.footer-right input[type="email"]::placeholder {
  color: #ccc;
}
.footer-right button {
  background: #0170B9;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-right button:hover {
  background: #cecccc;
  transform: scale(1.1);
}

/* Footer Icons */
.footer-distributed .footer-icons {
  margin-top: 25px;
}
.footer-distributed .footer-icons a {
  display: inline-block;
  text-decoration: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-right: 3px;
  margin-bottom: 5px;
}
.footer-distributed .footer-icons a:hover {
  background-color: #3F71EA;
}

.footer-cin {
  color: #ccc;
  font-size: 14px;
  margin-top: 10px;
}
/* Misc */
.footer-distributed .footer-company-name {
  color: #8f9296;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}
.footer-company-name span a {
  text-decoration: none;
  color: #fff;
}
.footer-company-name span a:hover {
  background-color: #007bff;
  padding: 10px;
}
.footer-links a:hover {
  color: #3F71EA;
}

/* Responsive */
@media (max-width: 480px) {
  .footer-distributed {
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  .footer-left p span {
    margin-left: -87%;
  }
}

    
@keyframes sideTop {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(100px);
        opacity: 1;
    }
}
