/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}
.floting_btn {
    position: fixed;
    /* z-index: 999; */
    top: 50%;
    z-index: 9999;
    right: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.floting_btn a{
    color: #fff;
    /* width: 30px;
    height: 30px; */
    background-color: #fff;
    padding: 4px;
    border-radius: 100px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}
.floting_btn a img{
min-width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
}
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo img {
  height: 50px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #ff2d55;
}
.dropdown {
  position: relative;
}
.submenu {
  display: none;
  position: absolute;
  background: #111;
  top: 100%;
  left: 0;
  /* width: 400px; */
  padding: 15px;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.submenu li a {
  display: block;
  padding: 8px 10px;
  color: #fff;
  border-radius: 6px;
  transition: 0.3s;
}
.submenu li a:hover {
  background: #222;
  color: #ff2d55;
}
.dropdown:hover .submenu {
  display: grid;
}
.nav-buttons {
  display: flex;
  gap: 15px;
}
.trial-btn,
.contact-btn {
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.trial-btn {
  border: 1px solid #fff;
  color: #fff;
}
.trial-btn:hover {
  background: #ff2d55;
  border-color: #ff2d55;
  color: #fff;
}
.contact-btn {
  background: #ff2d55;
  color: #fff;
}
.contact-btn i {
  margin-left: 5px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: #000;
}
.hero-logo {
  /* margin-bottom: 20px; */
  width: 250px;
}
.hero h1 {
  font-size: 46px;
  max-width: 700px;
  margin: auto;
  line-height: 1.3;
}
.hero h1 span {
  color: #ec008c;
}
.cta-btn {
    display: inline-block;
    margin: 25px 0;
    padding: 12px 30px;
    background: linear-gradient(90deg, #ec008c33, #81124f4a);
    border-radius: 30px;
    color: #ec008c;
    font-weight: bold;
    text-decoration: none;
}
.tag-list {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.tag-list span {
  background: #222;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}
.app-links {
  margin-top: 15px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 12px;
  color: #aaa;
  align-items: center;
}

/* Scrolling Mockups */
.scrolling-portfolio {
  background: #000;
  margin: 0;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}
.gradient-window {
  width: 100%;
  max-width:1200px;
  margin: auto;
  height: 670px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 11%, #000 89%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 11%, #000 89%, transparent 100%);
  background: linear-gradient(150deg, #0a0a0a 50%, #e70097 100%);
  border-radius: 30px;
  box-shadow: 0 12px 50px #0008;
}
.columns {
  display: flex;
  justify-content: center;
  gap: 45px;
  position: relative;
  height: 670px;
  align-items: flex-start;
}
.marquee {
  width: 260px;
  height: 670px;
  overflow: hidden;
  position: relative;
}
.marquee-inner {
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: scrollDown 21s linear infinite;
}
.marquee-inner img {
  display: block;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.67);
  background: #111;
}
.marquee:nth-child(2) .marquee-inner {
  animation-duration: 25s;
}
.marquee:nth-child(3) .marquee-inner {
  animation-duration: 29s;
}
@keyframes scrollDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-56%);
  }
}

/* Content Above Portfolio */
.pre-portfolio {
  text-align: center;
  padding: 40px 20px;
  background: #000;
}
.pre-portfolio h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

/* Portfolio */
.portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 40px 8%;
  background: #000;
}
.portfolio-item {
  background: #111;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s;
}
.portfolio-item:hover {
  transform: translateY(-8px);
}
.portfolio-item i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #ff2d55;
}

/* About Us & Stats Section */
.about-us-stats {
  background: #111;
  padding: 50px 8% 40px 8%;
}
.about-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.card-dark {
  background: #191919;
  border-radius: 20px;
  padding: 30px 28px;
  flex: 1 1 360px;
  box-shadow: 0 6px 36px #000a;
  color: #fff;
}
.section-title {
  color: #ec008c;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.about-description p {
  font-size: 1.07rem;
  line-height: 1.75;
}
.about-section {
  /* background: #181818; */
  padding: 60px 8% 60px 8%;
}

.about-container {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-description-card {
  background: #191919;
  border-radius: 21px;
  padding: 32px 36px;
  color: #fff;
  box-shadow: 0 6px 36px #000a;
  flex: 2 1 450px;
  min-width: 330px;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
}

.about-title {
  color: #ec008c;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 21px;
  line-height: 1.09;
}

.about-description-card p {
  font-size: 1.07rem;
  line-height: 1.75;
  color: #fff;
}

/* --- Right stats card --- */
.about-stats-card {
  background: #171717;
  border-radius: 22px;
  box-shadow: 0 4px 24px #000a;
  padding: 38px 32px;
  color: #fff;
  min-width: 300px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}

.stat-item {
  position: relative;
  padding-left: 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-accent {
  position: absolute;
  left: 0;
  top: 4px;
  width: 8px;
  height: 28px;
  border-radius: 5.5px;
  background: linear-gradient(180deg, #3586FF 0%, #FF944D 100%);
}

.stat-label {
  font-size: 1.18em;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 1.5px;
}

.stat-desc {
  font-size: 1em;
  color: #c8c8c8;
  font-weight: 400;
  margin-top: 1px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 28px;
  }
  .about-description-card, .about-stats-card {
    max-width: 100%;
  }
}

/* Technologies Section */
.technologies-leveraged-card {
    background: #0a0909;
    border-radius: 36px;
    padding: 50px;
    margin: 60px auto 60px auto;
    box-shadow: 0 8px 54px #0007;
    max-width: 1650px;
    text-align: center;
}

.tech-main-title {
  color: #efae0b;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.tech-subtitle {
  color: #fff;
  font-size: 1.12rem;
  margin-bottom: 36px;
}

.tech-cards-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  margin-top: 0;
  flex-wrap: wrap;
}

.tech-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 32px #0003;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
  height: 146px;
  justify-content: center;
  transition: transform 0.2s;
  padding: 24px 8px 12px 8px;
}

.tech-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 16px;
}

