:root {
  --primary: #6e6bf3;
  --primary-dark: #5553cf;
  --primary-light: #9b98f8;
  --accent: #ff6b6b;
  --white: #ffffff;
  --text-color: #333333;
  --bg-color: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--primary);
  overflow-x: hidden;
}
h3 {
  color: var(--white);
  font-weight: bolder;
  font-size: 1.4rem;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

.glassy-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  opacity: 0.5;
  z-index: -1;
}

.linkedin-icon {
  margin-top: auto;
  display: inline-block;
  margin-top: 10px;
  font-size: 24px;
  color: #0077b5;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.linkedin-icon:hover {
  color: #005582;
  transform: scale(1.1);
}

/* Navbar Styles */
.navbar {
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--white);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-light);
}

/* Hero Section Styles */
.hero {
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
}

.gradient-text {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(to right, #fff, #ffdd77, #ff6b6b, #9b98f8, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientText 6s linear infinite;
}

@keyframes gradientText {
  to {
    background-position: 200% center;
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 1.5rem auto;
  color: var(--white);
}

.web-coming-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-top: 2rem;
  font-weight: 600;
  backdrop-filter: blur(5px);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Features Section Styles */
.features {
  padding: 100px 0;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.feature-card p {
  color: var(--white);
  opacity: 0.8;
}

/* App Preview Section Styles */
.app-preview {
  padding: 100px 0;
}

.app-preview h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--white);
}

.screenshots {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.privacy-policy {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.app-screenshot {
  width: 250px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.app-screenshot:hover {
  transform: scale(1.05);
}

/* Download Section Styles */
.download {
  padding: 100px 0;
  text-align: center;
}

.download h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.download p {
  color: var(--white);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.download-button {
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(5px);
}

.download-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.2);
}
/* Privacy Section Styles */
.privacy {
  padding: 80px 20px;
  /* background: linear-gradient(135deg, #6c63ff 0%, #3a3af5 100%); */
  color: white;
  text-align: center;
}

.privacy h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #fff;
  font-weight: bold;
}

.privacy-policy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.privacy-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  /* box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2); */
  transition: transform 0.3s ease;
}

.privacy-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.privacy-item h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.privacy-item p {
  color: #e0e0e0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .privacy-policy {
    grid-template-columns: 1fr;
  }
}
/* Stats Section Styles */
.stats-section {
  padding: 80px 0;
  /* background: linear-gradient(135deg, #605bff, #1d1a6d); */
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.sectioner-header h3 {
  font-size: 3rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
}

.sectioner-header p {
  color: #e0e0e0;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
  font-size: 1.1rem;
}

.sectioner-header .line {
  display: block;
  width: 60px;
  height: 4px;
  background: #ffd700;
  margin: 10px auto 20px;
  border-radius: 2px;
}

.stats-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Stat Card Adjustments */
.stat-card {
  background: rgba(255, 255, 255, 0.1);

  padding: 25px;
  border-radius: 15px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  min-width: 150px;
  flex: 1 1 15%;
  max-width: 160px;
  overflow: hidden;
}

.stat-card .stat-number {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: bold;
  color: #fff;
  margin: 5px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
}

.stat-card:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); */
}

.stat-card p {
  color: #e0e0e0;
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}

.stat-card .icon {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 10px;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
  .stat-card {
    flex: 1 1 30%;
  }
}

@media (max-width: 768px) {
  .stat-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 576px) {
  .stat-card {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}
/* Team Section Styles */
.team.section-padding {
  padding: 80px 0;
  /* background: linear-gradient(135deg, #605bff, #1d1a6d); */
  color: #fff;
  overflow-x: hidden;
}

.sectioner-header h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #fff;
  font-weight: bold;
}

/* Flexbox Row */
.team-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.team-row::-webkit-scrollbar {
  display: none;
}

.team-detail {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  /* box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  overflow: hidden;
  width: 250px;
  flex-shrink: 0;
  scroll-snap-align: center;
}

.team-detail:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4); */
}

.image-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 3px solid #fff;
}

.team-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-detail:hover img {
  transform: scale(1.1);
}

.team-detail h4 {
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 5px;
}

.team-detail p {
  color: #d1d1d1;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .team-row {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .team-row {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .team-detail {
    width: 220px;
  }
}

@media (max-width: 576px) {
  .team-detail {
    width: 180px;
  }
}

/* Footer Styles */
footer {
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
  backdrop-filter: blur(10px);
}

footer p {
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-icons a {
  color: var(--white);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--white);
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .gradient-text {
    font-size: 2.5rem;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-button {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .gradient-text {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .app-screenshot {
    width: 100%;
    max-width: 300px;
  }
}
