* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Nikosh', sans-serif;
}

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	line-height: 1.6;
	font-family: Nikosh, Arial;
	flex-direction: column;
	background: #EAEEF2;
	background-image: url("../image/bg6.jpg"); /* Background image */
	background-size: cover; /* Image will cover entire div */
	background-position: center; /* Image will be centered */
	background-repeat: repeat; /* Prevent repetition */
	color: #333;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  margin-left: 60px;
  margin-right: 60px;
}

.content {
    flex: 1;
    background: #f2f5f8; /* your light background */
    padding: 30px 0;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.date-bar {
    background: linear-gradient(
		90deg,
		#b3d9ff 0%,
		#80bfff 20%,
		#0080ff 50%,
		#80bfff 80%,
		#b3d9ff 100%
	);
	color: #ffffff;
	padding: 12px 0;
}

.date-container {
    max-width: 1200px;
    margin: -10px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 9px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #0d5c2c;
}

.logo-img img {
    width: 75px;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.logo-divider {
    width: 100%;
    height: 1px;
    background: #ffffffff;
	margin: -2px 0;
}

.main-text {
    font-size: 26px;
    font-weight: 700;
}

.sub-text {
	font-size: 20px;
    font-weight: 500;
    margin-top: 4px;
}

/* Menu */
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 0;
    margin: 0;
}

.nav-menu li {
	position: relative;
}

.nav-menu a {
	text-decoration: none;
    color: #0d5c2c;
    font-weight: 500;
    padding: 8px 5px;
    transition: color 0.3s;
    font-size: 20px;
}

.nav-menu a:hover {
    color: #198754;
}

.nav-menu a.active {
    color: #198754;
    font-weight: 700;
    border-bottom: 2px solid #198754;
}

/* Dropdown */
.dropdown-menu {
	position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    display: none;
    z-index: 999;
}

.dropdown-menu li {
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    font-size: 18px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.login-btn {
    border: 2px solid #0d5c2c;
    border-radius: 6px;
    padding: 6px 14px !important;
    font-weight: 600;
}

.login-btn:hover {
    background: #0d5c2c;
	color: white !important;
}

.login-dropdown .dropdown-menu {
    right: 0;
    left: auto;
}

.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #0d5c2c;
}

.hero-section {
	padding-top: 70px;
	padding-bottom: 30px;
	padding-left: 40px;
	padding-right: 40px;
}

.hero-wrapper {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
}

.hero-slider {
	position: relative;
	overflow: hidden;
}

.hero-info-cards {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	column-gap: 3px;  /* horizontal gap */
	row-gap: 1px;     /* vertical gap */
	padding: 2px;
	justify-items: center;
	align-items: start;
}

.hero-info-cards .card:first-child {
	grid-column: 1 / -1;
	justify-self: center;
	line-height: 0.4;
}

.hero-info-cards .card {
	padding: 5px;
	text-align: center;
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 100%;
	max-width: 200px;
}

.hero-info-cards .card img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin-bottom: 10px;
}

.hero-info-cards .card h4 {
	font-size: 18px;
	margin: 0;
	color: #0d5c2c;
}

.hero-info-cards .card:hover {
	transform: translateY(-5px);
}

.slides {
	display: flex;
	transition: transform 0.6s ease-in-out;
}

.slides img {
	width: 100%;
	height: 375px;
	object-fit: cover;
	flex-shrink: 0;
}

.slider-dots {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
}

.slider-dots span {
	display: inline-block;
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
}

.slider-dots span.active {
	background: #0d5c2c;
}

.services-section {
	padding: 60px 20px;
	background: #ffffff;
}

.service-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.section-title {
	text-align: center;
	font-size: 36px;
	color: #0d5c2c;
	margin-bottom: 50px;
	font-weight: 700;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: #0d5c2c;
	border-radius: 2px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	max-width: 1200px;
	margin: 0 auto;
}

.service-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid #e0e0e0;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
	width: 100%;
	height: 150px;
	background: #227CA5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 70px;
}

.service-icon1 {
	width: 100%;
	height: 150px;
	background: #0414C3;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 70px;
}

.service-icon2 {
	width: 100%;
	height: 150px;
	background: #00DFDF;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 70px;
}

.service-icon3 {
	width: 100%;
	height: 150px;
	background: #DB0F66;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 70px;
}

.service-icon4 {
	width: 100%;
	height: 150px;
	background: #04B2ED;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 70px;
}

