/* ==============================
   Modern Glossy Theme CSS
   ============================== */

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #eef2f3, #d9e4f5);
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

.equal-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.equal-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.equal-card .card-body p {
  flex-grow: 1; /* pushes buttons to bottom */
}
  .row.g-4 {
    row-gap: 2rem !important;
  }


/* Navbar with Glassmorphism */
.navbar {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 0.8rem 1.5rem;
  margin-top: 5px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.navbar-brand h2 {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #007bff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.navbar .nav-link {
  font-weight: 500;
  padding: 0.6rem 1rem;
  transition: color 0.3s, transform 0.2s;
}

.navbar .nav-link:hover {
  color: #007bff;
  transform: translateY(-2px);
}

/* Hero Banner */
.main-banner {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(135deg, #007bff, #00d4ff);
  color: #fff;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.main-banner h6 {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.9;
}

.main-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.main-banner p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.main-banner .btn {
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(45deg, #ff6a00, #ee0979);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.main-banner .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

/* Section Headings */
.section-heading h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

.section-heading span {
  font-size: 1rem;
  color: #666;
}

/* App Cards */
.card {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.card img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 35px rgba(0,0,0,0.2);
}

.card-body h4 {
  font-size: 1.3rem;
  margin-top: 0.8rem;
}

.card-body p {
  font-size: 0.95rem;
  color: #444;
}

.card-body .btn {
  margin-top: 0.8rem;
  background: linear-gradient(45deg, #36d1dc, #5b86e5);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  transition: background 0.3s, transform 0.2s;
}

.card-body .btn:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #5b86e5, #36d1dc);
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #f8f9fa, #eef2f3);
  padding: 70px 20px;
  border-radius: 60px;
  margin: 60px auto;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.testimonial-item {
  max-width: 700px;
  margin: auto;
  padding: 20px;
}

.testimonial-item p {
  font-size: 1.1rem;
  font-style: italic;
  color: #444;
}

.testimonial-item h6 {
  margin-top: 1rem;
  font-weight: 600;
  background: linear-gradient(45deg, #ff6a00, #ee0979);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Footer */
footer {
  background: linear-gradient(180deg, #212529, #111);
  padding: 60px 0 20px;
  color: #ddd;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}

footer h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #fff;
}

footer a {
  color: #ccc;
  font-size: 0.95rem;
}

footer a:hover {
  color: #fff;
}

.sub-footer {
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 20px;
  padding-top: 10px;
}

/* ==============================
   Live Effects
   ============================== */

/* Animated Gradient Background */
body {
  background: linear-gradient(135deg, #eef2f3, #d9e4f5, #f3e7e9);
  background-size: 300% 300%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating Animation */
.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* Shine Effect (for buttons & cards) */
.shiny {
  position: relative;
  overflow: hidden;
}

.shiny::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0.6), rgba(255,255,255,0.2));
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}

 .read-more-content {
    display: none;
  }
  .read-more-btn {
    cursor: pointer;
    color: #0d6efd;
    font-weight: 500;
  }

@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* Glow on Hover */
.glow-hover:hover {
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.6);
  transform: scale(1.05);
}
#particles-js {
  position: relative;
  overflow: hidden;
}

#particles-js canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
}

#particles-js .container {
  position: relative;
  z-index: 2;
}
/* Add this to your modern.css */
.particles-js-canvas-el {
  filter: blur(0.5px) drop-shadow(0 0 6px rgba(255,255,255,0.8));
}
.main-banner {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  position: relative;
  overflow: hidden;
}

.main-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 70%);
  pointer-events: none;
}

