@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background-color: #01092b; /* deep navy base */
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(0, 64, 255, 0.3) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(0, 64, 255, 0.3) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(0, 64, 255, 0.2) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 64, 255, 0.2) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 75%,
      rgba(0, 64, 255, 0.35) 0%,
      transparent 35%
    ),
    linear-gradient(to bottom, #020c39, #01092b);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  font-family: "Poppins", sans-serif;
  position: relative;
}

section {
  /* padding: 80px 20px; */
  scroll-margin-top: 60px;
  /* max-width: 1400px; */
  margin: 0 auto;
  position: relative;
 
}

/* Hero Section */
.main-img {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 20px;
  padding: 0 16px;
}

.initial-logo {
    max-width: 1200px;
  height: auto;
  border-radius: 10px;
  display: block;
}

#hero {
  padding: 80px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
   color: white;
   margin-top: 3rem;
}

.logo-content {
      display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 10rem;
}

.hero-logo-container {
  flex: 1 1 400px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  
}

.hero-logo {
  width: 100%;
 max-width: 500px;
  background: white;
  padding: 30px;
  border-radius: 20px;
}

.hero-content {
  flex: 1 1 500px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 300;
  font-family: "Syne", sans-serif;
  margin: 0;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 650px;
   font-family: "Poppins", sans-serif;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-buttons .download-btn {
  background-color: #63FCB7;
  color: #07124D;
  border: none;
  padding: 1rem 4rem;
  border-radius: 1.5rem;
  font-weight: bold;
  font-size: 1.4rem;
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-weight: 450;
}

.hero-buttons a {
 font-size: 1.4rem;
 font-weight: 300;
  color: white;
    font-family: "Oswald", sans-serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2rem;
}

.icon-size {
  height: 30px;
  width: 30px;
}


.top-heading {
  text-align: center;
  margin-bottom: 45px;
  font-size: 50px;
  font-family: "Syne", sans-serif;
  margin-top: 0px;
}

.top-heading span {
  color: #2af598;
}

.grid-row {
  display: grid;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.row-1 {
  grid-template-columns: 5fr 6fr 4fr;
}

.row-2 {
  grid-template-columns: 4fr 5fr 6fr;
  margin-top: 20px;
}

/* Box Styling */
.light-violet {
  background-color: rgba(39, 60, 171, 0.2);
}

.light-violet h3 {
  font-family: "Syne", sans-serif;
  font-size: 2.4rem;
  margin-top: 16px;
  margin-bottom: 16px;
  font-weight: 200;
  color: #ffffff;
}

.light-violet p {
  font-size: 15px;
  font-weight: 200;
  margin-bottom: 0px;
   color: #ffffff;
}

.box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: transform 1s ease, opacity 1s ease;
}

.icon {
  font-size: 24px;
  margin-bottom: 6px;
}


.from-left {
  transform: translateX(-50px);
}

.from-right {
  transform: translateX(50px);
}

.from-top {
  transform: translateY(-50px);
}

.from-bottom {
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s ease;
}

.show {
  transform: translateY(0) translateX(0);
  opacity: 1;
}


.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  margin-top: 6rem;
  margin-bottom: 6rem;
}


.product-left-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 90%;
  margin: 0 auto;
} 

.left-left {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 20px;
}

.left-right {
  gap: 20px;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.right-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
  width: 80%;
  margin: 0 auto;
}

.right-column.show {
  opacity: 1;
  transform: translateX(0);
}

.right-column h2 {
  font-size: 4rem;
  font-family: "syne", sans-serif;
  margin: 0;
  font-weight: 200;
   color: #ffffff;
}

.right-column h2 span {
  color: #2af598;
   font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 400;
}

.right-column p {
  font-family: "Poppins", sans-serif;
      margin-top: 2rem;
      font-weight: 300;
      line-height: 1.7;
      color: #ffffff;
}

.violet {
  background-color: rgba(39, 60, 171, 0.3);
  color: #ffffff;
}

.dark-violet {
  background-color: rgba(39, 60, 171);
   color: #ffffff;
}

