

*{
    margin:0px;
    padding:0px;
}

body{
    font-family:"Poppins", sans-serif;
}

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  /* background: transparent; */
  background:white;
  z-index: 30;
  transition: all 0.3s ease;
}
.nav-container {
  display: flex;
  gap: 20px;
  margin-left: 50px;
  margin-right: 50px;
  justify-content: space-between;
  align-items: center;
}
.nav-logo img {
  height: 50px;
  width: 150px;
}
.nav-logo .nav-title {
  font-size: 26px;
}
.nav-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-menu {
  display: flex;
  gap: 34px;
  list-style: none;
}
.nav-menu-item {
  position: relative;
}
#appPicker {
  position: fixed;
  top: 10%;
  right: 10%;
  background: white;
  border: 1px solid #ccc;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
#appPicker h3 {
  margin: 20px 0;
}
#appPicker ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
#appPicker ul li {
  list-style: none;
}
#appPicker ul li a {
  text-decoration: none;
}
#closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}
.nav-menu-item i {
  margin-left: 10px;
}
.nav-menu-item:hover i {
  rotate: 360deg;
}
.nav-menu-link {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: black;
}
.nav-menu-link:hover {
  color: #ff6666;
}
.nav-menu-link:hover i {
  rotate: 180deg;
  transition-duration: 0.5s;
}
.nav-desktop-btn-wrapper {
  opacity: 0;
  animation: fade-in 1s ease forwards 2s;
  display: inline-block;
}
.nav-desktop-btn {
  padding: 14px 16px;
  background: transparent;
  border: 2px solid #ff6666;
  border-radius: 10px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.nav-desktop-btn:hover {
  transform: scale(0.9);
}
.nav-desktop-btn i {
  transform: rotate(0deg);
  animation: toggle 1s ease forwards infinite;
}
@keyframes toggle {
  100% {
    transform: rotate(40deg);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-submenu {
  display: block;
  position: absolute;
  top: 10px;
  left: -60px;
  padding: 40px 0;
  list-style: none;
  white-space: nowrap;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.nav-submenu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: white;
  padding: 10px 20px;
  border: 1px solid #ccc;
  width: 500px;
  position: absolute;
  left: -120px;
}
.nav-submenu ul h3{
  margin:0px;
  padding:0px;
}
.nav-submenu ul p {
  white-space: wrap;
    margin:0px;
  padding:0px;

}
.all-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.all-links div:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.all-links div:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
.all-links div:nth-child(n + 3) {
  grid-column: 2;
  grid-row: auto;
}
.all-links li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.all-links li div {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  color: #fff;
  background-color: purple;
  display: flex;
  justify-content: center;
  align-items: center;
}
.all-links img {
  height: 60px;
  width: 60px;
  position: absolute;
  bottom: 50px;
  right: 30px;
}
.nav-submenu-link {
  text-decoration: none;
  color: black;
  display: block;
}
.nav-menu-item:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
.nav-header.scrolled {
  background: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.nav-submenu-link:hover {
  color: #ff6666;
  width: 100%;
}
.nav-mobile-menu {
  display: none;
}

@media screen and (max-width: 1080px) {
  .nav-container {
    margin-left: 0px;
    /* margin-right: 0px; */
  }
  .nav-mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
  }

  .nav-mobile-menu.open {
    left: 0;
  }
  .mbl-nav-submenu {
    list-style-type: none;
  }
  .mbl-nav-submenu .mbl-nav-submenu-link {
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
    color: #c266ff;
  }
  .mbl-nav-submenu .mbl-nav-submenu-link:hover {
    color: #8a00e6;
  }
  .nav-menu-close {
    font-size: 24px;
    cursor: pointer;
    text-align: right;
  }
  .nav-mobile-menu-items {
    list-style: none;
    margin-top: 20px;
  }
  .nav-mobile-menu-item {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
  }
  .nav-mobile-menu-item i {
    margin-left: 10px;
    font-size: 12px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }
  .nav-mobile-menu-item:hover i.open {
    transform: rotate(180deg);
  }

  .nav-mobile-menu-item .mbl-nav-submenu {
    display: none;
    padding: 10px 0;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    height: auto;
  }

  .nav-mobile-menu-item .mbl-nav-submenu.open {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .nav-mobile-btn {
    padding: 12px 0;
    color: white;
    background: linear-gradient(to right, #f06, #f35, #f39);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    margin: 20px auto;
    display: flex;
    gap: 20px;
    padding: 14px 30px;
    position: absolute;
    bottom: 30px;
    left: 10%;
  }

  .nav-menu-icon {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }

  .nav-desktop {
    display: none;
  }

  .nav-desktop-btn-wrapper {
    display: none;
  }
}


.hero-section {
  position: relative;
  min-height: 100vh;
  font-family: Poppins, sans-serif;
  background: linear-gradient(to bottom right, #0f172a, #4c1d95, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url('./assets/meetings.png');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  padding: 1rem;
}

.hero-heading {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.hero-highlight {
  background: linear-gradient(90deg, #10b981, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.hero-highlight-secondary {
  color: #10b981;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.hero-btn-primary {
  background: linear-gradient(to right, #10b981, #06b6d4);
  color: white;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary:hover {
  transform: translateY(-2px);
}

/* Bubbles */
.hero-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: hero-float 8s infinite alternate;
  z-index: 0;
}

.hero-bubble1 {
  width: 120px;
  height: 120px;
  background: #9333ea;
  top: 10%;
  left: 5%;
}

.hero-bubble2 {
  width: 80px;
  height: 80px;
  background: #10b981;
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.hero-bubble3 {
  width: 100px;
  height: 100px;
  background: #3b82f6;
  bottom: 15%;
  left: 10%;
  animation-delay: 2s;
}

.hero-bubble4 {
  width: 70px;
  height: 70px;
  background: #06b6d4;
  bottom: 20%;
  right: 20%;
  animation-delay: 3s;
}

.hero-bubble5 {
  width: 90px;
  height: 90px;
  background: #6366f1;
  top: 30%;
  left: 40%;
  animation-delay: 4s;
}

.hero-bubble6 {
  width: 60px;
  height: 60px;
  background: #f43f5e;
  bottom: 25%;
  left: 50%;
  animation-delay: 5s;
}

@keyframes hero-float {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-20px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-btn {
    width: 100%;
  }
}



.company-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.company-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  justify-content: center;
}

.company-content {
  flex: 1 1 450px;
}

.company-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #111827;
}

.company-highlight {
  background: linear-gradient(90deg, #6366f1, #9333ea);
  -webkit-background-clip: text;
  color: transparent;
}

.company-subtitle {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 30px;
  max-width: 500px;
}

.company-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.company-stat-card {
  background: linear-gradient(135deg, #eef2ff, #f3e8ff);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.company-stat-icon {
  font-size: 1.8rem;
  color: #6366f1;
}

.company-stat-title {
  margin: 0;
  font-size: 1.1rem;
  color: #111827;
}

.company-stat-desc {
  margin: 4px 0 0 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.company-image-container {
  position: relative;
  flex: 1 1 400px;
  max-width: 500px;
}

.company-image-container img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.company-founded {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: white;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.company-founded strong {
  font-size: 1.2rem;
  color: #111827;
}

.company-founded p {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}

@media (max-width: 768px) {
  .company-container {
    flex-direction: column;
    text-align: center;
  }
  .company-title {
    font-size:1.6rem;
  }

  .company-stats-grid {
    grid-template-columns: 1fr;
  }

  .company-stat-card {
    justify-content: center;
    text-align: left;
  }
  .company-image-container{
    flex: 0;
  }
}


.employee-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f9fafb, #eef2ff);
  position: relative;
  overflow: hidden;
}

.employee-floating-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
  animation: float 8s infinite alternate;
}

.employee-bubble1 {
  width: 150px;
  height: 150px;
  background: #c4b5fd;
  top: 50px;
  left: 5%;
  animation-delay: 0s;
}

.employee-bubble2 {
  width: 100px;
  height: 100px;
  background: #a5b4fc;
  bottom: 50px;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-20px);
  }
}

.employee-label {
  color: #6366f1;
  font-weight: 600;
  margin-bottom: 8px;
}

.employee-title {
  font-size: 2.2rem;
  margin: 0;
  color: #111827;
}

.employee-highlight {
  background: linear-gradient(90deg, #6366f1, #9333ea);
  -webkit-background-clip: text;
  color: transparent;
}

.employee-subtitle {
  max-width: 700px;
  margin: 15px auto 40px auto;
  color: #4b5563;
  font-size: 1rem;
}

.employee-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  z-index: 1;
  position: relative;
}

.employee-stat-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.employee-stat-card:hover {
  transform: translateY(-5px);
}

.employee-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.employee-stat-title {
  margin: 0;
  font-weight: bold;
  color: #111827;
}

.employee-stat-desc {
  font-size: 0.9rem;
  color: #4b5563;
  margin-top: 5px;
}

.employee-image-card {
  position: relative;
  max-width: 800px;
  max-height:500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.employee-image-card img {
  width: 100%;
  display: block;
}

.employee-image-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  text-align: left;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 15px;
  border-radius: 10px;
}

.employee-image-text strong {
  font-size: 1.2rem;
  display: block;
}

.employee-image-text p {
  margin: 4px 0 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .employee-title {
    font-size: 1.8rem;
  }

  .employee-stats-grid {
    grid-template-columns: 1fr;
  }
}



.founder-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #2c1250, #441c78, #6d2ba3);
  color: #fff;
}

.founder-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.founder-highlight {
  color: #7c9eff;
}

.founder-subtitle {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1rem;
  color: #ddd;
}

.founder-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.founder-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  width: 300px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-10px);
}

.founder-img-container {
  background: linear-gradient(135deg, #4a1e84, #693bbd);
  padding: 8px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 15px;
}

.founder-img-container img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
}

.founder-name {
  font-size: 1.4rem;
  margin: 10px 0 5px;
  color: #fff;
}

.founder-role {
  color: #7c9eff;
  margin-bottom: 15px;
}

.founder-description {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 20px;
}

.founder-socials a {
  margin: 0 8px;
  display: inline-block;
}

.founder-socials img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.founder-socials img:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .founder-cards-container {
    flex-direction: column;
    align-items: center;
  }
}






.advisor-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9ff, #ffffff);
}

.advisor-label {
  color: #1d4ed8;
  font-weight: 600;
  margin-bottom: 10px;
}

.advisor-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.advisor-highlight {
  background: linear-gradient(90deg, #6366f1, #9333ea);
  -webkit-background-clip: text;
  color: transparent;
}

.advisor-subtitle {
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555;
  font-size: 1rem;
}

.advisor-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.advisor-card {
  background: linear-gradient(135deg, #e0e7ff, #f5f3ff);
  border-radius: 20px;
  padding: 25px;
  width: 340px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.advisor-card:hover {
  transform: translateY(-8px);
}

.advisor-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.advisor-header img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  margin-right: 15px;
  object-fit: cover;
}

.advisor-name {
  font-size: 1.3rem;
  margin: 0;
  color: #111;
}

.advisor-role {
  color: #2563eb;
  margin: 2px 0;
  font-size: 0.95rem;
}

.advisor-subrole {
  color: #666;
  font-size: 0.85rem;
}

.advisor-socials {
  margin: 10px 0;
}

.advisor-socials a {
  margin-right: 10px;
  display: inline-block;
}

.advisor-socials img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.advisor-socials img:hover {
  transform: scale(1.2);
}

.advisor-description {
  font-size: 0.95rem;
  color: #444;
  margin: 15px 0;
}

.advisor-achievements-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.advisor-tags span {
  display: inline-block;
  background: linear-gradient(90deg, #c7d2fe, #e9d5ff);
  color: #3730a3;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  margin: 4px 4px 0 0;
}

@media (max-width: 768px) {
  .advisor-cards-container {
    flex-direction: column;
    align-items: center;
  }
  .advisor-card{
    width:300px;
  }
}




/* footer  */

.footer {
  background: #002147;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.footer h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-in-out;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s ease-in-out, color 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #f8c102;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.footer-links div {
  text-align: left;
}

.footer-links h2 {
  font-size: 1rem;
  font-weight: 300;
  text-decoration: underline;
  margin-bottom: 10px;
}

.footer-links a {
  color: #f8c102;
  text-decoration: none;
  display: block;
  margin: 5px 0;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
  color: white;
}

.footer-banner {
  background: #f8c102;
  color: #002147;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 30px;
  border-radius: 10px;
  display: inline-block;
  animation: fadeInDown 1s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .footer h2 {
    font-size: 1.5rem;
  }

  .social-icons a {
    font-size: 1.2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links div {
    text-align: center;
  }

  .footer-banner {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 15px;
  }

  .footer h2 {
    font-size: 1.3rem;
  }

  .social-icons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-links h2 {
    font-size: 1rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-banner {
    padding: 10px;
    font-size: 0.9rem;
  }
}