body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background: linear-gradient(45deg, #f8fafd, #f8fafd);
  color: #1f132f;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.main-header {
  background: #fff;
  color: #101828;
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
  width: auto;
  max-width: 200px;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}
.kasjdkjasdk {
  display: flex;
  max-width: 600px;
  flex-direction: column;
  gap:20px;
  margin: 0 auto;
}
nav {
  margin-left: auto;
}
nav a {
  color: #101828;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
nav a:hover {
  color: #6F00FF;
}
.hero {
  background:linear-gradient(360deg, #efe2ff 0%, #ffffff 50%);
  color: #101828;
  padding: 20px 0 60px 0;
  text-align: center;
  z-index: 666;
  box-shadow: 0px 51px 23px -40px #0000005e;
  position: relative;
}
.hero .container {
  z-index: 9999;
  position: relative;
  padding-top: 140px;
  padding-bottom: 20px;
}
.hero-icon {
  font-size: 3rem;
  color: #6F00FF;
  margin-bottom: 20px;
  display: block;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.hero p {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 30px;
}
.cta-btn {
  background: #6F00FF;
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
  max-width: 220px;
  margin: 0 auto;
}
.cta-btn:hover {
  background: #6F00FF;
  color: #fff;
}
.services {
  padding: 60px 0 40px 0;
  background: #fff;
}
.services h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 700;
}
.service-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.service-card {
  background: #f8fafd;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(16,24,40,0.06);
  padding: 32px 28px;
  flex: 1 1 260px;
  max-width: 340px;
  min-width: 240px;
  text-align: center;
  border: 1px solid #000;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-icon {
  font-size: 2.5rem;
  color: #6F00FF;
  margin-bottom: 20px;
  display: block;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 24px rgba(111,0,255,0.12);
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #6F00FF;
  font-weight: 700;
}
.team {
  padding: 60px 0px 80px 0px;
}
.team h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 700;
}
.team-members {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.team-member {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(16,24,40,0.06);
  padding: 28px 20px 20px 20px;
  flex: 1 1 220px;
  max-width: 260px;
  min-width: 180px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-member:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 24px rgba(111,0,255,0.12);
}
.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /*box-shadow: 0 4px 12px rgba(111,0,255,0.15);*/
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-member h4 {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
  font-weight: 700;
}
.team-member p {
  margin: 0;
  color: #6b7280;
  font-weight: 600;
}
.contact {
  background: #fff;
  padding: 60px 0 40px 0;
}
.contact h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: 700;
}
.contact-form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
}
.contact-form button {
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #101828;
}
.main-footer {
  color: #fff;
  text-align: center;
  padding: 58px 0;
  font-size: 1rem;
  margin-top: 0px;
  background-color: #000;
  background-image: url(../assets/section1-bg.jpg);
  background-position: bottom center;
  background-attachment: fixed;
}
.assets-section {
  background-color: #000;
  background-image: url(../assets/section1-bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 60px 0 70px 0;
}
.assets-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color:#FFF;
}
.assets-subtitle {
  text-align: center;
  color: #dbccff;
  font-size: 1.15rem;
  margin-bottom: 40px;
}
.assets-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.assets-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 16px rgba(16,24,40,0.07);
  padding: 38px 32px 28px 32px;
  flex: 1 1 340px;
  max-width: 480px;
  min-width: 260px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.assets-card:hover {
  box-shadow: 0 8px 24px rgba(111,0,255,0.12);
  transform: translateY(-6px) scale(1.02);
}
.assets-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 24px 0 10px 0;
  color: #101828;
}
.assets-card p {
  color: #1a2233;
  font-size: 1.05rem;
  margin: 0;
}
.assets-img {
  width: 100%;
  height: 190px;
  background: transparent;
  border-radius: 18px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.assets-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.process-section {
  background: #fff;
  padding: 48px 0 32px 0;
}
.process-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 20px auto;
}
.process-block {
  max-width: 340px;
  min-width: 220px;
  flex: 1 1 260px;
  text-align: center;
  background: #FFF;
  padding: 20px;
  border-radius: 40px;
  align-items: center;
  justify-content: center;
}
.process-icon {
  font-size: 2rem;
  color: #6F00FF;
  margin-bottom: 15px;
  display: block;
}
.process-block h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #101828;
}
.process-block p {
  color: #6b7280;
  font-size:14px;
  margin: 0 auto;
  line-height: 1.5;
}
.process-block i {
  margin-bottom: 0px;
}
.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-arrow i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #6F00FF;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(111,0,255,0.13);
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  z-index: 999999;
}
.modal-overlay.show {
  display: flex;
}
.modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  padding: 32px;
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.modal-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: #101828;
}
.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #6b7280;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.close-btn:hover {
  background: #f3f4f6;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}
