/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f7fa;
    color: #333;
	background-position: center;
    background-repeat: repeat;
}

/* Header Styling */
/* Header container */
header {
    background: #fff;
    text-align: center;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06), 0 1px 0 rgba(0,0,0,0.04);
}

.header-top {
  position: relative;
  padding: 15px 0;
}

/* Logo */
.logo {
  display: inline-block;
}
.logo img {
  width: 200px;
  height: auto;
}

@media (max-width: 450px) {
    .logo img {
    width: 160px;
	margin-right: 10px;
  }
}

/* Navigation */
nav {
    width: 100%;
    border-top: 1px solid #eee;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
}

nav li {
    flex: 1; /* each takes 50% */
}

nav a {
    display: flex;
    align-items: center;
    justify-content: center; /* center icon + text */
    gap: 8px; /* space between icon and text */
    padding: 12px 0;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    color: #333;
    transition: background 0.3s ease, color 0.3s ease;
    border-left: 1px solid #d7e3ea;
}

.navicon {
    width: 20px;
    height: 20px;
}

/* Hover */
nav a:hover {
    background: #f2f6ff;
    color: #0073e6;
}

/* Active link */
nav a.active {
    background: #f2f6ff;
    color: #167cd1;
}

/* Language dropdown positioned on top-right */
.language-menu {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}

.lang-btn {
	background: #f4f7fa;
    color: #333;
    border: 0px solid #d7e3ea;
    border-radius: 5px;
    padding: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
  background: #eef4ff;
  color: #0073e6;
}

/* Dropdown list */
.lang-list {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: none;
  min-width: 150px;
  z-index: 10;
}

.lang-list li a {
  display: block;
  padding: 8px 14px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
  text-align:left;
}

.lang-list li a:hover {
  background: #f2f6ff;
  color: #0073e6;
}

/* Show dropdown when active */
.language-menu.active .lang-list {
  display: block;
}

.breadcrumb {
    margin: 10px 0px 10px 25px;
	font-size: 12px;
	letter-spacing: 0.5px;
	color:#fff;
}
.breadcrumb a{
	color: #fff;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: 1px solid #6b9bc2;
}
@media (max-width: 600px) {
  .language-menu {
    margin-right: -10px;
  }
}
@media (max-width: 450px) {
  .language-menu {
    margin-right: -18px;
  }
  .lang-btn {
	 padding: 4px;
    font-size: 12px;
  }
}

/* Content Wrapper */
.container {
    padding: 10px 25px;
	margin-bottom: 25px;
	text-align:center;
    display: inline-block;
	width: 1000px;
    max-width: 100%;
}

/* Content Area Styling */
.content {
    flex: 0 1 70%;
    padding: 20px;
    background-color: #fff;
	border-radius: 15px;
	text-align:center;
	line-height: 25px;
	box-shadow: 0 1px 2px #ddd;
    border-radius: 7px;
	border-top: 4px solid #d8e1e4;	
}

@media (max-width: 1040px) {
    .content {
        flex: 1 1 68%;
    }
}

@media (max-width: 768px) {
    .content {
        flex: 1 1 100%;
    }
}

.page-title {
	text-align: center;
	font-size: 25px;
	margin: 20px;
	color: #7189a2;
    text-transform: capitalize;
}

/* Footer Styling */
footer {
    padding: 15px;
    text-align: center;
    background: #444;
    width: 100%;
    font-size: 14px;
    line-height: 30px;
    color: #aaa;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .075);
    margin-top: 20px;
    display: inline-block;
	background-position: center;
    background-repeat: repeat;	

}

.footer-menu a {
    color: #ddd;
    letter-spacing: 0.5px;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px dashed #777;
    padding-bottom: 0px;
    margin: 0 7px 10px 7px;
    display: inline-block;
}

.des {
  margin-bottom: 10px;
  color: #7590ac;
  letter-spacing: 0.8px;
  font-size: 14px;
  text-align: center;
  line-height: 25px;
}
.about {
	text-align: left;
    width: 1100px;
    max-width: 100%;
    display: inline-block;
    line-height: 25px;
    background: #fefefe;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    font-size: 14px;
    letter-spacing: 0.4px;
	margin: 10px;
	color:#454c4f;
	box-shadow: 0 15px 30px rgba(74, 165, 242, 0.1);
}
.about li {
    list-style: inside;
    line-height: 30px;
}
.detail-head {
    margin: 15px 0 7px 0;
    font-size: 20px;
    border-left: 4px solid #f04e45;
    padding-left: 15px;
}

