 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Segoe UI', sans-serif;
     
 }


 /* para means paragraph for page */

 
.para {
    display: flex;
    justify-content: center;
    padding: 10px;
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
}

.para h3 {
   
    line-height: 1.6;
    color: darkblue;
}


 /* heading design of watermark in pdf */

 .heading {
     padding: 13px;
     text-align: center;
     background: linear-gradient(to right, #11386b, #0d00c1, #2f80ed);
     color: white;
     animation: slideDown 1s ease-out;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
 }


 @keyframes slideDown {
     from {
         transform: translateY(-50px);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }


 .heading h1 {
     font-size: 2rem;
 }


 /* main box design means the whole box part design in which the overall labels input field and buttons are placed */
/*
 #mainBox {
 
     max-width: 900px;
     margin: 4rem auto;
     background: #ffffff;
     border-radius: 20px;
     padding: 5rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     animation: fadeInZoom 0.9s ease-in;
     height: auto;
 }
*/

 
 /* iske andr 2 add left right me or bich me mainbox aayega */
 
 .page-container {
     display: flex;
    justify-content: space-between; /* Ads ko corners pe bhej dega */
    align-items: flex-start;
    width: 100%; /* Full page width */
    max-width: 100%; /* Ensure it takes full space */
    gap: 20px;
}

.ad {
    width: 200px; /* Ad ka width */
    height: 500px;
    margin: 10px 0;
}



/* Main content center me 

 /* Main content */
#mainBox {
    flex: 1; /* Baki ka space le */
    max-width: 1000px; /* Large screen limit */
    background: #ffffff;
    border-radius: 20px;
    padding: 5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 5rem 0;
    animation: fadeInZoom 0.9s ease-in;
}


 @keyframes fadeInZoom {
     from {
         opacity: 0;
         transform: scale(0.96);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }
 
 
 .file-size{
 	margin:20px 0;
 	font-size: 18px;
 }


 /*  all labels and text , input design */

 label {
     display: block;
     margin: 1rem 0 0.5rem;
     font-weight: bold;
     color: #2f80ed;
 }


 input[type="text"],
 input[type="file"],
 select,
 input[type="color"] {
     width: 100%;
     padding: 0.8rem;
     border: 2px solid #ccc;
     border-radius: 10px;
     background: #fff;
     font-size: 1rem;
     outline: none;
 }



 input[type="range"] {
     width: 100%;
     accent-color: #2f80ed;
 }


 /* in it all tags are placed watermark text color opacity poistion and submit button */

 .form-section {
     display: none;
     animation: fadeIn 0.6s ease-in-out;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }


 .form-section.active {
     display: block;
 }


 
 
 /* small screen */
 
 
/* 950px ke niche left ad hide */
 

  @media (max-width: 950px) {
     
     #mainBox {
         margin: 3rem;
     }
     
     .left-ad {
        display: none;
    }
    
    .right-ad {
    height: 400px;
	}

 }

 @media (max-width: 768px) {
     .tabs {
         flex-direction: column;
         align-items: center;
     }

     #mainBox {
         margin: 2rem;
         padding: 5rem 1.5rem;
     }

     .heading h1 {
         font-size: 1.5rem;
     }
 }


 @media (max-width: 600px) {
 
	 .para{
	 	font-size: 15px;
	 }
 }



 @media (max-width: 480px) {
 
	 .para{
	 	font-size: 10px;
	 }
 }
 
 
 

/* 500px ke niche ads niche aa jayein */

@media (max-width: 700px) {
    .page-container {
        flex-direction: column;
        align-items: center;
    }
    .ad {
        width: 80%;
        height: 150px;
    }
}