.service-icon5 {
	width: 100%;
	height: 150px;
	background: #800080;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 70px;
}

.service-icon6 {
	width: 100%;
	height: 150px;
	background: #006A9B;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 70px;
}

.service-icon7 {
	width: 100%;
	height: 150px;
	background: #04B2ED;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 70px;
}

.service-content {
	padding: 20px;
}

.service-title {
	font-size: 24px;
	font-weight: 600;
	color: #0d5c2c;
	margin-bottom: 10px;
	text-align: center;
}

.govt-text h1 {
  font-size: 28px;
  color: #000;
}

.govt-text p {
  color: red;
  font-weight: bold;
  font-size: 20px;
}

.top-buttons {
  display: flex;
  gap: 10px;
}

.help-btn,
.login-btn {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.help-btn {
  background-color: rgb(216, 139, 23);
  color: #fff;
}

.login-btn {
  background-color: rgb(0, 165, 25);
  color: #fff;
}

.login-btn a {
  text-decoration: none;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 20px;
}

.form-wrapper {
  width: 100%;
  width: 998px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.form-wrappertwo{
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 500px;
}

.form-wrapper h2 {
  /*color: #5c00e6;*/
  color: #3d0099;
  font-size: 30px;
}
.custom-hr {
  margin-top: 5px;
  margin-bottom: 5px;
}

.instruction {
  color: #003399;
  margin-bottom: 20px;
  font-size: 20px;
}

label {
  /* font-weight: bold; */
  margin-bottom: 4px;
  display: block;
  text-align: left;
  color: #333;
  font-size: 19px;
}

.form-field {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 6px;
}


form {
  display: flex;
  flex-direction: column;
  gap: 12px; /* মূল ফর্ম গ্রুপের মধ্যে গ্যাপ কমানো */

}

.form-group {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.capcha-group {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.form-group.full {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px; /* বা যতটুকু কমাতে চাও */
}

input[type="text"],
input[type="file"],
input[type="password"],
select,
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

textarea {
  resize: vertical;
  height: 100px;
}

.captcha {
  display: flex;
  gap: 10px;
  align-items: center;
}

#imagePreviewContainer {
  max-height: 200px;
  overflow-y: auto;
  padding: 5px;
  border-radius: 5px;
}

.required-star {
  color: red;
  margin-left: 2px;
}

.error-text {
  color: red;
  font-size: 18px;
  margin-top: 4px;
  text-align: left;
}

.form-field {
  margin-bottom: 15px;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #007bff;
}

.submit-btn {
  padding: 12px;
  background-color: #28a745;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.image-upload-section {
  display: flex;
  align-items: flex-start;
  gap: 20px; /* চাইলে দূরত্ব বাড়ানো/কমানো যাবে */
}

.form-group.full {
  flex: 1;
}

.loginpage {
  font-size: 20px;
  margin-top: 10px;
}

.preview-wrapper {
  position: relative;
  display: inline-block;
}

.remove-btn {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 14px;
  cursor: pointer;
}


@media screen and (max-width: 768px) {
  .form-group {
    flex-direction: column;
  }

  .header-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .logo-block {
    justify-content: center;
  }
}

/*reports css*/
.report-holder{
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 550px;
}

.report-header{
	text-align: center; 
	font-size: 24px; 
	color: #000080; 
	font-weight: bold;
}

.report-header-cell-format1{
	border-top: 1px solid; 
	border-left: 1px solid; 
	border-bottom: 1px solid; 
	padding-left: 5px; 
	padding-right: 5px; 
	font-size: 18px;
}

.report-header-cell-format2{
	border-top: 1px solid; 
	border-left: 1px solid; 
	border-bottom: 1px solid; 
	border-right: 1px solid; 
	padding-left: 5px; 
	padding-right: 5px; 
	font-size: 18px;
}

.report-col-cell-format1{
	border-left: 1px solid; 
	border-bottom: 1px solid; 
	padding-left: 5px; 
	padding-right: 5px; 
	font-size: 16px;
}

.report-col-cell-format2{
	border-left: 1px solid; 
	border-bottom: 1px solid; 
	border-right: 1px solid; 
	padding-left: 5px; 
	padding-right: 5px; 
	font-size: 16px;
}
/* ফুটার */
.footer {
	background: linear-gradient(
		90deg,
		#b3d9ff 0%,#80bfff 20%,
		#0080ff 50%,#80bfff 80%,
		#b3d9ff 100%
	);
	color: #ffffff;
	padding: 12px 6px 8px;
	min-height: auto;
	line-height: 1.3;
	margin-top: auto;
	margin-bottom: 0;
}
    
.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	margin-top: 12px;
	margin-bottom: 10px;
}

.footer-section h3 {
	font-size: 19px;
	margin-bottom: 8px;
	color: #ffeb3b;
	font-weight: 600;
}

.footer-links {
	list-style: none;
	line-height: 9px;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: white;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: #ffeb3b;
}

.social-icons {
	display: flex;
	gap: 15px;
	margin-top: 15px;
}

.social-icon {
	width: 40px;
	height: 40px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0d5c2c;
	text-decoration: none;
	transition: all 0.3s;
}

.social-icon:hover {
	background: #ffeb3b;
	transform: scale(1.1);
}

.copyright {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 10px;
	margin-top: 6px;
	font-size: 13px;
}

.footer-org-box {
	display: flex;
	align-items: center;
	gap: 2px;
	width: fit-content;
}

.footer-org-box img {
	width: 55px;
	height: auto;
	object-fit: contain;
}

.footer-org-box .org-title {
	color: white;
	font-weight: bold;
	font-size: 20px;
	line-height: 1.2;
}

.footer-org-box .org-subtitle {
	color: #666;
	font-size: 14px;
}


.footprint {
	background: linear-gradient(
		90deg,
		#b3d9ff 0%,#80bfff 20%,
		#0080ff 50%,#80bfff 80%,
		#b3d9ff 100%
	);
	color: #ffffff;
	padding-left: 5px;
	padding-right: 5px;
	min-height: auto;
	margin-top: auto;
	margin-bottom: 0;
}

.footprint-col1{
	width: 10%; 
	font-size: 19px;
	margin-bottom: 2px; 
	color: #000080; 
	font-weight: 600;
}
.footprint-logo{
	width: 55px; 
	height: auto; 
	object-fit: contain;
}
.footprint-col3{
	width: 10%; 
	color: #ffeb3b; 
	font-weight: bold; 
	font-size: 20px; 
}
.footprint-col4{
	width: 25%; 
	text-align: right; 
	color: #000033;
}
/* Mobile responsive */
@media (max-width: 768px) {
	.hero-title {
	   font-size: 32px;
	}
	.hero-subtitle {
	   font-size: 22px;
	}
	.hero-info-cards {
	   grid-template-columns: 1fr 1fr;
	   gap: 15px;
	   padding: 20px;
	}

	.hero-info-cards .card {
	   max-width: 150px;
	}
	
	.date-container {
		flex-direction: column;
		gap: 8px;
	}
	
	.phone-number {
	   font-size: 36px;
	}
	
	.section-title{
	   font-size: 28px;
	}
	
	.nav-container {
	   flex-direction: column;
	   gap: 15px;
	}
	
	.logo {
	   flex-direction: column;
	   text-align: center;
	}
	
	.footer-container {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}

	.footer-left,
	.footer-center,
	.footer-right {
		justify-content: center !important;
	}
}

@media (max-width: 480px) {
	.hero-title {
	   font-size: 26px;
	}
	.hero-info-cards {
	   grid-template-columns: 1fr;
	   padding: 15px;
	}

	.hero-info-cards .card {
	   max-width: 200px;
	   margin: auto;
	}
	
	.hero-info-cards .card:first-child {
	   grid-column: auto;
	}
	
	.call-section {
	   padding: 20px;
	}
	
	.phone-number {
	   font-size: 28px;
	}
	
	.services-grid {
	   grid-template-columns: 1fr;
	}
}
	



/* Mobile Responsive */
@media (max-width: 992px) {
	.hamburger {
	   display: block;
	}

	.nav-menu {
	   position: absolute;
	   top: 100%;
	   left: 0;
	   width: 100%;
	   background: white;
	   flex-direction: column;
	   gap: 0;
	   display: none;
	   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
	}

	.nav-menu.show {
	   display: flex;
	}

	.nav-menu li {
	   width: 100%;
	   border-bottom: 1px solid #eee;
	}

	.nav-menu a {
	   padding: 14px 20px;
	   display: block;
	}

	.dropdown-menu {
	   position: static;
	   box-shadow: none;
	   border-radius: 0;
	   display: none;
	}

	.dropdown.open .dropdown-menu {
	   display: block;
	}

	.login-btn {
	   margin: 10px;
	}
}