.tech-card span {
  font-size: 1.08em;
  color: #222;
  font-weight: 500;
}

.tech-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 10px 36px #0005;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .tech-cards-row {
    gap: 18px;
  }
  .technologies-leveraged-card {
    padding: 32px 2%;
  }
}
@media (max-width: 750px) {
  .tech-cards-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .tech-card {
    width: 40vw;
    min-width: 120px;
    max-width: 170px;
    height: 120px;
    padding: 18px 6px 10px 6px;
  }
}

.problem-solution-section {
  padding: 60px 0 52px 0;
}

.problem-solution-container {
  display: flex;
  gap: 32px;
  max-width: 1250px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.problem-solution-card {
  background: #0a0909;
  border-radius: 30px;
  box-shadow: 0 4px 38px #000a;
  padding: 42px 40px 38px 40px;
  color: #fff;
  flex: 2 1 420px;
  min-width: 330px;
  max-width:1200px;
  display: flex;
  flex-direction: column;
}

.problem-solution-title {
  color: #ec008c;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 22px;
  text-align: left;
  letter-spacing: 1px;
}

.problem-heading {
  color: #ec008c;
  font-size: 1.25em;
  font-family: inherit;
  margin-bottom: 6px;
  font-weight: 600;
}

.problem-desc {
  color: #ededed;
  font-size: 1.09em;
  margin-bottom: 16px;
  line-height: 1.8;
}

.solution-heading {
  color: #ec008c;
  font-size: 1.18em;
  margin-top: 18px;
  margin-bottom: 7px;
  font-weight: 600;
}

.solution-desc {
  color: #ededed;
  font-size: 1.09em;
  line-height: 1.8;
}

.problem-solution-image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 0 0 0;
  flex: 1 1 340px;
  min-width: 260px;
  max-width: 380px;
}
.problem-solution-image img {
  width: 100%;
  max-width: 280px;
  border-radius: 32px;
  box-shadow: 0 6px 38px #000b;
}

