.header-area {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1200px;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(16px);
  border-radius: 50px;
  padding: 8px 26px;
  border: 1px solid rgba(96, 165, 250, 0.35);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.4),
    inset 0 0 25px rgba(59, 130, 246, 0.15);
}

.header-area {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, menu right */
}

/* LOGO */

.logo {
  font-size: 22px;
  font-weight: 800;
  color: #60a5fa;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.logo span {
  color: #a78bfa;
}

/* NAV LINKS */

.nav-link {
  font-weight: 500;
  margin-left: 22px;
  color: #e2e8f0;
  font-size: 15px;
  transition: 0.35s;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  transition: 0.35s;
}

.nav-link:hover {
  color: #60a5fa;
}

.nav-link:hover::after {
  width: 100%;
}

/* DEMO BUTTON */

/* NAV ALIGNMENT (optional if inside navbar) */
.navbar .demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* PREMIUM DEMO BUTTON */
.demo-btn {
  position: relative;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  overflow: hidden;
  transition: all 0.35s ease;
  letter-spacing: 0.5px;

  /* Glow effect */
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
}

/* 🔥 OUTER GLOW LAYER */
.demo-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: linear-gradient(135deg, #60a5fa, #2563eb, #1d4ed8);
  z-index: -1;
  filter: blur(10px);
  opacity: 0;
  transition: 0.4s;
}

/* ✨ SHINE EFFECT */
.demo-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-25deg);
}

/* HOVER EFFECT */
.demo-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.7);
}

/* ACTIVATE GLOW */
.demo-btn:hover::before {
  opacity: 1;
}

/* SHINE ANIMATION ON HOVER */
.demo-btn:hover::after {
  animation: shineMove 0.8s ease;
}

/* CLICK EFFECT */
.demo-btn:active {
  transform: scale(0.95);
}

/* KEYFRAMES */
@keyframes shineMove {
  0% {
    left: -75%;
  }
  100% {
    left: 130%;
  }
}

.navbar .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* MAIN BUTTON */
/* MAIN BUTTON */
.button {
  border: none;
  outline: none;

  padding: 6px 18px;
  height: 36px;

  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;
  cursor: pointer;

  text-decoration: none;
  color: #fff;

  /* 🔥 Glass + gradient base */
  background: rgba(20, 20, 30, 0.6);
  backdrop-filter: blur(12px);

  /* Glow shadow */
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.35);

  transition: all 0.3s ease;
}

/* 🌈 ANIMATED BORDER GLOW */
.button::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;

  background: linear-gradient(
    120deg,
    #3b82f6,
    #8b5cf6,
    #06b6d4,
    #22c55e,
    #f59e0b,
    #ec4899,
    #3b82f6
  );

  background-size: 300% 300%;
  animation: borderMove 4s linear infinite;

  z-index: -2;
  filter: blur(6px);
  opacity: 0.7;
}

/* ✨ SHINE EFFECT */
.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );

  transform: skewX(-25deg);
}

/* GRADIENT CONTAINER */
.gradient-container {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  z-index: -3;
  filter: blur(15px);
}

/* ANIMATED GRADIENT */
.gradient {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  border-radius: 50%;

  background: conic-gradient(
    #3b82f6,
    #8b5cf6,
    #ec4899,
    #f59e0b,
    #22c55e,
    #06b6d4,
    #3b82f6
  );

  animation: rotate 4s linear infinite;
}

/* 🔥 HOVER EFFECT */
.button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.6);
}

/* ✨ SHINE ANIMATION */
.button:hover::after {
  animation: shine 0.8s ease;
}

/* STRONG GLOW ON HOVER */
.button:hover::before {
  filter: blur(18px);
  opacity: 1;
}

/* 💥 CLICK */
.button:active {
  transform: scale(0.96);
}

/* 🎯 ANIMATIONS */
@keyframes borderMove {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 300%;
  }
}

@keyframes shine {
  0% {
    left: -70%;
  }
  100% {
    left: 130%;
  }
}

/* DROPDOWN */

.templates-dropdown {
  position: relative;
}

.templates-menu {
  position: absolute;
  top: 42px;
  left: 0;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  padding: 8px 0;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.35s;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.templates-menu a {
  display: block;
  padding: 10px 18px;
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
}

.templates-menu a:hover {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  padding-left: 22px;
}

.templates-dropdown:hover .templates-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* HERO */

.hero {
  padding: 160px 20px 120px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero p {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  color: #cbd5f5;
}

.hero-btn {
  margin-top: 30px;
  display: inline-block;
  background: #3b82f6;
  padding: 14px 35px;
  border-radius: 40px;
  color: white;
  font-weight: 700;
  text-decoration: none;
}

  .navbar-brand.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
}

.navbar-brand.logo img {
  height: 40px;       /* 🔥 CONTROL SIZE HERE */
  width: auto;
  object-fit: contain;
}

/* Optional: mobile */
@media (max-width: 576px) {
  .navbar-brand.logo img {
    height: 32px;
  }
}


/* ================================================footer */
 .site-footer {
  background: linear-gradient(135deg, #eef4ff, #f8fbff);
  padding: 80px 20px 30px;
  color: #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  color: #2563eb;
}

.footer-logo span {
  color: #f59e0b;
}

.footer-col p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #1e3a8a;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #475569;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #2563eb;
  padding-left: 4px;
}

/* Social icons */

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  margin-right: 8px;
  color: #2563eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.social-icons a:hover {
  background: #2563eb;
  color: white;
}

/* Newsletter */

.newsletter {
  display: flex;
  margin-top: 10px;
}

.newsletter input {
  flex: 1;
  padding: 10px;
  border-radius: 6px 0 0 6px;
  border: 1px solid #dbeafe;
  outline: none;
}

.newsletter button {
  background: #2563eb;
  border: none;
  color: white;
  padding: 10px 18px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

/* Bottom */

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

.footer-bottom a {
  color: #2563eb;
  text-decoration: none;
}

.footer-policy a {
  margin-left: 15px;
}
