body{font-family:sans-serif;margin:0;background:#f4f6f9;color:#333;}
    .header{background:#fff;border-bottom:2px solid #cfd6ce;padding:10px 0;}
    .main-menu{max-width:1200px;margin:auto;display:flex;justify-content:space-between;align-items:center;padding:0 15px;}
    .logo{font-size:22px;color:#29292f;font-weight:bold;text-decoration:none;}
    .menu-icon{font-size:28px;cursor:pointer;color:#29292f;}
    .sidenav{height:100%;width:0;position:fixed;z-index:99999;top:0;left:0;background:#fafafa;overflow-x:hidden;transition:.4s;padding-top:60px;box-shadow:2px 0 10px rgba(0,0,0,.1);}
    .sidenav a{padding:10px 15px 10px 32px;font-size:19px;color:#222;display:block;transition:.3s;text-decoration:none;}
    .sidenav a:hover{color:#2A80B9;}
    .sidenav .closebtn{position:absolute;top:15px;right:25px;font-size:36px;color:#888;cursor:pointer;}
    .container{max-width:1000px;margin:30px auto;padding:25px;background:#fff;border-radius:0px;box-shadow:0 4px 15px rgba(0,0,0,.08);}
    h1{color:#222;text-align:left;margin-bottom:20px;font-size:20px;}
    textarea{width:98%;height:90px;padding:12px;font-size:1.1em;border:1px solid #ccc;border-radius:6px;margin-bottom:15px;resize:vertical;}
    .controls{margin-bottom:25px;text-align:center;}
    .controls label{display:inline-block;margin:8px 12px;font-weight:600;}
    .controls input[type="range"]{width:120px;}
    .preview-box{border:1px solid #ddd;margin:10px 0;padding:35px;text-align:center;white-space:pre-wrap;border-radius:0px;background:#fff;position:relative;}
    .font-label{font-weight:bold;margin:75px 0 8px;color:#222;font-size:1.1em;}
    .download-buttons{float:right;margin-top:8px;}
    .download-buttons button{margin-left:6px;padding:6px 12px;font-size:13px;}
    button{padding:7px 14px;background:#f0f0f0;border:1px solid #ccc;border-radius:5px;cursor:pointer;font-size:14px;}
    button:hover{background:#e0e0e0;}
    .pagination{text-align:center;margin:65px 0;width:100%; gap: 8px; display: flex; display:flex;flex-wrap:wrap;justify-content:center;gap:8px;}
    .pagination a{display:inline-block;padding:9px 16px;margin:0 5px;text-decoration:none;color:#222;border:1px solid #222;border-radius:5px;font-size:15px;}
    
    .pagination a.active{background:#29292f;color:#fff;pointer-events:none;border:0px solid #2A80B9;}
    .site-footer {
  background-color: #fff;
  color: #080000;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.footer-content h3,
.footer-content h4 {
  color: #222;
}

.footer-left p {
  max-width: 300px;
  font-size: 0.95em;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #302f31;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-social a {
  color:#302f31;
  text-decoration: none;
  font-size: 0.95em;
}

.footer-social a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85em;
  color: #999;
  border-top: 1px solid #333;
  padding-top: 15px;
}

/* ===== NEW: Quick actions (buttons) ===== */
.quick-actions-wrap{
  background: #ffffff;
  border-bottom: 1px solid #e6e9ec;
  padding: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.quick-actions{
  max-width:1200px;
  margin:0 auto;
  padding:0 15px;
  display:flex;
  gap:12px;
  justify-content:flex-start;
  align-items:center;
  flex-wrap:wrap;
}
.action-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:10px;
  border:1px solid #2A80B9;
  background:transparent;
  color:#2A80B9;
  font-weight:600;
  text-decoration:none;
  cursor:pointer;
  transition:all .15s ease;
  font-size:14px;
}
.action-btn:hover, .action-btn:focus{
  background:#2A80B9;
  color:#fff;
  transform:translateY(-2px);
  outline:none;
  box-shadow:0 6px 18px rgba(42,128,185,0.12);
}
.action-btn .icon{
  display:inline-block;
  font-size:16px;
  width:18px;
  text-align:center;
}

/* small screen adjustments */
@media(max-width:768px){
  .quick-actions{justify-content:center;}
  .action-btn{flex:1 1 calc(33% - 12px); min-width:120px; text-align:center;}
  .container{padding:20px 15px;}

  /* Make pagination responsive and centered on small screens */
.pagination{
  display:flex;
  flex-wrap:wrap;         /* allow items to wrap neatly */
  justify-content:center; /* center the row */
  gap:8px;                /* consistent space between buttons */
  padding:10px 0;
  margin:30px 0;          /* reduce large vertical space on mobile */
  width:100%;
  box-sizing:border-box;
}

/* Make each link a consistent, touch-friendly button */
.pagination a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:48px;         /* ensures Prev/Next have similar visual weight */
  padding:8px 12px;
  margin:0;               /* remove previous left/right margins that caused uneven spacing */
  border-radius:6px;
  text-align:center;
  box-sizing:border-box;
}

/* Keep active look intact and keep it unclickable */
.pagination a.active{
  background:#2A80B9;
  color:#fff;
  pointer-events:none;
  border-color:#2A80B9;
}

/* Make Prev/Next a little wider so arrows + text fit neatly */
.pagination a:first-child,
.pagination a:last-child{
  min-width:72px;
  padding-left:12px;
  padding-right:12px;
}

/* Optional: slightly smaller font on small screens */
@media(max-width:420px){
  .pagination a{ font-size:14px; min-width:44px; padding:7px 10px; }
  .pagination a:first-child,
  .pagination a:last-child{ min-width:64px; }
}

}

/* rest of original responsive rules */
    @media(max-width:768px){
    textarea{width:94%;height:90px;padding:12px;font-size:1.1em;border:1px solid #ccc;border-radius:6px;margin-bottom:15px;resize:vertical;}
      .hero h1{font-size:32px;}
      .hero p{font-size:16px;}
      .container{padding:25px;margin:30px 15px 30px;}
      .controls{flex-direction:column;gap:15px;}
      .font-header{flex-direction:column;gap:10px;}
      .download-buttons{width:100%;justify-content:center;
    
      }
    }
    
    h2{margin: 8px 25px;
    border-top: 1.2px solid #eee;
    border-bottom: 1.2px solid #eee;
    font-weight: 500;
    font-size: 20px;}
    
    /* ===== Base Styles ===== */

section {
  padding: 10px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== Headings & Text ===== */
 h2, h3 {
  
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

p {
  color: #555;
  font-size: 1.05rem;
  margin-top: 8px;
}

ul, ol {
  color: #555;
  font-size: 1.05rem;
  padding-left: 20px;
}

strong {
  color: #000;
}

/* ===== Hero Section ===== */
.hero {
  text-align: center;
  background: #f8fafc;
  border: 1px solid #e4e7eb;
  border-radius: 16px;
  padding: 80px 25px;
  margin-top: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.hero h1 {
  font-size: 2.5rem;
  color: #222;
}

.hero p {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  color:#2A80B9;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.25s ease;
  border: 2px solid #2A80B9;
}

.cta-button:hover {
  background: #fff;
  color: #2A80B9;
  transform: translateY(-2px);
}

/* ===== Features Section ===== */
.features {
  background: #ffffff;
  border-top: 3px solid #2A80B9;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

.features h2 {
  text-align: center;
  margin-bottom: 30px;
}

.features ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0;
}

.features li {
  background: #f8fafc;
  border: 1px solid #e6e9ec;
  border-radius: 12px;
  padding: 18px 20px;
  color: #444;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(42, 128, 185, 0.15);
}

@media (min-width: 768px) {
  .features ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

 .container1 {
            max-width: 900px;
            margin: auto;
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
         
       
        .faq p {
            margin-bottom: 15px;
            text-align: justify;
        }
        .container1 ul {
            list-style: none;
            padding-left: 0;
        }
        .container1 ul li {
            background: #e9ecef;
            margin-bottom: 8px;
            padding: 10px;
            border-radius: 5px;
            border-left: 3px solid #28a745;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border: 5px solid #ddd;
            border-radius: 8px;
        }
        .caption {
            font-style: italic;
            margin-top: 10px;
            color: #555;
        }

        .note {display: block; margin-top: 20px; font-size: 24px; color: #29292f; font-weight: 600;}

    .steps{display:grid;gap:12px;margin-top:14px ; padding:20px; border-radius:10px; background: #fff; box-shadow:0 4px 15px rgba(10, 9, 9, 0.08); }
    .steps .content{display:flex;gap:12px;justify-content: center; align-items: center;flex-direction: column; text-align: center; padding: 15px;}
    .steps h1{margin:0;font-size:42px;color: #2A80B9;font-weight:700; text-decoration: underline; }
    .steps p{margin:6px 0 0;color:var(--muted); font-size: 18px;}
    .steps .video {border-radius:10px;box-shadow:0 18px 40px rgba(29, 32, 26, 0.897), 0 6px 16px rgba(219, 136, 12, 0.705); border-color: #eb8a0b;; max-width:100%;}
