  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #f0f0f0;
      min-height: 100vh;
      color: #333;
    }

    /* Header */
    .header {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      padding: 1rem 2rem;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      background: #17863E;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav-toggle {
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #223;
      padding: 0.2rem;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .nav-toggle:hover {
      background: rgba(102, 126, 234, 0.1);
    }

    .header-actions {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .btn-primary {
      background:#fff;
      color: #224;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }

    /* Sliding Navigation */
    .side-nav {
      position: fixed;
      top: 0;
      left: -300px;
      width: 300px;
      height: 100vh;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      transition: left 0.3s ease;
      z-index: 1001;
      padding: 2rem 0;
      box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    }

    .side-nav.open {
      left: 0;
    }

    .side-nav-header {
      padding: 0 2rem;
      margin-bottom: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .close-nav {
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #222;
    }

    .nav-links {
      list-style: none;
    }

    .nav-links li {
      padding: 0;
    }

    .nav-links a {
      display: block;
      padding: 1rem 2rem;
      color: #333;
      text-decoration: none;
      transition: all 0.3s ease;
      border-left: 3px solid transparent;
    }

    .nav-links a:hover {
      background: rgba(102, 126, 234, 0.1);
      border-left-color: #17863E ;
    }

    .nav-links a.active {
      background:#fff;
     
      font-weight: 600;
    }

    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:rgba(102, 126, 234, 0.15);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Main Content */
    .main-content {
      margin-top: 100px;
      padding:2px;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-section {
      text-align:left;
      padding:5px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius:0px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
 
    .hero-section h1 {
      font-size: 2rem;
      font-weight: 800;
      background: #222;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
 
      padding:10px;
    }

    .hero-section p {
      font-size: 1.2rem;
      color: #666;

      padding:10px;
    }

    /* Input Section */
    .input-section {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius:0px;
      padding:10px;
      margin-bottom:20px ;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .input-container {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    #inputText {
      width: 100%;
      padding: 1rem;
      border: 2px solid #e1e5e9;
      border-radius: 12px;
      font-size: 1.1rem;
      resize: vertical;
      min-height: 120px;
      transition: all 0.3s ease;
      font-family: inherit;
    }

    #inputText:focus {
      outline: none;
      border-color: #17863E ;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    .controls {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 1rem;
    }

    .control-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .control-group label {
      font-weight: 600;
      color: #333;
      font-size: 0.9rem;
    }

    .control-group input[type="range"] {
      width: 80%;
      height: 6px;
      border-radius: 3px;
      background: #e1e5e9;
      outline: none;
      appearance: none;
    }

    .control-group input[type="range"]::-webkit-slider-thumb {
      appearance: none;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #17863E ;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    }

    .control-group input[type="color"] {
      width: 100%;
      height: 40px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }

    /* Font Cards Grid */
    .fonts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .font-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius:0px;
      padding:2.5px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .font-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    .font-label {
      font-weight: 600;
      color:  #121313e3;
      margin-bottom: 1rem;
      font-size: 1.1rem;
    }

    .preview-box {
      background: #f8f9fa;
      border: 0px solid #e1e5e9;
      border-radius:0px;
      padding: 2rem;
      margin-bottom: 1.5rem;
      min-height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      word-break: break-word;
      transition: all 0.3s ease;
    }

    .preview-box:hover {
      border-color: #17863E ;
      background: rgba(102, 126, 234, 0.05);
    }

    .card-actions {
      display: flex;
      gap: 0.75rem;
      flex-direction: row;
    }

    .btn-download {
      flex: 1;
      min-width: 120px;
      background: #fff;
      color: #222;
      border: none;
      padding: 0.75rem 1rem;
      border-radius:0px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }

    .btn-download:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    }

    .btn-download.secondary {
      background: #2AA1A9);
    }

    .btn-download.secondary:hover {
      box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
    }

    /* Pagination */
    .pagination {
      display: flex;
      justify-content: center;
      flex-wrap:wrap;
      gap: 0.5rem;
      margin: 3rem 0;
    }

    .pagination a {
      padding: 0.75rem 1rem;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 10px;
      text-decoration: none;
      color: #333;
      font-weight: 600;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .pagination a:hover,
    .pagination a.active {
      background: linear-gradient(45deg, #17863E , #2aa1a9);
      color: white;
      transform: translateY(-2px);
    }

    /* Footer */
    .footer {
      background: #ffffff;
      backdrop-filter: blur(10px);
      margin-top: 4rem;
      padding: 3rem 2rem 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .footer-section h3 {
      color: #333;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 0.5rem;
    }

    .footer-section a {
      color: #666;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-section a:hover {
      color: #17863E ;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid #e1e5e9;
      color: #666;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: linear-gradient(45deg, #17863E , #2aa1a9);
      color: white;
      border-radius: 50%;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .header-content {
        padding: 0;
      }

      .hero-section h1 {
        font-size: 2rem;
      }

      .main-content {
        padding:10px;
      }

      .input-container {
        grid-template-columns: 1fr;
      }

      .controls {
        grid-template-columns: 1fr;
      }

      .fonts-grid {
        grid-template-columns: 1fr;
      }

      .card-actions {
        flex-direction: row;
      }

      .btn-download {
        min-width: auto;
      }
    }

.others{padding:10px 27px;} 

/* Section styling */
 section,{
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin: 30px auto;
  max-width:1000px;
}

/* Headings */
section h2 {
  font-size: 26px;
  color: #2b2b2b;
  margin-bottom: 15px;
  border-left: 6px solid #4491C5;
  padding-left: 12px;
}

section h3 {
  font-size: 20px;
  margin-top: 20px;
  color: #444;
}

/* Paragraphs and ordered list */
section p {
  font-size: 16px;
  margin-bottom: 15px;
}

section ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

section ol li {
  margin-bottom: 10px;
}

/* Emphasize bold text */
section strong {
  color: #666666;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  section {
    padding: 20px;
  }

  section h2 {
    font-size: 22px;
  }

  section h3 {
    font-size: 18px;
  }

  section p,
  section ol li {
    font-size: 15px;
  }
}

.container{
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin: 30px auto;
  max-width:1500px;
}

.others{padding:10px 27px;}