@media (max-width: 1000px) {
  .problem-solution-container {
    flex-direction: column;
    gap: 36px;
    align-items: stretch;
  }
  .problem-solution-image {
    max-width: 100%;
    justify-content: flex-start;
    padding: 0;
  }
  .problem-solution-image img {
    margin: 0 auto;
    max-width: 350px;
  }
}
.explore-section {
  background: #0a0909;
  padding: 60px 0 60px 0;
  display: flex;
  justify-content: center;
}

.explore-main-container {
  display: flex;
  max-width: 1350px;
  width: 97%;
  gap: 42px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.explore-card {
    background: #21201e;
    border-radius: 28px;
    box-shadow: 0 8px 38px #000b;
    padding: 30px 30px;
    flex: 1 1 650px;
    min-width: 450px;
    color: #fff;
}

.explore-title {
  color: #c97b49;
  font-size: 2.55rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.explore-desc {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
}

.avatar-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
  align-items: center;
}

.avatar-row {
  display: flex;
  gap: 19px;
  justify-content: center;
}

.avatar-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #c97b49;
  object-fit: cover;
  background: #222;
}

.avatar-center {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #c97b49;
  color: #21201e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.18rem;
  border: 3px solid #c97b49;
  margin: 0 5px;
}

/* Screens Section */
.explore-screens {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  min-width: 540px;
  justify-content: center;
}

.explore-screen-img {
  max-width: 235px;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 8px 38px #000b;
  background: #0a0909;
  min-height: 460px;
}

@media (max-width: 1100px) {
  .explore-main-container {
    flex-direction: column;
    gap: 38px;
    align-items: stretch;
  }
  .explore-card {
    min-width: 0;
    max-width: 100%;
  }
  .explore-screens {
    min-width: 0;
    justify-content: flex-start;
    gap: 25px;
  }
  .explore-screen-img {
    max-width: 220px;
  }
}

