
    /* General Styles */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      background-color: #f9f9f9;
      color: #333;
    }
    /* Header */
    header {
      background: #5175a2;
      color: white;
      text-align: center;
      padding: 20px 0;
    }
    header h1 {
      margin: 0;
      font-size: 2rem;
    }
    header p {
      margin: 5px 0 0;
      font-size: 1rem;
    }
    /* Navigation Bar */
    nav {
      background: #333;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px 0;
      flex-wrap: wrap; /* Allow wrapping for smaller screens */
    }
    nav a {
      color: white;
      text-decoration: none;
      margin: 0 15px;
      font-size: 1rem;
      white-space: nowrap; /* Prevent text from breaking into multiple lines */
    }
    nav a:hover {
      text-decoration: underline;
    }
    /* Hero Section */
    .hero {
      background: #d7dfea; /* Soft Pale Yellow Background */
      color: black; /* Black Text Color */
      text-align: center;
      padding: 20px 20px; /* Reduced padding for smaller height */
    }
    .hero h2 {
      font-size: 1.6rem; /* Slightly smaller font size */
      margin: 0;
    }
    .hero p {
      font-size: 1rem; /* Smaller font size */
      margin: 10px 0 20px;
    }

	
    /*
   .hero button {
      background: #007BFF;
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 1rem;
      border-radius: 5px;
      cursor: pointer;
    }
    .hero button:hover {
      background: #0056b3;
    }
	*/
	
	
	.hero h3 {
	  width: 400px;
	  margin: 0 auto;
      background: #5175a2;
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 1rem;
      border-radius: 5px;
      /*cursor: pointer;*/
    }
	
	
    /* Advertisement Sections */
    .ad-banner {
      text-align: center;
      margin: 20px 0;
    }
    .ad-banner ins {
      display: block;
      margin: 0 auto;
    }
    .ad-large {
      text-align: center;
      margin: 40px 0;
    }
    .ad-large ins {
      display: block;
      margin: 0 auto;
    }
    /* Main Section */
    .main-section {
      padding: 40px 20px;
      text-align: center;
    }
    .main-section h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
    .upload-box {
      background: white;
      border: 2px dashed #007BFF;
      border-radius: 15px;
      padding: 40px;
      margin: 20px auto;
      max-width: 600px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .upload-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    .upload-box i {
      font-size: 4rem;
      color: #007BFF;
      margin-bottom: 20px;
    }
    .upload-box p {
      font-size: 1rem;
      color: #666;
      margin-bottom: 20px;
    }
    .upload-box input[type="file"] {
      display: none;
    }
    .upload-box label {
      background: #007BFF;
      color: white;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
    }
    .upload-box label:hover {
      background: #0056b3;
    }
    /* Progress Bar */
    .progress-bar {
      width: 100%;
      max-width: 600px;
      margin: 20px auto;
      height: 10px;
      background: #e0e0e0;
      border-radius: 5px;
      overflow: hidden;
    }
    .progress-bar-fill {
      width: 0%;
      height: 100%;
      background: #007BFF;
      transition: width 0.5s ease;
    }
    /* Buttons */
    .add-more-btn, .download-btn {
      background: #28A745;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
      margin-top: 20px;
      display: none; /* Hidden by default */
      margin-left: auto;
      margin-right: auto;
    }
    .add-more-btn:hover, .download-btn:hover {
      background: #218838;
    }
    
	
	/* Footer
    footer {
      background: #333;
      color: white;
      display: flex;
      justify-content: center; /* Center-align footer content *
      align-items: center;
      padding: 20px;
      flex-wrap: wrap; /* Allow wrapping for smaller screens *
    }
    footer p {
      margin: 0;
      font-size: 0.9rem;
      margin-right: 20px; /* Add spacing between copyright and links *
    }
    footer .footer-links {
      display: flex;
      gap: 15px; /* Space between links *
    }
    footer .footer-links a {
      color: white;
      text-decoration: none;
      font-size: 0.9rem;
    }
    footer .footer-links a:hover {
      text-decoration: underline;
    }
   */
  
  
   footer {
      background: #333;
      color: white;
      display: flex;
      justify-content: center; /* Center-align footer content */ 
      align-items: center;
      padding: 20px;
      flex-wrap: wrap; /* Allow wrapping for smaller screens */
    }
    footer p {
      margin: 0;
	  text-align: left;
	  font-size: 0.9rem;
      margin-right: 20px; /* Add spacing between copyright and links */
    }
    footer .footer-links {
      display: flex;
      gap: 15px; /* Space between links */
	  margin-left: 20px
    }
    footer .footer-links a {
      color: white;
      text-decoration: none;
      font-size: 0.9rem;
    }
    footer .footer-links a:hover {
      text-decoration: underline;
    }
	