.main {
    text-align: center;
	height: auto !important;
}
span.disclaimer {
    background: #e8fad7;
    padding: 5px 15px;
    border-radius: 50px;
    display: block;
}
a.midlink {
	background: #fafbfe;
    border-radius: 30px;
    margin: 8px 5px;
    display: inline-block;
    padding: 7px;
    text-decoration: none;
    font-size: 13px;
    color: #333;
    width: 101px;
    letter-spacing: 0.8px;
}
.midhead{
	color: #777;
    font-size: 22px;
    margin-bottom: 7px;
}
.sublist {
    margin-left: 25px;
    margin-bottom: 15px;
	font-size: 14px;
}
.paraline {
    line-height: 33px;
}
.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    margin: 12px;
    padding: 10px 20px;
    border-radius: 7px;
    text-align: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .06), 0 1px 0 0 rgba(0, 0, 0, .04);
    box-sizing: border-box;
}
.section-3-footer {
	margin: 25px 15px;
    text-align: left;
    /*flex: 1 1 calc(22% - 12px);*/
    box-sizing: border-box;
    font-size: 15px;
}

@media (max-width: 825px) {
   .section-3-footer {
       padding: 5px 2px 5px 10px;
       flex: 1 1 calc(30% - 6px);
       margin: 7px 5px;
       font-size: 14px;
    }
}

@media (max-width: 600px) {
   .section-3-footer {
       padding: 5px 2px 5px 20px;
       flex: 1 1 calc(45% - 12px);
       margin: 5px 2px;
    }
}

@media (max-width: 400px) {
   .home-section-3 {
       padding: 4px 1px 4px 10px;
       flex: 1 1 100%; 
       margin: 7px 0;
    }
}
.home-section-3-container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-around;
    width: 100%;
	padding: 0 0 0 1px;
}
a.footermenu {
	display: block;
	margin: 15px 1px 5px 1px;
    text-decoration: none;
    color: #ddd;
    text-align: left;
	font-size:14px;
	max-width: 170px;
}
.head3 {
	font-size: 18px;
	color: #454c4f;
	font-weight:bold;
	margin-bottom: 10px;
}

h2 {
    font-size: 20px;
    color: #454c4f;
    margin: 5px 0px 10px 5px;
}
.pera {
    letter-spacing: 0.5px;
    line-height: 25px;
	text-align:left;
}
a.homlink {
	background: #f7f8fc;
    border-radius: 30px;
    margin: 10px 2px;
    display: inline-block;
    padding: 8px 2px 6px 2px;
    text-decoration: none;
    font-size: 14px;
    color: #333;
    width: 100px;
    letter-spacing: 0.7px;
    box-shadow: 0px 1px 1px #ccc;
}
.homicon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2px;
}

.home-section-3 {
    margin: 15px;
    padding: 5px 10px 5px 10px;
    text-align: center;
    flex: 1 1 calc(30% - 12px);
    box-sizing: border-box;
    border-radius: 15px;
    font-size: 15px;
}

@media (max-width: 825px) {
   .home-section-3 {
       padding: 5px 2px 5px 10px;
       flex: 1 1 calc(30% - 6px);
       margin: 7px 5px;
       font-size: 14px;
    }
}

@media (max-width: 600px) {
   .home-section-3 {
       padding: 5px 2px 5px 20px;
       flex: 1 1 calc(45% - 12px);
       margin: 5px 2px;
    }
}

@media (max-width: 400px) {
   .home-section-3 {
       padding: 4px 1px 4px 10px;
       flex: 1 1 100%; 
       margin: 7px 0;
    }
}
a.sampledownload {
	text-decoration: none;
    background: #f04e45;
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
}

.breadcrumbs {
    font-size: 13px;
    margin: 5px 10px;
    padding: 3px 5px;
    color: #333;
	margin: 1% 5%;
	letter-spacing: 2px;
}
.breadcrumbs a {
    font-size: 12px;	
    color: #167cd1;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.homicon {
  width: 80px;
}

.around {
  box-shadow: 0 15px 30px rgba(74, 165, 242, 0.1);
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 3%;
}
.bp {
  font-size: 16px;
  color: #4aa5f2;
}
.faq {
  text-align: left;
  padding: 1.7% 2%;
  font-size: 14px;
  line-height: 23px;
  border-left: 3px solid #4aa5f2;
  margin-bottom: 2.5%;
  background: #fff;
  box-shadow: 0 15px 30px rgba(74, 165, 242, 0.1);
  border-radius: 12px;
  border-right: 3px solid #4aa5f2;
  color: #444;
  letter-spacing: 0.4px;
}
.faq-section {
  border-top: 2px dashed #ceddea;
  padding: 2% 7%;
  margin-top: 2.5%;
}

