/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #b74bff, #6c63ff);
  color: white;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 20px 50px; */
  padding: 0rem 1.5rem;
  background: white;
  color: black;
}

.navbar {
  font-weight: 600;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 80px;
  width: auto;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 100px;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 500px;
}

.small-text {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

h1 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.description {
  margin-bottom: 30px;
  font-size: 16px;
  color: #f1f1f1;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.signup-form input {
  padding: 12px 15px;
  border-radius: 25px;
  border: none;
  outline: none;
}

.signup-form button {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.signup-form button:hover {
  opacity: 0.9;
}

/* Phone Mockup */
.hero-image {
  position: relative;
}

.phone {
  width: 260px;
  height: 500px;
  background: #f2f2f2;
  border-radius: 30px;
  border: 8px solid #ddd;
  overflow: hidden;
}

.screen {
  background: #b06cff;
  width: 100%;
  height: 100%;
  padding: 30px 20px;
}

.chat {
  height: 50px;
  border-radius: 15px;
  margin: 15px 0;
}

.chat.white {
  background: white;
  width: 80%;
}

.chat.dark {
  background: #5c2c99;
  width: 60%;
  margin-left: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
  }

  .hero-image {
    margin-top: 40px;
  }
}



/* About Section */
.about {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.about h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #444;
}

.about p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Scrolling Gallery Section */
.scrolling-gallery {
  background: linear-gradient(135deg, #e0f7fa, #fce4ec);
  text-align: center;
  padding: 60px 0;
  overflow: hidden;
}

.scrolling-gallery h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
}

.scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Continuous image strip */
.scroll-content {
  display: flex;
  width: calc(300px * 12); /* width = image width × total images */
  animation: scrollImages 25s linear infinite;
}

/* Image styling (no gap, no border radius) */
.scroll-content img {
  width: 300px;
  height: 200px;
  margin-right: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 0;
}

/* Animation for smooth continuous scroll */
@keyframes scrollImages {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .scroll-content img {
    width: 200px;
    height: 130px;
  }

  .scroll-content {
    width: calc(200px * 12);
    animation: scrollImages 20s linear infinite;
  }
}


/* Pricing Section */
.pricing {
  background: #fff;
  text-align: center;
  padding: 80px 20px;
}

.pricing h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.pricing-subtitle {
  color: #666;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-card {
  background: #f8f9fa;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  width: 300px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  color: #333; /* ✅ ensure dark text for non-featured cards */
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #80deea, #f48fb1);
  color: #fff; /* white text only for featured */
  transform: scale(1.05);
}

.pricing-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 600;
}

.pricing-card .price {
  font-size: 2rem;
  margin: 15px 0;
  font-weight: bold;
  color: inherit; /* ✅ ensures it adapts to parent color */
}

.pricing-card .price span {
  font-size: 1rem;
  color: #555;
}

.pricing-card.featured .price span {
  color: #fff;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.pricing-card ul li {
  margin: 10px 0;
  font-size: 0.95rem;
  color: inherit; /* ✅ ensures proper color per card */
}

.pricing-btn {
  background: #0077b6;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: #005f8a;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 90%;
    max-width: 350px;
  }
}