.required {
  color: #22c55e;
  font-weight: 700;
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6F00FF;
  box-shadow: 0 0 0 3px rgba(111, 0, 255, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.recaptcha-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.recaptcha-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #374151;
}
.recaptcha-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
}
.recaptcha-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.recaptcha-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(45deg, #4285f4, #34a853);
  border-radius: 50%;
  position: relative;
}
.recaptcha-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}
.recaptcha-text {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  color: #6b7280;
}
.recaptcha-text span {
  font-weight: 600;
  color: #374151;
}
.submit-btn {
  background: #6F00FF;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.submit-btn:hover {
  background: #5a00d9;
}
/* Rocket Game Animation */
.rocket-game {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 130px;
  background: transparent;
  z-index: 9999;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
          to right,
          rgba(0, 0, 0, 0) 0%,       /* fully transparent at start */
          rgba(0, 0, 0, 1) 20%,      /* fully visible after 20% */
          rgba(0, 0, 0, 1) 80%,      /* fully visible until 80% */
          rgba(0, 0, 0, 0) 100%      /* fade out to transparent */
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;

  /* Standard property for other browsers */
  mask-image: linear-gradient(
          to right,
          rgba(0, 0, 0, 0) 0%,
          rgba(0, 0, 0, 1) 20%,
          rgba(0, 0, 0, 1) 80%,
          rgba(0, 0, 0, 0) 100%
  );
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

.game-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.rocket {
  position: absolute;
  left: calc(50% - 40px);
  bottom: 30px;
  width: 60px;
  height: 60px;
  z-index: 10;
  animation: rocketFloat 3s ease-in-out infinite;
}

.rocket img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes rocketFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.obstacles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.obstacle {
  position: absolute;
  bottom: 30px;
  width: 100%;
  height: 40px;
  background: #f8fafd;
  border-radius: 0px;
  transform: skew(-10deg);
}

.obstacle:nth-child(1) {
  left: 100%;
  animation: moveObstacle1 4s infinite linear;
  bottom: 60px;
  height: 35px;
}

.obstacle:nth-child(2) {
  left: 100%;
  animation: moveObstacle2 6s infinite linear;
  animation-delay: 2s;
  bottom: 20px;
  height: 50px;
}

.obstacle:nth-child(3) {
  left: 100%;
  animation: moveObstacle3 5s infinite linear;
  animation-delay: 4s;
  bottom: 80px;
  height: 25px;
}

@keyframes moveObstacle1 {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

@keyframes moveObstacle2 {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

@keyframes moveObstacle3 {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

/* Partners Section */
.partners-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.partners-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f132f;
}

.partners-subtitle {
  font-size: 1.1rem;
  color: #6F00FF;
  font-weight: 600;
  margin-bottom: 50px;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #f8fafd;
  padding: 30px 0;
  border-radius: 15px;
}

.partners-track {
  display: flex;
  align-items: center;
  animation: slidePartners 30s linear infinite;
  width: max-content;
}

.partner-logo {
  flex-shrink: 0;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.1);
}

.partner-logo img {
  max-height: 60px;
  max-width: 120px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes slidePartners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .rocket-game {
    height: 140px;
  }
  
  .rocket {
    width: 45px;
    height: 55px;
    left: calc(50% - 22px);
  }
  
  .obstacle {
    width: 100%;
    height: 25px;
  }
  .process-arrow i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #6F00FF;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(111, 0, 255, 0.13);
    transform: rotate(90deg);
  }
}
@media (max-width: 900px) {
  .service-cards, .team-members {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .assets-cards {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .assets-card {
    max-width: 98%;
  }
}
@media (max-width: 600px) {
  .container {
    width: 98%;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  .services h2, .team h2, .contact h2 {
    font-size: 1.4rem;
  }
  .main-header {
    padding: 10px 0px;
    gap: 10px;
  }
  nav {
    border-top: 1px solid #cccccc6e;
    margin-top: 10px;
    padding-top: 10px;
    padding-left: 10px;
    width: 90%;
  }
  .logo {
    margin-left: 10px;
  }
  .main-header .container {
    margin: 0px;
  }
  .assets-cards{
    padding: 0px 10px;
  }
  .process-arrow {
    margin: 0;
  }
}
@media (max-width: 1100px) {
  .process-row {
    flex-direction: column;
    gap: 18px;
  }
  .process-arrow {
    margin: 0 0 10px 0;
  }
}
@media (max-width: 700px) {
  .main-header .container {
    align-items: flex-start;
  }
  nav {
    margin-left: 0;
    width: 100%;
  }
  nav ul {
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
  }
} 

/* Responsive design for partners section */
@media (max-width: 768px) {
  .partners-section h2 {
    font-size: 2rem;
  }
  .partners-subtitle {
    font-size: 1rem;
  }
  
  .partner-logo {
    margin: 0 20px;
  }
  
  .partner-logo img {
    max-height: 40px;
    max-width: 80px;
  }
}

@media (max-width: 480px) {
  .partners-section {
    padding: 60px 0;
  }
  
  .partners-section h2 {
    font-size: 1.8rem;
  }
  
  .partner-logo {
    margin: 0 15px;
  }
  
  .partner-logo img {
    max-height: 35px;
    max-width: 70px;
  }
}

@media(min-width: 1124px){
  .hero p {
    font-size: 50px;
    line-height: 55px;
    margin-top: 20px;
  }
  .kasjdkjasdk {
    max-width: 710px;
  }
  .hero .cta-btn {
    max-width: 220px;
    margin: 0 auto;
  }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1000;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #1f132f;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 999;
  padding-top: 80px;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-nav.active {
  transform: translateX(0);
  margin-top: 0px;
  padding: 0px;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 15px;
}

.mobile-nav li {
  margin: 0;
}

.mobile-nav a {
  color: #1f132f;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.5rem;
  transition: color 0.2s;
  display: block;
  padding: 15px 0;
}

.mobile-nav a:hover {
  color: #6F00FF;
}

/* Desktop nav styles */
.desktop-nav {
  display: block;
}

.desktop-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  color: #101828;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: #6F00FF;
}

/* Mobile responsive breakpoints */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .main-header .container {
    justify-content: space-between;
  }
}

@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
  
  .desktop-nav {
    display: block;
  }
  
  .mobile-nav {
    display: none;
  }
}