* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #141111;
  font-family: 'Segoe UI', sans-serif;
}

/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #141111;
  padding: 15px 30px;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo Styling */
.logo {
  font-size: 24px;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 30px;
}

/* Menu Links */
.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover underline animation */
.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: white;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  transform: translateY(-2px);
  color: #ff7a2c;
}

/* ... (Keep existing styles above this) ... */

.testimonial {
  background-image: url('Screenshot_2.png'); /* Place image in same folder */
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 50px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
}

.testimonial-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.testimonial-content blockquote {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.testimonial-content p {
  font-size: 16px;
  font-weight: bold;
}

/* Chatting App Section */
.chatting-section {
  background-color: #222;
  color: #fff;
  padding: 80px 50px;
  text-align: center;
}

.chatting-section h2 {
  font-size: 32px;
  color: #ff944d;
  margin-bottom: 20px;
}

.chatting-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #171212;
  color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #171212;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #ff944d;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav a.active {
  border-bottom: 2px solid #ff944d;
}

.download-btn {
  background-color: #ff944d;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.hero {
  display: flex;
  justify-content: space-between;
  padding: 80px 50px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
}

.highlight {
  color: #ff944d;
}

.hero-text p {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 30px;
  color: #ccc;
}

.buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.store-btn {
  background-color: #fff;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.store-btn.apple::before {
  content: "🍎 ";
}

.store-btn.google::before {
  content: "▶ ";
}

.stats {
  display: flex;
  gap: 40px;
  font-size: 16px;
}

.stats div strong {
  font-size: 24px;
  color: #ff944d;
}

.hero-image {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.community-card {
  background-color: #2e2e2e;
  padding: 20px;
  border-radius: 12px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  color: #fff;
  width: 200px;
}
.top-rated {
  padding: 80px 50px;
  background-color: #141111;
  color: #fff;
  text-align: center;
}

.top-rated-header h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.4;
}

.highlight-orange {
  color: #ff944d;
}

.top-rated-header p {
  max-width: 700px;
  margin: 20px auto 40px;
  color: #bbb;
  font-size: 18px;
}

.top-rated-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 60px;
  font-size: 18px;
}

.top-rated-stats div {
  font-weight: bold;
  color: #fff;
}

.top-rated-stats div strong {
  font-size: 28px;
  color: #ff944d;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.review-card {
  background-color: #1f1b1b;
  padding: 20px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.review-card img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-bottom: 10px;
}

.review-card h4 {
  margin: 0;
  color: #fff;
  font-size: 16px;
}

.review-card .platform {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #ddd;
}

.review-card .stars {
  color: #ffcc00;
  margin-top: 10px;
  font-size: 18px;
}
.site-footer {
  background-color: #141111;
  color: #ccc;
  display: flex;
  justify-content: space-between;
  padding: 60px 50px;
  flex-wrap: wrap;
  position: relative;
}

.footer-left {
  max-width: 300px;
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #ff944d;
  margin-bottom: 10px;
}

.footer-left p {
  margin: 10px 0;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin: 15px 0;
}

.social-icons a {
  color: #fff;
  background: #2a2a2a;
  padding: 10px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background-color: #ff944d;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 120px;
}

.footer-column h4 {
  color: #ff944d;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-column a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-column a:hover {
  color: #fff;
}

.scroll-top {
  position: absolute;
  bottom: 20px;
  right: 40px;
  background-color: #ff944d;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.scroll-top:hover {
  background-color: #e67c2f;
}

.highlight-orange {
  color: #ff944d;
}

.projects-section {
  padding: 80px 50px;
  background-color: #1c1818;
  color: #fff;
}

.projects-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.projects-header h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3;
}

.projects-header p {
  font-size: 18px;
  color: #bbb;
  margin-top: 10px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.project-card {
  background-color: #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
}

.project-card p {
  padding: 15px;
  font-size: 15px;
  color: #eee;
}
.hidden {
  display: none;
}

.visible {
  display: block;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #111;
  color: white;
}

section {
  padding: 80px 50px;
}

.hidden {
  display: none;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.highlight-orange {
  color: #ff944d;
}

.hidden {
  display: none;
}

.testimonial {
  background-image: url('Screenshot_2.png'); /* Place image in same folder */
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 50px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
}

.testimonial-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.testimonial-content blockquote {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.testimonial-content p {
  font-size: 16px;
  font-weight: bold;
}

/* Chatting App Section */
.chatting-section {
  background-color: #222;
  color: #fff;
  padding: 80px 50px;
  text-align: center;
}

.chatting-section h2 {
  font-size: 32px;
  color: #ff944d;
  margin-bottom: 20px;
}

.chatting-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #171212;
  color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #171212;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #ff944d;
}

.download-btn {
  background-color: orange;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background-color: #3200e6;
   color: white;
}

a {
  text-decoration: none;
}

#mouse-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(0, 255, 106);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out;
  z-index: 9999;
  box-shadow: 0 0 10px rgb(250, 34, 6);
}


/* ... (new code harsha) ... */

/* Header Navbar Layout */




/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffeb3b;
}

.subheading {
  margin-top: 1rem;
  font-size: 1.1rem;
}

/* Dark Theme overrides */

body.dark-theme #themeToggle {
  background-color: #444;
  color: #fff;
}

body.dark-theme .nav-links li a {
  color: #fff;
}

body.dark-theme .nav-links li a:hover {
  color: #90caf9;
}



/* =========================
   Base Styles
========================= */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f7f9fc;
  color: #333;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* =========================
   Theme Toggle Button
========================= */
#themeToggle {
  padding: 0.5rem 1rem;
  background-color: white;
  color: #333;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

#themeToggle:hover {
  background-color: #eee;
}

body.dark-theme #themeToggle {
  background-color: #444;
  color: #fff;
}

/* =========================
   Header Styles
========================= */

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  font-size: 2.5rem;
  margin: 0;
}

.blog-header p {
  margin-top: 1rem;
  font-size: 1.2rem;
}

/* =========================
   Blog Card Layout
========================= */
.blog-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  justify-content: center;
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 300px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-card h2 {
  padding: 1rem;
  font-size: 1.5rem;
  color: #222;
}

.blog-card p {
  padding: 0 1rem 1rem 1rem;
  font-size: 0.95rem;
  color: #555;
}

.blog-card a {
  display: block;
  padding: 1rem;
  text-align: right;
  color: #2575fc;
  font-weight: bold;
  text-decoration: none;
}

/* =========================
   Footer
========================= */
.site-footer {
  text-align: center;
  padding: 1rem;
  background-color: #222;
  color: #fff;
}

/* =========================
   Dark Theme Styles
========================= */
body.dark-theme {
  background-color: #1e1e1e;
  color: #ddd;
}



body.dark-theme .blog-card {
  background: #2c2c2c;
}

body.dark-theme .blog-card h2 {
  color: #f1f1f1;
}

body.dark-theme .blog-card p {
  color: #ccc;
}

body.dark-theme .blog-card a {
  color: #90caf9;
}

body.dark-theme .site-footer {
  background-color: #111;
  color: #aaa;
}

/* =========================
   Responsive Enhancements
========================= */
@media (max-width: 600px) {
  .header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
