/* ranaha.css */
body, html {
  margin: 0;
  font-family: 'Poppins', 'Inter', sans-serif;
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 80px 0;
}

.hero {
  text-align: center;
  padding-top: 120px;
  position: relative;
  z-index: 2;
}

.project-logo {
  max-width: 120px;
  margin-bottom: 20px;
}

.project-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 20px 0 10px;
}

.project-subtitle {
  font-size: 1.2rem;
  color: #bbbbbb;
  margin-bottom: 30px;
}

.btn-demo {
  background: linear-gradient(45deg, #00ffa3, #dc1fff);
  color: #000;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-demo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(220, 31, 255, 0.6);
}

.content-section {
  margin-top: 80px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.7;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse .text {
  direction: ltr;
}

.col img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.tools-grid span {
  background: #111111;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
}

.screenshot {
  width: 100%;
  border-radius: 20px;
  margin-top: 30px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

/* Blurred Animated Background Gradients */
.blurred-bg {
  position: fixed; /* changed from absolute to fixed */
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.7;
  z-index: 0;
  animation: move 4s infinite alternate ease-in-out;
  transform-origin: center;
  pointer-events: none; /* ensure background is non-interactive */
}


.gradient1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(45deg, #ff6ec4, #7873f5);
  top: -200px;
  left: 50px;
}

.gradient2 {
  width: 600px;
  height: 600px;
  background: linear-gradient(45deg, #00ffa3, #dc1fff);
  bottom: -200px;
  right: -200px;
}

.gradient3 {
  width: 500px;
  height: 500px;
  background: linear-gradient(45deg, #ffc600, #ff6ec4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes move {
  0% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1.2);
  }
}

@media (max-width: 768px) {
  .project-title {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}
