/* General Body Styles */
body {
	margin: 0;
	padding: 0;
	background: linear-gradient(179.03deg, rgba(114, 154, 191, 0.9) -1.55%, rgba(114, 154, 191, 0.8) 7.22%, rgba(114, 154, 191, 0.8) 14.41%, rgba(114, 154, 191, 0.8) 31.35%, rgba(114, 154, 191, 0.9) 61.68%);
}

/* Header Section */
header {
	background-color: #8baccb;
	color: white;
}

.contact-btn {
	background: #8baccb;
}

.dropdown-content {
	background: #85a7c8;
}

	.dropdown-content::before {
		border-color: transparent transparent #85a7c8 transparent;
	}


/* Page Title Styling */
.page-bg {
	text-align: center;
	justify-content: space-around;
	position: relative;
	display: flex;
}

.page-title {
	max-width: 1600px;
	text-align: left;
	color: #fff;
	padding: 300px 300px 200px 100px;
}


/* product leaflet styling */
.pdf-file-section {
	align-items: center;
	justify-content: center;
	position: relative;
	display: flex;
}

.pdf-file-row {
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 20px 200px 20px 200px;
	background-color: #6d8fad49;
	flex-wrap: wrap;
	box-sizing: border-box;
}

.pdf-text p {
	margin: 0;
	color: #1E3D59;
}

.pdf-button {
	text-align: center;
}

.download-button {
	background-color: #7a9b1f;
	color: white;
	font-size: 15px;
	text-decoration: none;
	padding: 8px 20px;
	border-radius: 6px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: background-color 0.3s ease;
}

	.download-button:hover {
		background-color: #6c8b1b;
	}

.pdf-icon {
	font-size: 18px;
}


/* content section */
.content-section {
	align-items: center;
	justify-content: space-around;
	position: relative;
	display: flex;
}

.content-row {
	max-width: 1600px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 50% 45%;
	gap: 60px;
	align-items: center;
	padding: 100px 100px 80px 100px;
}

	.content-row h2,
	.content-row1 h2 {
		padding-bottom: 5%;
	}


.content-image {
	text-align: center;
}

	.content-image .img {
		width: 100%;
		height: auto;
	}

/*secound div*/
.content-section1 {
	align-items: center;
	justify-content: space-around;
	position: relative;
	display: flex;
}

.content-row1 {
	max-width: 1600px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 45% 50%;
	gap: 60px;
	align-items: center;
	padding: 50px 100px 80px 100px;
}


.content-image1 {
	text-align: center;
}

	.content-image1 .img {
		width: 100%;
		max-width: 900px;
		height: auto;
	}

	/*dots/circle style*/
.custom-svg-list {
	list-style-type: none;
	padding-left: 0;
}

	.custom-svg-list li {
		position: relative;
		padding-left: 30px;
		margin-bottom: 15px;
		font-weight: 400;
		font-style: normal;
		display: block;
		font-size: clamp(1.2rem, 1.2vw + 0.5rem, 1.2rem);
	}

		.custom-svg-list li::before {
			content: '';
			position: absolute;
			left: 0;
			top: 50%;
			transform: translateY(-50%);
			width: 8px;
			height: 8px;
			background-color: rgb(78, 105, 131); 
			border-radius: 50%;
		}



@media (max-width: 900px) {

	.nav-bar {
		background: #85a7c8;
	}

	.page-title {
		padding: 200px 20px 70px 20px;
		text-align: left;
	}
	.pdf-file-row {
		padding: 20px 60px;
		text-align: center; 
		gap: 20px;
	}

	.pdf-button {
		margin-top: 0;
	}

	.content-row {
		display: flex !important;
		flex-direction: column-reverse;
		grid-template-columns: none;
		padding: 50px 20px 0 20px;
		gap: 0%;
	}

		.content-row h2 {
			padding: 15px 0 30px 0;
		}

	.content-row1 {
		grid-template-columns: 100%;
		padding: 50px 20px 50px 20px;
		gap: 20px;
	}

	.read-more-body {
		padding: 30px 0;
	}

	.read-more-content {
		width: 90%;
	}

	.content-header {
		padding: 10px;
	}

		.content-header h3 {
			font-size: 1rem;
		}

	.content-details p {
		font-size: 0.9rem;
		padding-right: 5px;
	}
}

@media (max-width: 580px) {
	.pdf-file-row {
		flex-direction: column;
		padding: 20px 30px;
		text-align: center;
		gap: 20px;
	}

	.pdf-button {
		margin-top: 10px;
	}
}

@media (max-width: 480px) {
	.page-title {
		padding: 130px 15px 80px;
	}

}