/* Table */
table {
border-collapse: collapse;
border-radius: 10px;
overflow: hidden;
width: 100%;
margin: 3% auto;
color:#444;	
}
th {
padding: 10px;
text-align: center;
vertical-align: middle;
color: #11558a;
font-weight: 600;
letter-spacing: 1px;
background-color:#d2e4ee;
font-size:14px;	
}
td {
padding: 15px 5px;
text-align: center;
vertical-align: middle;
border-left: 1px solid #d2e4ee;
border-top: 1px solid #d2e4ee;
background-color: #fff;
font-size: 14px;
width: 33%;
}
th:first-child,
td:first-child {
  border-left: none;
  text-align: left;
  padding-left: 15px;
  width: 50%;
}
th:last-child,
td:last-child {
  border-right: none;
  text-align: center;
}
tr:last-child td {
  border-bottom: none;
}
tr:first-child td {
  border-top: none;	
}
table td:nth-child(3) {
  text-align: center;
}
table button {
  padding: 4px 8px;
  font-size: 13px;
  box-shadow: none;
  border-radius: 3px;
  border: 0px;
  background: #4ecd98;
  color: #fff;
  cursor: pointer;
}
.file-list table {
  width: 100%;
  border-collapse: collapse;
  max-height: 200px;
  display: none;
}
/* Tool */
.folder {
  font-weight: 700;
  color: #007bff;
  cursor: pointer;
}
.action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 2px dashed #2171d5;
  border-radius: 12px;
  background-color: #fff;
  margin: auto;
  margin-bottom: auto;
  margin-bottom: 5px;
}
.actions button {
  margin: 10px 0;
}
.hidden {
  display: none;
}
.progress {
  margin-top: 10px;
  width: 100%;
  background-color: #f3f3f3;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}
.progress-bar {
  width: 0%;
  height: 20px;
  background-color: #4caf50;
  text-align: center;
  color: #fff;
  line-height: 20px;
}
.success-message {
  margin-top: 10px;
  padding: 10px;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
}
input[type="file"] + label {
  background-color: #4aa5f2;
  color: #fff;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}
.lab1 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #3d4d5d;
}
#file-details {
  font-size: 13px;
  text-align: center;
  line-height: 25px;
}
#file-name {
  font-size: 14px;
  background: #e7eff6;
  border-radius: 50px;
  padding: 7px 15px;
  color: #535e64;
  margin-bottom: 10px;
}
#actions {
  text-align: center;
}
#refresh {
  background: #fbfcfd;
  border: 1px solid;
  color: #df667a;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
}
#back {
  background: #fbfcfd;
  border: 1px solid;
  color: #3a80d9;
  box-shadow: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
}
#download-all {
  background: #4ecd98;
  margin-right: 0;
  color: #ffffff;
  padding: 8px 10px;
  border-radius: 5px;
  cursor: pointer;
  border: 0px;
}
#downloadZip {
  background: #4ecd98;
  width: 55%;
  border-radius: 50px;
  background: #4ecd98;
}
span.note {
  display: block;
  margin-bottom: -15px;
  margin-top: 25px;
  font-size: 12px;
  letter-spacing: 0.7px;
  color: #7590ac;
}
.actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 2px dashed #2171d5;
  border-radius: 12px;
  background-color: #fff;
  margin: auto;
  margin-bottom: auto;
  margin-bottom: 4px;
}
#downloadZip {
  display: none;
  margin: 10px auto;
}
#downloadZip.center {
  text-align: center;
}
#compressButton {
  background: #167cd1;
}
#compressButton,
#downloadZip {
  width: 200px;
  border: 0px;
  color: #fff;
  padding: 10px;
  border-radius: 7px;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer;
}
.small-text {
  font-size: 12px;
  color: #555;
  display: none;
}
.progress-bar div {
  height: 100%;
  width: 0;
  background-color: #76c5a4;
  text-align: center;
  color: #fff;
  padding-top: 5px;
}
.smhead {
    font-size: 17px;
}
.inlink-section {
  text-align: center;
  margin-top: -10px;
}
.inlink:hover {
    background: #dee7f1;
}
.inlink {
  text-align: center;
  width: 95px;
  display: inline-block;
  background: #edf2f7;
  margin: 5px 2px;
  padding: 5px 2px;
  border-radius: 5px;
  text-decoration: none;
  color: #6086a6;
  text-transform: uppercase;
  font-size: 14px;
}