body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

.navbar {
  background: rgb(98 114 115 / 80%);
  backdrop-filter: blur(10px);
}

.navbar .logo {
  height: 55px;
}

/* ---------- Base Styles ---------- */
.hero-section {
  position: relative;
  height: 110vh;
  background: url('../images/hero-banner3.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
/*  bottom: -56px;*/
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Canvas (optional background effects) */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 700px;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease-out forwards;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-top: 1rem;
  opacity: 0.9;
}

.btn-primary {
  background: #ff6b00;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #ffa000;
  transform: translateY(-3px);
}

/* ---------- Floating Elements ---------- */
.floating-item {
  position: absolute;
  z-index: 2;
  width: 150px;
  animation: float 6s ease-in-out infinite;
  opacity: 0.85;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.float1 { bottom: 15%; left: 20%; animation-delay: 0s; }
.float2 { bottom: 15%; right: 15%; animation-delay: 2s; }
.float3 { top: 30%; right: 5%; animation-delay: 4s; }

.brand-logo {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
  color: #c8c9c8;
  font-size: 56px;
}

/* ---------- Animations ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
/*@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .floating-item { width: 80px; }
}*/
/* ---------- Tablet (<= 992px) ---------- */
@media (max-width: 992px) {
  .floating-item {
    width: 120px;
    opacity: 0.9;
  }
  .float1 { bottom: 10%; left: 10%; }
  .float2 { bottom: 10%; right: 10%; }
  .float3 { top: 25%; right: 5%; }
  .brand-logo {
    font-size: 42px;
    top: 18%;
  }
}

/* ---------- Mobile (<= 768px) ---------- */
@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
    background-position: center top;
  }
  .floating-item {
    width: 100px;
    opacity: 0.9;
    animation: float 7s ease-in-out infinite;
  }
  .float1 { bottom: 30%; left: 8%; }
  .float2 { bottom: 20%; right: 8%; }
  .float3 { top: 54%; right: 5%; }
  .brand-logo {
    font-size: 40px;
    top: 29%;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .btn-primary {
    padding: 0.6rem 1.6rem;
    font-size: 1rem;
  }
  #convert img {
    
    max-width: 340px!important;}
  #convert {
 
  height: 110vh!important;
}
}

/* ---------- Convert Section ---------- */
#convert {
  position: relative;
  height: 115vh;
  background: #1c1c1c;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

#convert .container {
  max-width: 900px;
}

#convert img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* Initially hidden button */
.convert-btn {
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: all 1s ease;
}

/* When active section */
#convert.show-btn .convert-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Optional subtle glow to attract attention */
#convert.show-btn .convert-btn {
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  0% { box-shadow: 0 0 10px #ff6b00; }
  100% { box-shadow: 0 0 25px #ffa000; }
}



.templates-section {
  background: #f9fafc;
  padding: 100px 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
}

.section-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  justify-items: center;
}

.template-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.template-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.template-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.template-card:hover img {
  transform: scale(1.1);
}

.template-info {
  padding: 20px;
  text-align: left;
}

.template-category {
  display: inline-block;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 8px;
}

.template-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
}

.template-info p {
  color: #666;
  font-size: 0.95rem;
  margin-top: 6px;
  margin-bottom: 15px;
}

.template-buttons {
  display: flex;
  gap: 10px;
}

.btn-template {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-preview {
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
}

.btn-preview:hover {
  background: #f1f1f1;
}

.btn-use {
  background: #ff6b00;
  color: #fff;
  border: none;
}

.btn-use:hover {
  background: #ff8c33;
}

.pricing-card {
  background: #161b22;
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.4s;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  color: #fff;
}
.pricing-section {
  position: relative;
  padding: 120px 0;
  background: radial-gradient(circle at top right, #f5f7ff, #ffffff 50%);
  overflow: hidden;
}

.pricing-section::before,
.pricing-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  z-index: 0;
}

.pricing-section::before {
  background: #ff8c33;
  top: -100px;
  left: -100px;
}

.pricing-section::after {
  background: #007bff;
  bottom: -100px;
  right: -100px;
}

.section-title {
  
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 50px;
  z-index: 2;
  position: relative;
}

.pricing-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  z-index: 2;
  position: relative;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  width: 320px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #ff7a00, #ff3c00);
  color: #fff;
  box-shadow: 0 15px 40px rgba(255, 100, 0, 0.4);
}

.pricing-card.featured .btn-pricing.btn-primary {
  background: #fff;
  color: #ff3c00;
}

.pricing-card.featured .btn-pricing.btn-primary:hover {
  background: #ffe6d6;
}

.pricing-card.featured .tag {
  position: absolute;
  top: 20px;
  right: -45px;
  background: #fff;
  color: #ff3c00;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 60px;
  transform: rotate(45deg);
}

.pricing-card .card-header h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing-card .price span {
  font-size: 2.2rem;
  font-weight: 800;
}

.pricing-card.featured .price span {
  color: #fff;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.features li {
  padding: 8px 0;
  font-size: 1rem;
  color: #555;
}
/* Features */
    #features{padding:80px 20px;background:#f3f4f6}
    .feature-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:30px;max-width:1100px;margin:auto;text-align:center}
    .feature-card{padding:20px;border-radius:16px;background:#fff;box-shadow:0 6px 30px rgba(0,0,0,0.05)}
    .feature-card h5{margin-top:14px;font-weight:600}
.pricing-card.featured .features li {
  color: #fff;
}

/* ---------- Pricing Buttons ---------- */
.btn-pricing {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-pricing.btn-primary {
  background: #ff6b00;
  color: #fff;
  border: none;
}

.btn-pricing.btn-primary:hover {
  background: #ff8533;
}

.btn-pricing.btn-outline {
  border: 2px solid #ff6b00;
  color: #ff6b00;
  background: transparent;
}

.btn-pricing.btn-outline:hover {
  background: #ff6b00;
  color: #fff;
}

@media (max-width: 992px) {
  .pricing-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.site-footer {
  background: #0b0d17;
  color: #ccc;
  padding: 70px 0 40px;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links h5,
.footer-contact h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ff6b00;
}

.footer-contact p a {
  color: #ff6b00;
  text-decoration: none;
  font-weight: 500;
}

.footer-contact p a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a1d29;
  color: #ff6b00;
  text-align: center;
  line-height: 36px;
  margin-right: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #ff6b00;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding-top: 25px;
  color: #888;
  font-size: 0.9rem;
}