body {
  font-family: 'Inter', sans-serif;
  margin: 0;
}

/* Header styling */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  top: 0;
  z-index: 1000;
  position: relative;
}
.main-header .logo-link {
  font-size: 45px !important; /* force size */
  line-height: 1; /* prevent extra spacing issues */
}

.logo-link {
  font-family: 'Marck Script', cursive;
  font-size: 60px;
  color: #ff5e66;
  letter-spacing: -0.08em;
  text-decoration: none;
}


/* Navigation Menu */
.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-item {
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav-item:hover {
  background-color: #f1f1f1;
}

.nav-item.active {
  background-color: #ff5e66;
  color: #fff;
  font-weight: bold;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #333;
}

/* Mobile menu hidden by default */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; /* below header */
    right: 20px;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 200px;
  }

  .nav-menu.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* Main content and other sections remain unchanged */
.main-content {
  padding: 40px;
  text-align: center;
  color: #333;
  font-size: 18px;
}

.hero {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(to right, #161616, #282828);
  color: white;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.upload-box {
  margin: 40px auto;
  text-align: center;
  background: #ffffff;
  padding: 30px;
  border: 2px dashed #4facfe;
  max-width: 500px;
  border-radius: 12px;
}

.upload-box input[type="file"] {
  margin-top: 10px;
}

.upload-box button {
  background-color: #00df4a;
  border: none;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  margin-top: 20px;
  border-radius: 6px;
  cursor: pointer;
}

.upload-box .upload-note {
  margin-top: 10px;
  color: #888;
  font-size: 14px;
}

/* Loader Overlay */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

/* Spinner Animation */
.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #00bfff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-overlay p {
  color: white;
  font-family: sans-serif;
  font-size: 16px;
  margin-top: 10px;
}

.preview-section {
  text-align: center;
  margin: 60px 20px;
}

.preview-section img {
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.download-btn {
  margin-top: 20px;
}

.download-btn button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.ad-section {
  margin: 40px;
  text-align: center;
  font-style: italic;
  color: #555;
}

.other-tools {
  background-color: #1e1e1e; /* dark grey */
  padding: 60px 20px;
  max-width: 100%;
  margin: auto;
  color: white;
}

.tool {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}

.tool.reverse {
  flex-direction: row-reverse;
}

/* Tool Images - Responsive */
.tool-img img {
  width: 100%;       /* scale to container width */
  max-width: 700px;  /* keep original max width */
  height: auto;      /* maintain aspect ratio */
  border-radius: 30px;
}
.tool-text {
  max-width: 500px;
}

.tool-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.tool-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.tool-text a {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.8s ease;
}

.tool-text a:hover {
  background: #0056cc;
}

/* Coming Soon Animation */
.coming-soon-box {
  text-align: center;
  padding: 30px 20px;
  margin-top: 10px;
  position: relative;
}

.coming-soon-box .cs-image {
  width: 100%;
  max-width: 1200px;
  border-radius: 14px;
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

/* Moving Gradient Overlay */
.coming-soon-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 140%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 0% 0%, 
      rgba(255, 0, 120, 0.35), 
      rgba(0, 130, 255, 0.25),
      rgba(255, 255, 255, 0)
  );
  filter: blur(80px);
  animation: gradientMove 6s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}

/* ======================================================
   ⭐ Sticky Ads (Top + Bottom) — Updated (NO animation for top)
====================================================== */
/* ======================================================
   ⭐ Sticky Ads (Top + Bottom) — Updated
====================================================== */

/* Shared styling */
.top-sticky-ad,
.bottom-sticky-ad {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 900px;
  background: #ffffff;
  padding: 10px;
  border-radius: 18px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.25);
  z-index: 9999;
}

/* ⭐ TOP Sticky AD — under header (NO animation) */
.top-sticky-ad {
  top: 90px;   /* <-- this puts it right below your header */
  opacity: 1;
}

/* ⭐ Bottom sticky with animation (same as before) */
.bottom-sticky-ad {
  bottom: -100px;
  opacity: 0;
  animation: slideUpSticky 2s ease-out forwards;
}

@keyframes slideUpSticky {
  0% {
    bottom: -100px;
    opacity: 0;
  }
  100% {
    bottom: 15px;
    opacity: 1;
  }
}

.close-sticky {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #000;
  color: #fff;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  z-index: 99999;
  opacity: 0.8;
}

.close-sticky:hover {
  opacity: 1;
}

/* Prevent content hiding */
body {
  padding-bottom: 60px;
}


/* ======================================================
   ⭐ Side Ads — Responsive Vertical
   (Only around Coming-Soon Poster)
====================================================== */
.tools-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 10px;
}

.side-ad-vertical {
  width: 160px;        /* Google auto chooses final size */
  max-width: 100%;
}

/* Hide side ads on small screens */
@media (max-width: 1024px) {
  .side-ad-vertical {
    display: none;
  }
}

/* ======================================================
   ⭐ Coming Soon Box Wrapper
====================================================== */
.coming-wrapper {
  width: 100%;
  max-width: 700px;
}

/* ======================================================
   ⭐ Banner Ad Blocks
====================================================== */
.banner-ad {
  max-width: 900px;
  margin: 25px auto;
  text-align: center;
}

.adsbygoogle {
  margin: 0 auto;
}


/* Float Effect */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Smooth gradient movement */
@keyframes gradientMove {
  0% {
    transform: translate(-50%, -50%) scale(1);
    background-position: 0% 0%;
  }
  50% {
    transform: translate(-45%, -45%) scale(1.15);
    background-position: 100% 50%;
  }
  100% {
    transform: translate(-55%, -55%) scale(1);
    background-position: 50% 100%;
  }
}

footer {
  text-align: center;
  padding: 20px;
  background: #171717;
  color: #555;
  font-size: 14px;
}

.footer-legal {
  margin-left: 15px;
  color: #0077ff;
  text-decoration: none;
  font-weight: 600;
}

.footer-legal:hover {
  text-decoration: underline;
}