.syne-font {
  font-family: "Syne", sans-serif;
  font-size: 20px;
}

.download-btn {
  background-color: #63FCB7;
  color: #07124D;
  border: none;
  padding: 1rem 4rem;
  border-radius: 1rem;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  width: fit-content;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  margin-top: 2rem;
  font-size: 19.2px;
}


#download {
background: linear-gradient(to right, #2564EC, #7740EB);
  padding: 100px 20px;
  text-align: center;
  color: white;
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 100px;
  max-width: 100%;
}

.download-section h2 {
  font-size: 4rem;
  margin-bottom: 10px;
  font-family: "Syne", sans-serif;
  font-weight: 350;
  text-align: center;
}

.download-section p {
  font-size: 2rem;
  font-family: "poppins", sans-serif;
  font-weight: 300;
  margin-bottom: 40px;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.download-card {
  background-color:#614fe2 ;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
 max-width: 450px;
    margin: auto;
    position: relative;
    height: 650px;
}

.badge {
  position: absolute;
  top: -10px;
  left: 72.1%;
  transform: translateX(-50%);
  background: #00ff88;
   font-family: "poppins", sans-serif;
  color: #0f2027;
  font-weight: bold;
  font-size: 12px;
     padding: 5px 15px;
  border-radius: 20px;
}

.download-card h3 {
      font-size: 2rem;
  margin: 20px 0 10px;
  font-family: "Syne", sans-serif;
  font-weight: 400;
  margin-bottom: 2rem;
}

.download-card p {
  margin: 8px 0;  
  font-size: 1.2rem;
    font-family: "poppins", sans-serif;
    text-align: left;
    
}

.download-card ul {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 30px;
  padding-left: 20px;
}

.download-card ul li {
  font-size: 1.2rem;
    font-family: "poppins", sans-serif;
  margin-bottom: 8px;
  line-height: 1.5;
}

.download-btn-android {
  background-color: #00FF8A;
  color: #07124D;
  border: none;
  padding: 0.5rem 6rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 8px;
  font-family: "Oswald", sans-serif;
  font-weight: 450;
}

.download-btn-android:hover {
  background-color: #2af598;
}


.testimonial-section h2 {
  font-size: 60px;
  text-align: center;
  margin-bottom: 40px;
  transform: translateX(50px);
  opacity: 0;
  transition: all 1s ease;
  font-family: "Syne", sans-serif;
  font-weight: 400;
}

.testimonial-section h2.show {
  transform: translateX(0);
  opacity: 1;
      margin-bottom: 10rem;
      color: #ffffff;
}

.testimonial-section span {
  color: #63FCB7;
      font-size: 4rem;
       font-family: "Syne", sans-serif;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 80%;
  margin: 0 auto;
  max-width: 1200px;
}

.carousel {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-box {
  flex: 0 0 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #63FCB7;
  border-radius: 16px;
  padding: 40px;
  min-height: 300px;
  box-sizing: border-box;
  margin-bottom: 4rem;
}

.testimonial-image img {
  width: 100%;
  max-width: 250px;
  border-radius: 12px;
}

.testimonial-content p {
 font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 100;
     font-family: "poppins", sans-serif;
     color: #ffffff;
}

.testimonial-name {
  font-size: 20px;
  color: #2af598;
  font-weight: 300;
  font-family: "Syne", sans-serif;
}

.testimonial-role {
  font-size: 14px;
  color: #ccc;
}

.dots {
  position: absolute;
  bottom: 20px;
  right: 30px;
  display: flex;
  gap: 6px;
}

.dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #fff;
  opacity: 0.3;
  border-radius: 50%;
  cursor: pointer;
}

.dots span.active {
  background-color: #2af598;
  opacity: 1;
  width: 12px;
  height: 8px;
  border-radius: 6px;
}


#responsive-features {
  display: none;
}


html,
body {
  overflow-x: hidden;
}
#nav-arrows {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 30px;
  padding: 8px 16px;
  display: flex;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
#nav-arrows .arrow {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  pointer-events: auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#nav-arrows .arrow:hover {
  color: #2af598;
} 