@media (max-width: 900px) {
  .explore-card { padding: 38px 15px; }
  .explore-section { padding: 30px 16px;}
  .explore-screen-img { max-width: 160px; object-fit: contain;}
}
.features-section {
  background: #181818;
  padding: 50px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.features-bg {
    background: #ffffff0a;
    border-radius: 14px;
    box-shadow: 0 6px 36px #000a;
    padding: 62px 40px 44px 40px;
    max-width: 1366px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.features-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #e29a62;
  margin-bottom: 18px;
}

.features-subtitle {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  justify-content: center;
}

.feature-card {
  background: #1b1b1b;
  border: 1px solid #ccc;
  border-radius: 14px;
  box-shadow: 0 2px 16px #0004;
  padding: 36px 24px 25px 24px;
  color: #fff;
  min-width: 220px;
  max-width: 340px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  background: #232323;
  color: #ffffff;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 18px;
  box-shadow: 0 1px 8px #0007;
  padding: 10px;
}

.feature-card h3 {
  font-size: 1.13rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 1rem;
  color: #f7f6f2;
  margin: 0;
}

@media (max-width:950px) {
  .features-bg {
    padding: 34px 5px 22px 5px;
  }
  .features-title { font-size: 2rem;}
  .features-grid { gap: 18px;}
}

.goals-section {
    background: #181818;
    padding: 50px 0 50px 0;
    width: 100%;
}

.goals-title {
  color: #e29a62;
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.goals-main-desc {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 52px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.goals-flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1350px;
  gap: 48px;
  width: 97%;
  margin: 0 auto;
}

.goals-card {
  background: #252422;
  border-radius: 28px;
  box-shadow: 0 8px 36px #000a;
   padding: 20px;
  flex: 2 1 540px;
  color: #fff;
}

.goals-objectives-heading {
  font-size: 1.27rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}

.goals-list {
  font-size: 1.09rem;
  color: #fff;
  margin-left: 0;
  padding-left: 18px;
}

.goals-list li {
    margin-bottom: 6px;
    line-height: 1.4;
    list-style: disc;
}

.goals-image-container {
  flex: 1 1 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 360px;
}

.goals-image {
  width: 420px;
  max-width: 100%;
  border-radius: 22px;
  box-shadow: 0 6px 38px #000a;
  /* background: #fff; */
}

/* .achievements-section {
  background: #181818;
  padding: 70px 0 54px 0;
  width: 100%;
}

.achievements-flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1350px;
  gap: 52px;
  width: 97%;
  margin: 0 auto;
}

.achievements-image-container {
  flex: 1 1 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 360px;
}

.achievements-image {
  width: 430px;
  max-width: 100%;
  border-radius: 22px;
  box-shadow: 0 6px 38px #000a;
}

.achievements-card {
  background: #252422;
  border-radius: 28px;
  box-shadow: 0 8px 36px #000a;
  padding: 44px 36px;
  flex: 2 1 540px;
  color: #fff;
}

.achievements-title {
  font-size: 1.27rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.achievements-list {
  font-size: 1.08rem;
  color: #fff;
  margin-left: 0;
  padding-left: 18px;
} */
.achievements-section {
  background: #181818;
  padding: 70px 0 54px 0;
  width: 100%;
}

.achievements-flex {
  display: flex;
  justify-content: center;
  align-items: stretch; /* ensures both columns are equal height */
  max-width: 1350px;
  width: 97%;
  margin: 0 auto;
  gap: 52px;
}

/* Equal width for both sides */
.achievements-image-container,
.achievements-card {
  flex: 1 1 50%; /* equal 50% width */
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 22px;
  /* box-shadow: 0 6px 38px #000a; */
}

/* Image styles */
.achievements-image-container {
  overflow: hidden; /* keeps rounded corners clean */
}

.achievements-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills container perfectly */
  border-radius: 22px;
}

/* Card styles */
.achievements-card {
  background: #1e1e1e;
  padding: 40px;
  color: #fff;
}

.achievements-title {
  color: #f8982a;
  margin-bottom: 1rem;
}

.achievements-list {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.achievements-list li {
  margin-bottom: 0.5rem;
}

/* Responsive behavior */
@media (max-width: 991px) {
  .achievements-flex {
    flex-direction: column;
    gap: 32px;
  }

  .achievements-image-container,
  .achievements-card {
    width: 100%;
  }

  .achievements-image {
    height: auto;
  }
}


.achievements-list li {
  margin-bottom: 15px;
  line-height: 1.6;
  list-style: disc;
}

.achievements-objectives-heading {
  font-size: 1.13rem;
  font-weight: 700;
  color: #fff;
  margin-top: 24px;
  margin-bottom: 10px;
}

@media (max-width:1100px) {
  .goals-flex, .achievements-flex {
    flex-direction: column;
    gap: 38px;
    align-items: stretch;
  }
  .goals-image, .achievements-image {
    max-width: 100%;
    width: 350px;
    margin: 0 auto;
  }
  .goals-card, .achievements-card {
    min-width: 0;
    max-width: 100%;
  }
}
.goals-image-container,
.achievements-image-container {
  flex: 1 1 420px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 360px;
}

.goals-image,
.achievements-image {
  width: auto;
  height: 100%;
  max-height:530px;
  border-radius: 22px;
  /* box-shadow: 0 6px 38px #000a; */
  /* background: #fff; */
  object-fit:contain;
}

.challenges-section {
  background: #181818;
  padding: 64px 0 64px 0;
  width: 100%;
  text-align: center;
}

.challenges-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #e29a62;
  margin-bottom: 36px;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 36px;
  max-width: 1080px;
  margin: 0 auto;
  background: transparent;
}

.challenge-card {
  background: #232221;
  border-radius: 25px;
  box-shadow: 0 6px 32px #000a;
  padding: 44px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  border: 2px solid #282828;
}

.challenge-icon {
  width: 60px;
  height: 60px;
  background: #191919;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: #ffffff;
  margin-bottom: 18px;
  margin-top: -10px;
}

.challenge-card-title {
  color: #ffffff;
  font-size: 1.17rem;
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 2px;
  text-align: center;
}

.challenge-card p {
  font-size: 1.08rem;
  line-height: 1.6;
  color: #e7e5e2;
  margin: 0;
  text-align: center;
}

@media (max-width:900px) {
  .challenges-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 98vw;
  }
  .challenge-card {
    padding: 32px 10px 24px 10px;
  }
  .challenges-title { font-size: 2.05rem;}
}
.stats-section {
  background: #181818;
  padding: 54px 0 38px 0;
  text-align: center;
}
.stats-title {
  font-size: 2.15rem;
  color: #e29a62;
  font-weight: 700;
  margin-bottom: 40px;
}
.stats-grid {
  display: flex;
  gap: 7vw;
  justify-content: center;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items:left;
  min-width: 140px;
}
.stat-count {
  font-size: 2.6rem;
  font-weight: 700;
  color: #e29a62;
  margin-bottom: 7px;
  letter-spacing: 2px;
  font-family: 'Segoe UI', serif;
}
.stat-label {
  font-size: 1.14rem;
  color: #e6e6e6;
  font-weight: 600;
  margin-bottom: 1px;
}
@media (max-width:800px) {
  .stats-grid {
    gap: 35px;
  }
  .stat-count {
    font-size: 1.7rem;
  }
  .stats-title { font-size: 1.5rem;}
}

