  /* ========= RESET ========= */
    *{margin:0;padding:0;box-sizing:border-box}
    body{font-family:'Inter',system-ui,sans-serif;line-height:1.6;color:#111;background:#f8fafc}
    h1,h2,h3{font-weight:700;#ffffff;}
    a{text-decoration:none;color:#2563eb}
    section{padding:80px 20px}
    .container{max-width:1100px;margin:0 auto}
    
    /* ========= HEADER ========= */
   /* ---------- GLOBAL ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
  color: #222;
}

/* ---------- HEADER ---------- */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-section img {
  width: 40px;
  height: 40px;
}

.logo-section h1 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #222;
}

.logo-section h1 span {
  color: #007bff;
}

/* ---------- NAVIGATION ---------- */
.navbar {
  display: flex;
  align-items: center;
  gap: 30px;
  transition: all 0.3s ease;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover {
  color: #007bff;
}

/* CTA Button */
.cta-btn {
  background: #007bff;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #0056d6;
}

/* ---------- MOBILE MENU ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .site-header {
    padding: 15px 25px;
  }

  .navbar {
    position: absolute;
        top: 71px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 3px 25px;
        gap: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        max-height: 0;
        overflow: hidden;
  }

  .navbar.active {
    max-height: 400px;
  }

  .menu-toggle {
    display: flex;
  }

  /* Animate menu icon */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}


    /* ========= HERO ========= */
  /* ---------- HERO SECTION ---------- */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero .container {
  max-width: 900px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 2.5rem;
  color: #111;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
}

.hero-btn {
  background: #007bff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-btn:hover {
  background: #0056d6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.25);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero {
    padding: 80px 20px;
  }

  .hero h2 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

    /* ========= TOOL SECTION ========= */
    .tool{
      background:#fff;
      border-radius:16px;
      box-shadow:0 10px 30px rgba(0,0,0,0.08);
      padding:40px;
      margin-top:-60px;
    }
    label{font-weight:600;margin-bottom:8px;display:block;color:#111}
    textarea,input[type="text"]{
      width:100%;
      padding:12px;
      border-radius:10px;
      border:1px solid #ddd;
      font-family:monospace;
      font-size:14px;
      margin-bottom:20px;
      resize:vertical;
    }
    textarea:focus,input:focus{border-color:#6366f1;outline:none;box-shadow:0 0 0 3px rgba(99,102,241,0.2)}

    .grid-2{display:grid;grid-template-columns:1fr 1fr;gap:20px}
    @media(max-width:768px){.grid-2{grid-template-columns:1fr}}

    .options{
      display:flex;flex-wrap:wrap;gap:12px;margin-bottom:25px;
    }
    .option{
      background:#f3f4f6;border:1px solid #e5e7eb;padding:8px 14px;
      border-radius:8px;cursor:pointer;font-size:14px;color:#111;
    }
    .option input{margin-right:8px}

    .btn{
      background:linear-gradient(135deg,#10b981,#3b82f6);
      color:#fff;font-weight:600;padding:12px 22px;
      border:none;border-radius:10px;cursor:pointer;
      transition:0.3s;
    }
    .btn:hover{box-shadow:0 6px 18px rgba(16,185,129,0.4)}

    .output{margin-top:30px;position:relative}
    #output{padding-right:110px}
    .copy-btn{
      position:absolute;top:38px;right:8px;background:#facc15;color:#111;
      padding:8px 16px;border:none;border-radius:8px;font-weight:600;cursor:pointer;
    }
    .copy-btn:hover{background:#eab308}

    .live-preview{
      margin-top:20px;background:#f9fafb;padding:20px;border-radius:10px;
      border:1px solid #e5e7eb;max-height:280px;overflow:auto;
    }

  /* ABOUT SECTION */
.about {
  background: #f9fafb;
  padding: 80px 20px;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #007bff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.about p {
  max-width: 750px;
  margin: 20px auto 0;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.about p:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* FOOTER */
footer {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #e5e7eb;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

footer a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #0056b3;
}

footer p {
  margin: 0;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .about {
    padding: 60px 15px;
  }

  .about p {
    padding: 20px;
    font-size: 1rem;
  }

  footer {
    padding: 30px 10px;
    font-size: 0.9rem;
  }
}

	
	/* ---------- LIVE PREVIEW STYLING ---------- */
.live-preview {
  margin-top: 40px;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  min-height: 100px;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.live-preview:empty::before {
  content: "Live preview of your generated links will appear here.";
  display: block;
  text-align: center;
  color: #999;
  font-size: 0.95rem;
  font-style: italic;
}

.live-preview a {
  display: inline-block;
  margin: 6px 8px;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  border-bottom: 1px solid transparent;
  word-break: break-word;
}

.live-preview a:hover {
  color: #0056d6;
  border-bottom: 1px solid #0056d6;
  text-shadow: 0 0 6px rgba(0, 123, 255, 0.2);
}

.live-preview ul {
  list-style-type: disc;
  padding-left: 25px;
}

.live-preview li {
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .live-preview {
    padding: 20px;
  }

  .live-preview a {
    display: block;
    margin: 8px 0;
    font-size: 1rem;
  }
}

/* BOXED LAYOUT */
body {
  background: #f3f4f6; /* light gray background */
  font-family: 'Inter', 'Poppins', sans-serif;
  color: #222;
  margin: 0;
  padding: 0;
}

/* Main container wraps everything */
.site-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Ensure sections inside have consistent spacing */
section {
  padding: 60px 40px;
}

@media (max-width: 768px) {
  .site-wrapper {
    margin: 20px 10px;
    border-radius: 12px;
  }

  section {
    padding: 40px 20px;
  }
}

/* OPTIONAL: Add soft fade-in animation for sections */
section {
  animation: fadeIn 0.6s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.seo-content {
  background: #fff;
  padding: 80px 20px;
  border-top: 1px solid #eee;
  text-align: left;
}

.seo-content h2, .seo-content h3 {
  color: #111;
  margin-bottom: 15px;
}

.seo-content h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.seo-content h3 {
  font-size: 1.3rem;
  margin-top: 30px;
}

.seo-content p {
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.seo-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.seo-content li {
  background: #f9fafb;
  border-left: 4px solid #007bff;
  padding: 10px 15px;
  margin: 10px 0;
  border-radius: 6px;
  font-size: 1rem;
  color: #333;
}

@media (max-width: 768px) {
  .seo-content {
    padding: 50px 15px;
  }
}
/* HERO SECTION */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  text-align: center;
  padding: 100px 20px 80px;
}

.hero .container {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.4rem;
  color: #111;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero .cta-btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero .cta-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.hero-sub {
  font-size: 0.95rem;
  color: #666;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 15px 60px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
/* FAQ SECTION */
.faq-section {
  background: #ffffff;
  padding: 80px 20px;
}

.faq-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-item {
  background: #f9fafb;
  border-left: 4px solid #007bff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 10px;
}

.faq-item p {
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 15px;
  }
}
/* ABOUT SECTION */
.about-section {
  background: #fff;
  padding: 80px 20px;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.about-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #111;
  margin-bottom: 30px;
  font-weight: 700;
}

.about-section p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-section .feature-list {
  margin: 20px 0;
  padding-left: 20px;
}

.about-section .feature-list li {
  margin-bottom: 10px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.about-section strong {
  color: #007bff;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 15px;
  }

  .about-section h2 {
    font-size: 1.6rem;
  }
}
/* FOOTER SECTION */
.footer {
  background: #0d1117;
  color: #f1f1f1;
  padding: 60px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-col h3, .footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #007bff;
}

.footer a {
  color: #007bff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 15px;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col h3, .footer-col h4 {
    margin-top: 20px;
  }
}
/* HERO SUB BADGES */
.hero-sub {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 0.95rem;
  color: #5b6b80;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease both;
}

/* Each pill-like badge */
.hero-sub .badge {
  display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 123, 255, 0.06);
    color: #004a99;
    padding: 1px 6px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(2, 6, 23, 0.04);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(0, 123, 255, 0.08);
    letter-spacing: 0.1px;
}

/* tiny SVG icons inherit text color */
.hero-sub .badge svg { 
  display: inline-block;
  vertical-align: middle;
  color: currentColor;
  opacity: 0.95;
}

/* dot divider for wide screens */
.hero-sub .divider {
  color: #c7d2e0;
  font-size: 1rem;
  margin: 0 4px;
  align-self: center;
  display: inline-block;
}

/* responsive: stack on very small screens */
@media (max-width: 420px) {
  .hero-sub {
    gap: 8px;
    font-size: 0.92rem;
  }
  .hero-sub .divider { display: none; }
  .hero-sub .badge { padding: 8px 10px; font-size: 0.95rem; }
}

/* small entrance animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
