/* RESET */

  body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;

    background: linear-gradient(
      135deg,
      #ffffff 0%,
      #fff3f5 45%,
      #fde7eb 100%
    );
  }



/* ================= TOP BLACK BAR ================= */
.top-bar {
  height: 0.5in;                 /* ✅ approx 1 inch */
  background: #000000;
  color: white;
}

.top-bar {
  position: relative;
  z-index: 9999;
}

.main-header {
  position: relative;
  z-index: 1;
}

.top-bar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.top-bar a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  margin-left: 20px;
}

.top-bar-inner {
  display: flex;
  justify-content: flex-end;  /* 🔥 pushes content to right */
  align-items: center;
  padding: 0 40px;
}

/* Log in – plain text */
.top-bar .login {
  color: white;
}

/* Sign up – white box, black text */
.top-bar .signup {
  background: #ffffff;
  color: #000000;          /* ✅ black text */
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
}


/* ================= WHITE HEADER ================= */
.main-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;   /* vertical centering */
  gap: 1px;             /* space between symbol and text */
}

/* Logo symbol */
.logo img {
  height: 170px;          /* adjust if needed */
  width: auto;
  display: block;  /* removes inline spacing issues */
}


.logo img {
  transform: translateX(-50px) translateY(-10px);
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}





/* Logo text */
.logo-text {
  line-height: 1;     /* 🔒 prevents vertical drift */
  font-size: 30px;
  font-weight: 700;
  white-space: nowrap;/* prevents breaking */
  margin-left : -90px
}

.logo-text span {
  color: #c1121f;        /* red for Svara */
}


.nav-links {
  margin-left: 40px;
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: #111827;
  font-weight: 500;
}

/* ================= HERO SECTION ================= */



 .hero {
   position: relative;
   overflow: hidden;
   padding-bottom: 48px;
   margin-left: 50px
 }

.pdf-float {
  position: absolute;
  width: 36px;                /* ✅ small */
  opacity: 0.12;              /* ✅ transparent */
  pointer-events: none;       /* background only */
  user-select: none;

  animation: floatSlow 14s ease-in-out infinite;
}
.pdf-1 {
  top: 18%;
  left: 10%;
  animation-duration: 16s;
}

.pdf-2 {
  top: 32%;
  left: 65%;
  animation-duration: 18s;
}

.pdf-3 {
  top: 60%;
  left: 25%;
  animation-duration: 20s;
}

.pdf-4 {
  top: 10%;
  right: 10%;
  animation-duration: 22s;
}

.pdf-5 {
  top: 75%;
  right: 70%;
  animation-duration: 22s;
}

/*
@keyframes floatSlow {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(6px, -12px); }
  100% { transform: translate(0, 0); }
}
*/
.hero {
  position: relative;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #fff3f5 45%,
    #fde7eb 100%
  );
  overflow: hidden;
  padding-bottom: 48px;
}


.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
    white-space: nowrap;   /* ✅ forces single line */

}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #4b5563;
    margin-bottom: 24px; /* controls distance to cards */


}

.hero-actions {
  display: flex;
  gap: 16px;
}

.primary-btn {
  background: #c1121f;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.primary-btn:hover {
  background: #a50f1a;
}

.secondary-btn {
  background: transparent;
  border: 1px solid #c1121f;
  color: #c1121f;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.secondary-btn:hover {
  background: rgba(193, 18, 31, 0.08);
}

.tool-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;

  margin-top: 24px;   /* brings cards close */
  max-width: 720px;
  margin-left: 50px
}

.tool-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 10px;
    border: 1px solid #000000;   /* black border */
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;

  text-decoration: none;
  color: #111827;

  transition: all 0.25s ease;
}

.tool-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.tool-card p {
  margin: 0;
  font-size: 14px;
  font-style: Bold;
  line-height: 1.6;
  color: #4b5563;
}
.tool-card:hover {
  transform: translateY(-4px);
  border-color: #c1121f;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* 🔽 Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* 🔽 Main button */
.dropbtn {
  cursor: pointer;
}

/* 🔽 Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-radius: 6px;
  z-index: 999;
}

/* 🔽 Links inside dropdown */
.dropdown-content a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* 🔽 Hover effect */
.dropdown-content a:hover {
  background-color: #f5f5f5;
}

/* 🔽 Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}