.mobile-visual-section {
  background: #181818;
  padding: 0px 0 0px 0;
  text-align: center;
  width: 100%;
}
.mobile-visual-bg {
  background: url('images/mobile-design-bg.jpg') center/cover no-repeat;
  border-radius: 14px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 8px 38px 8px;
}
.mobile-visual-title {
  font-size: 2.13rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
.mobile-visual-desc {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 35px;
}
.mobile-visual-gallery1 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.mobile-visual-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  align-items: flex-end;
}

.mobile-ui-img {
  max-width: 240px;
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 6px 34px #000b;
  background: #111;
  display: block;
}

@media (max-width:1200px) {
  .mobile-ui-img { max-width: 170px; height: 260px;}
  .mobile-visual-row { gap: 14px; }
}

@media (max-width:800px) {
  .mobile-ui-img { max-width: 110px; height: 140px;}
  .mobile-visual-title { font-size: 1.2rem; }
  .mobile-visual-desc { font-size: 1rem;}
}

.download-app-section {
  background: #181818;
  padding:50px 0 50px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.download-app-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 96%;
  margin: 0 auto;
  background: #211f1d;
  border-radius: 48px;
  box-shadow: 0 6px 38px #000a;
  padding: 54px 54px;
  gap: 46px;
}
.download-app-content {
  flex: 2 1 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 350px;
}
.download-app-label {
  color: #e97a36;
  font-size: 1.13rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.download-app-title {
  color: #fff;
  font-size:30px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  line-height: 1.18;
}
.store-btn-row {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 8px;
}
.store-btn {
  background: #ffffff;
  color: #222;
  border-radius: 36px;
  padding: 19px 33px;
  font-size: 1.11rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 16px #0006;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}
.store-btn:hover {
  background: #e97a36;
  color: #fff;
}
.store-icon {
  width: 25px;
  height: 25px;
  margin-right: 13px;
  vertical-align: middle;
}
.store-btn span {
  font-weight: 700;
  margin-left: 5px;
}
.download-app-image {
  flex: 1 1 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
}
.app-mobile-img {
  max-width:200px;
  width: 100%;
  border-radius: 38px;
  box-shadow: 0 8px 38px #000b;
  background: #181818;
  display: block;
}

@media (max-width:1200px) {
  .download-app-wrapper {
    flex-direction: column;
    gap: 32px;
    padding: 48px 24px;
  }
  .download-app-content,
  .download-app-image {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .app-mobile-img {
    max-width: 270px;
    margin: 0 auto;
  }
  .download-app-title { font-size: 1.7rem; }
}

.contact-section {
  position: relative;
  background: url('images/form-bg.webp') center center / cover no-repeat;
  min-height: 650px;
  width: 100vw;
  overflow: hidden;
  padding: 0;
  max-width: 100%;
}
.contact-section-overlay {
  width: 100%;
  min-height: 650px;
  background: rgba(35,35,35,0.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}
.contact-section-heading {
  max-width: 950px;
  text-align: center;
  margin-bottom: 32px;
}
.contact-top-btn {
  background: #fff;
  color: #252422;
  font-weight: 600;
  padding: 6px 28px;
  border: none;
  border-radius: 22px;
  margin-bottom: 28px;
  font-size: 1.1rem;
  box-shadow: 0 2px 16px #0003;
  cursor: pointer;
}
.contact-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 13px;
  text-shadow: 0 3px 14px #000c;
}
.contact-desc {
  color: #ececec;
  font-size: 1.17rem;
  margin-bottom: 18px;
}
.contact-cards-row {
  display: flex;
  gap: 28px;
  max-width: 900px;
  width: 97%;
  justify-content: center;
  margin: 47px auto 0 auto;
}
.contact-form {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 32px #0006;
  padding: 36px 29px 29px 29px;
  width: 450px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}
.form-fields-row {
  display: flex;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  font-size: 1rem;
  padding: 7px 9px;
  border: none;
  border-bottom: 2px solid #dadada;
  outline: none;
  background: transparent;
  color: #242424;
  margin-bottom: 3px;
  width: 100%;
  font-family: inherit;
}
.contact-form textarea {
  resize: vertical;
  border-radius: 6px;
  border-bottom: 2px solid #dadada;
  border-left: none;
  border-right: none;
  border-top: none;
  min-height: 54px;
  margin-bottom: 0;
}
.form-connect-btn {
  background: #21201e;
  color: #fff;
  border-radius: 22px;
  font-weight: 700;
  font-size: 1.15rem;
  border: none;
  padding: 14px 0;
  width: 100%;
  margin-top: 5px;
  cursor: pointer;
  box-shadow: 0 2px 8px #0003;
}

.contact-card {
  background: #7449de;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 32px #0007;
  padding: 38px 27px 32px 27px;
  min-width: 300px;
  width: 450px;
  display: flex;
  flex-direction: column;
}

.contact-card h3 {
  font-size: 1.37rem;
  font-weight: 700;
  margin-bottom: 11px;
}

.contact-card-desc {
  font-size: 1.07rem;
  margin-bottom: 18px;
}

.contact-details {
  margin-bottom: 19px;
}

.contact-details-row {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  font-size: 1.09rem;
  margin-bottom: 13px;
}

.contact-details-row i {
  font-size: 1.3rem;
  margin-top: 3px;
}

.contact-details-row a {
  color: #fff;
  text-decoration: underline;
  font-size: 1.04rem;
}

.community_circle{
  width:300px;
}

.contact-social-row {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.contact-social-row a {
  color: #fff;
  /* background: #5b348a; */
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s;
  text-decoration: none;
}
.contact-social-row a:hover {
  background: #fff;
  color: #7449de;
}

@media (max-width:900px){
  .contact-cards-row {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    max-width: 98vw;
  }
  .contact-form,
  .contact-card {
    width: 100%;
    min-width: 0;
    max-width: 415px;
    margin: 0 auto;
  }
  .contact-section-heading h2 {
    font-size: 1.2rem !important;
  }
  .explore-screen-img {
    min-height: 350px;
}
}


/* footer-css */
.footer-section {
  background: #181818;
  color: #fff;
  width: 100vw;
  padding: 60px 0 0 0;
  position: relative;
}
.footer-grid {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
}
.footer-logo-block {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo {
  max-width: 260px;
  width: 80vw;
  height:70px;
}
.footer-links-block,
.footer-social-block {
  flex: 1 1 220px;
}
.footer-links-block h4,
.footer-social-block h4 {
  margin-bottom: 12px;
  font-size: 1.13rem;
}
.footer-links-block ul,
.footer-social-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-block li,
.footer-social-block li {
  margin-bottom: 13px;
}
.footer-links-block a,
.footer-social-block a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.footer-links-block a:hover,
.footer-social-block a:hover {
  color: #e97a36;
}
.footer-bottom-row {
  border-top: 1px solid #393939;
  margin: 40px auto 0 auto;
  padding: 18px 16px 20px 16px;
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 1rem;
}
.footer-policy-links {
  display: flex;
  gap: 16px;
}
.footer-policy-links a {
  color: #fff;
  text-decoration: none;
  margin-right: 12px;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-policy-links a:hover {
  color: #e97a36;
}
.footer-icons {
  display: flex;
  gap: 13px;
  margin-left: 14px;
}
.footer-icons a {
  color: #fff;
  font-size: 1.18rem;
  transition: color 0.2s;
}
.footer-icons a:hover {
  color: #e97a36;
}
.footer-copyright {
  font-size: 1.08rem;
  font-family: inherit;
}

@media (max-width:900px){
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 0 12px;
    max-width: 98vw;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 8px 14px 8px;
    max-width: 98vw;
  }
}
/* Base container responsiveness */
.container, .about-container, .technologies-leveraged-card, .contact-cards-row {
  width: 96%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Responsive breakpoints */

/* Large tablets and small desktops */
@media (max-width: 1100px) {
  .about-container, .contact-cards-row, .goals-flex, .achievements-flex {
    flex-direction: column;
    gap: 36px;
  }
  .portfolio {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* Tablets */
@media (max-width: 750px) {
  .portfolio {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .tech-cards-row, .mobile-visual-row {
    /* flex-wrap: wrap; */
    justify-content: center;
    gap: 40px;
  }
  .goals-image-container, .achievements-image-container {
    flex: 1 1 500px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-width: 360px;
}
.contact-section{
  padding: 0 16px;
}
}

/* Mobile phones */
@media (max-width: 480px) {
  body {
    font-size: 0.92rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
  .about-description-card, .about-stats-card {
    max-width: 100%;
  }
  .contact-cards-row {
    flex-direction: column;
  }
  .footer-content {
    flex-direction: column;
    gap: 24px;
  }
      .explore-screens {
        min-width: 0;
        justify-content: center;
        gap: 25px;
    }
.features-section {
    padding: 50px 0;
}
    .goals-section {
        background: #181818;
        padding: 20px 16px 20px 16px;
        width: 100%;
    }
    .hero {
    padding: 20px 16px;
}
.stats-section {
    padding: 20px 16px 20px 16px;
    text-align: left;
}
.challenges-section {
    padding: 20px 16px 20px 16px;
}
.achievements-section {
    padding: 20px 16px 20px 16px;
}
.mobile-visual-bg {
    padding: 20px 16px 20px 16px;
}
}
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 0;
  }
  .hero h1 {
    font-size: 24px;
    max-width: 700px;
}

.about-description-card p {
    font-size: 13px;
}

.about-description-card {
    padding: 20px 12px;
    flex: 2 1 400px;
}

.goals-list li {
    font-size: 14px;
}

.achievements-list li {
    font-size: 14px;
}

.achievements-card {
    background: #1e1e1e;
    padding: 12px;
    color: #fff;
}

.download-app-content {
    flex: 2 1 400px;
    min-width: 350px;
    padding: 16px;
}
.cta-btn {
    font-size: 12px;
    margin: 25px 0;
    padding: 14px 14px;
}
.app-links {
    margin-top: 20px !important;
}
  .logo img {
    margin: 0 auto 20px auto;
    display: block;
  }
  .nav-links, .nav-buttons {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .nav-links li, .nav-links a {
    width: 100%;
    text-align: center;
    display: block;
  }
  .trial-btn, .contact-btn {
    width: 100%;
    margin-bottom: 8px;
    font-size: 1rem;
  }
  .hero, .hero-logo, .hero h1, .tag-list, .app-links {
    text-align: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
  }
  .hero-logo {
    /* margin-bottom: 14px; */
    width: 60vw;
    max-width: 220px;
  }
  .cta-btn {
    width: 100%;
    margin: 20px auto 20px auto;
    max-width: 220px;
  }
  .tag-list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .stats-grid {
    flex-direction: column;
    display: flex;
    gap: 7vw;
}
.store-btn-row {
    flex-direction: column;
    width: 100%;
}
}
    .navbar .hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1100;
}

@media (max-width: 900px) {
  .navbar {
    position: relative;
  }
  
  .navbar .hamburger {
    display: block;
    margin-left: 18px;
  }
  .navbar .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    width: 100vw;
    flex-direction: column;
    gap: 0;
    z-index: 1099;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
  }
  .navbar .nav-links.active {
    display: flex;
  }
  .navbar .nav-buttons {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
  }
  .navbar nav {
    position: relative;
  }
  .navbar .submenu {
    width: 90vw;
    grid-template-columns: repeat(2, 1fr);
  }
  .download-app-section {
    padding: 20px 0 20px 0;
}
.mobile-visual-section {
    padding: 20px 16px 20px 16px;
}
.store-btn {
    width: 100%;
    padding: 19px 24px;
}
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 6%;
  }
  .navbar .logo img {
    height: 44px;
  }
  .navbar .nav-buttons {
    padding-bottom: 15px;
  }
  .about-section {
    /* background: #181818; */
    padding: 30px 16px 30px 16px;
}
.problem-solution-card {
    padding: 30px 16px 30px 16px;
}
.explore-card {
        max-height: 420px !important;
        padding: 20px 20px !important;
    }
    .community_circle {
    width: 220px;
}
}

@media (max-width: 480px) {
  .navbar .nav-links {
    gap: 0;
  }
  .navbar .submenu {
    grid-template-columns: 1fr;
    width: 100vw;
  }
}
.navbar {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar .hamburger {
  margin-left: auto;
  margin-right: 0;
  /* To ensure it goes to the right side */
  display: block;
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 12px;
  }
}
/* Hamburger hidden by default */
.hamburger {
  display: none !important;
}

/* Show hamburger only on mobile (max-width: 900px) */
@media (max-width: 900px) {
  .hamburger {
    display: block !important;
  }

  /* Hide nav links by default on mobile */
  .nav-links {
    display: none;
  }

  /* Show nav when active (hamburger clicked) */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    /* additional styles for mobile menu */
  }
}
.nav-buttons-mobile {
  display: none;
}

@media (max-width: 900px) {
  .nav-buttons {
    display: none !important;
  }
  .nav-buttons-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
    align-items: center;
  }
  .nav-buttons-mobile .trial-btn,
  .nav-buttons-mobile .contact-btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .navbar .nav-links {
    position: absolute;
    top: 100%;
    left:-100px;
    width: 100vw;
    background: #111;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 4px 16px rgba(0,0,0,0.7);
    padding: 24px 16px;    /* Neat inside padding */
    z-index: 1200;
  }
  .navbar .nav-links.active {
    display: flex;
  }
  .navbar .nav-links li {
    margin-bottom: 18px;
    width: 100%;
  }
  .navbar .nav-links li:last-child {
    margin-bottom: 0;
  }
  .nav-buttons-mobile .trial-btn,
  .nav-buttons-mobile .contact-btn {
    width: 100%;                  /* Ensure buttons take full width */
    box-sizing: border-box;
    text-align: center;
    margin: 0 0 12px 0;
    font-size: 1.08rem;
  }
  .nav-buttons-mobile .contact-btn {
    margin-bottom: 0;
  }
}

/* Desktop: 5 screens per row */
.mobile-visual-gallery,
.columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  /* Mobile: 3 screens per row */
  .mobile-visual-gallery,
  .columns {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px;
  }
}

.fa-brands, .fab {
    padding: 4px;
    align-items: center;
    font-size: 24px;
    font-weight: 400;
    height: 40px;
    width: 40px;
    border-radius: 50%;
}