:root {
  --bg-dark: #0d0d0d;
  --text-light: #f3f3f3;
  --primary: #06b6d4;
  --accent: #8b5cf6;
  --gradient: linear-gradient(135deg, #06b6d4, #8b5cf6);
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 4rem 2rem;
  background: url('./Hero img.png') no-repeat center center/cover;
  color: white;
  height: 100vh; /* 👈 Added this line */
  position: relative;
  padding-top: 4rem; 
}

.hero-header {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.logo-circle {
  width: 50px;
  height: 50px;
  background-color: #ffffff1a;
  border: 2px solid #ffffff44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* ensures image stays within circle */
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures logo fills circle neatly */
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 500px;
}

.hero-content .cta {
  margin-top: 1.5rem;
  display: inline-block;
  background-color: white;
  color: #0d0d0d;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero-content .cta:hover {
  background-color: var(--accent);
  color: white;
}





.features {
  padding: 3rem 2rem;
  background-color: #121212;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.feature-card {
  background: #1c1c1c;
  padding: 2rem;
  border-radius: 10px;
  max-width: 300px;
  text-align: left;
}

.feature-card h3 {
  color: var(--primary);
}

.testimonial {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #4a00e0, #8e2de2);
}

.testimonial h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: white;
  text-align: center;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  width: 300px;
  color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 auto 1rem auto;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-align: center;
}

.testimonial-card span {
  font-size: 0.85rem;
  opacity: 0.8;
  display: block;
  text-align: center;
}

.footer {
  position: relative; /* Make footer a positioning context */
  background: #0f0f1a;
  color: #ffffffcc;
  text-align: center;
  padding: 3rem 1rem;
}

.footer-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: linear-gradient(to right, #4a00e0, #8e2de2);
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(to right, #8e2de2, #4a00e0);
}

.social-icons {
  position: absolute;
  bottom: 1rem;   /* small padding from bottom */
  right: 1rem;    /* small padding from right */
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end; /* optional */
  margin-top: 0; /* remove margin since absolute */
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #8e2de2;
}
