.about-custom-section {
	padding: 80px 0;
	padding-bottom: 0;
}
.about-custom-section-inner {
	transition: transform 0.4s ease;
}
.about-custom-section-inner:hover {
	transform: translateY(-5px);
}
.about-custom-section-img img {
	width: 100%;
	height: 100%;
}
.about-custom-section-top{
	text-align: center;
	margin-top: 0;
}
.about-custom-section-top h1{
	text-align: center;
    font-size: 40px;
    position: relative;
    margin-bottom: 40px;
    font-weight: 600;
    color: #221f20;
    letter-spacing: 1px;
    padding-bottom: 10px;
}
.about-custom-section-top h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 140px;
    height: 2px;
    background-color: #f5821f;
    transform: translate(-50%, 0);
}
.about-custom-section-top p {
	color: #333;
    font-size: 18px;
    margin: 15px 0;
    line-height: 1.7;
    letter-spacing: 1px;
}
.about-custom-section-top p b {
	color: #00509d;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 400;
}
/* Card Layout */
.revolutionizing_defence{
	padding-top: 80px;
    padding-bottom: 90px;
}
.revolutionizing_defence h1{
	text-align: center;
    font-size: 40px;
    position: relative;
    margin-bottom: 40px;
    font-weight: 600;
    color: #221f20;
    letter-spacing: 1px;
    padding-bottom: 10px;
}
.revolutionizing_defence h1::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 140px;
    height: 2px;
    background-color: #f5821f;
    transform: translate(-50%, 0);
}
/* Flip Card Container */
.flipping_card {
	background: transparent;
    width: 100%;
    height: 250px;
    perspective: 1000px;
    margin-bottom: 30px;
}
.flipping_cardinner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}
.flipping_card:hover .flipping_cardinner {
	transform: rotateY(180deg);
}
/* Front and Back Faces */
.flippingcard_cardfront,
.flippingcard_cardback {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
/* FRONT */
.flippingcard_cardfront {
	position: absolute;
	background-color: #fff;
	color: #000;
	z-index: 2;
	overflow: hidden;
}
.flippingcard_cardfront::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #00000052;
	z-index: 1;
}
.flippingcard_cardfront img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	padding: 10px;
	position: absolute;
	z-index: 0;
}
.flippingcard_cardfront p {
	position: relative;
	top: 20px;
	left: 0;
	margin: 0;
	padding: 6px 12px;
	color: #000000;
	font-weight: 600;
	font-size: 20px;
	border-radius: 6px;
	z-index: 9999;
	letter-spacing: 1px;
	text-align: center;
}
/* BACK */
.flippingcard_cardback {
	background: #3f3f3f;
	color: #fff;
	transform: rotateY(180deg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: center;
}
.flippingcard_cardback p:first-child {
	font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
}
.flippingcard_cardback p:last-child {
	font-size: 0.95rem;
	line-height: 1.4;
}
.advantage_section {
	padding: 60px 0;
	background-color: #f4f7fc;
}
.advantage_section h1::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 140px;
    height: 2px;
    background-color: #f5821f;
    transform: translate(-50%, 0);
}
.advantage_section h1 {
	text-align: center;
    font-size: 40px;
    position: relative;
    margin-bottom: 40px;
    font-weight: 600;
    color: #221f20;
    letter-spacing: 1px;
    padding-bottom: 10px;
}
.advantage_section_inner {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-bottom: 30px;
}
.advantage_section_inner:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.advantage_section_inner_img {
	position: relative;
	overflow: hidden;
}
.advantage_section_inner_img img {
	width: 100%;
	transition: transform 0.4s ease;
}
.advantage_section_inner_img::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 51, 102, 0.6), transparent 60%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}
.advantage_section_inner:hover .advantage_section_inner_img img {
	transform: scale(1.1);
}
.advantage_section_inner:hover .advantage_section_inner_img::before {
	opacity: 1;
}
.advantage_section_inner_content {
	padding: 20px;
}
.advantage_section_inner_content h2 {
	font-size: 18px;
    color: #003366;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: none;
}
.advantage_section_inner_content p {
	font-size: 15px;
    color: #333;
    line-height: 1.6;
    text-align: center;
}
.advantage_section_btn {
	text-align: center;
	margin-top: 40px;
}
.advantage_section_btn_cta {
	background: #f5811e;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}
.advantage_section_btn_cta:hover {
	background: #000;
	transform: scale(1.05);
}
@keyframes pulseZoom {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.07);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes imageGlow {
	0% {
		filter: drop-shadow(0 0 0 rgba(0, 123, 255, 0));
	}
	50% {
		filter: drop-shadow(0 0 15px rgba(0, 123, 255, 0.6));
	}
	100% {
		filter: drop-shadow(0 0 0 rgba(0, 123, 255, 0));
	}
}
.protecting_section {
	padding: 60px 0;
}
.protecting_section h1 {
    text-align: center;
    font-size: 40px;
    position: relative;
    margin-bottom: 40px;
    font-weight: 600;
    color: #221f20;
    letter-spacing: 1px;
    padding-bottom: 10px;
}
.protecting_section h1::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 140px;
    height: 2px;
    background-color: #f5821f;
    transform: translate(-50%, 0);
}
.protecting_section_inner {
	background: #ffffff;
	border-radius: 16px;
	padding: 30px 20px;
	margin-bottom: 30px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: transform 0.4s ease-in-out;
	transform-origin: center;
}
.protecting_section_inner:hover {
	animation: pulseZoom 0.8s ease-in-out;
}
.protecting_section_inner img {
	width: 100px;
	padding: 0;
	margin-bottom: 10px;
	transition: transform 0.4s ease, filter 0.4s ease;
}
.protecting_section_inner:hover img {
	transform: scale(1.15) rotate(3deg);
}
.protecting_section_inner p {
	font-size: 15px;
    color: #333;
    line-height: 1.6;
    text-align: center;
}
.protecting_section_btn {
	text-align: center;
	margin-top: 40px;
}
.protecting_section_btn_cta {
	background: #000;
	color: #fff;
	padding: 14px 32px;
	font-size: 18px;
	border-radius: 50px;
	font-weight: 400;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 20px rgb(10 10 10 / 36%);
	transition: all 0.3s ease;
}
.protecting_section_btn_cta:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 102, 204, 0.5);
}
.call_action_section {
	background: #045667;
	padding: 80px 20px;
	text-align: center;
	position: relative;
	color: #fff;
	overflow: hidden;
}
.call_action_section h1 {
	font-size: 50px;
    font-weight: 700;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-in-out;
    color: #fff;
    letter-spacing: 1px;
}
.call_action_section_animated_btn_cta {
	background: #000;
	color: #fff;
	border: none;
	padding: 16px 40px;
	border-radius: 50px;
	font-size: 18px;
	letter-spacing: 1px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
	box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.call_action_section_animated_btn_cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300%;
	height: 300%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	transition: transform 0.5s, opacity 0.5s;
	border-radius: 50%;
	z-index: 0;
}
.call_action_section_animated_btn_cta:hover::before {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}
.call_action_section_animated_btn_cta:hover {
	transform: scale(1.05) translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 180, 216, 0.5);
}
.download_action {
	padding: 40px;
	color: #fff;
	text-align: center;
}
.download_action_section {
	background: #ffffff;
	border-radius: 16px;
	padding: 50px;
	margin-bottom: 30px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
	transition: transform 0.4s ease-in-out;
	transform-origin: center;
}
.download_action_section h1 {
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 10px;
	animation: fadeInUp 1s ease-in-out;
	color: #000000;
	letter-spacing: 1px;
}
.download_action_section p {
	font-size: 25px;
	font-weight: 400;
	margin-bottom: 20px;
	padding-bottom: 40px;
	animation: fadeInUp 1s ease-in-out;
	color: #000000;
	letter-spacing: 1px;
}
.download_action_section_animated_btn_cta {
	background: #000;
	color: #fff;
	border: none;
	padding: 16px 40px;
	border-radius: 50px;
	font-size: 18px;
	letter-spacing: 1px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
	box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.download_action_section_animated_btn_cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300%;
	height: 300%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	transition: transform 0.5s, opacity 0.5s;
	border-radius: 50%;
	z-index: 0;
}
.download_action_section_animated_btn_cta:hover::before {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}
.download_action_section_animated_btn_cta:hover {
	transform: scale(1.05) translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 180, 216, 0.5);
}
/* Optional subtle entrance animation */
@keyframes fadeInUp {
	from {
		transform: translateY(30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
.related-product {
	padding: 40px 0;
	padding-bottom: 80px;
}
.related-product h1{
	text-align: center;
    font-size: 40px;
    position: relative;
    margin-bottom: 40px;
    font-weight: 600;
    color: #221f20;
    letter-spacing: 1px;
    padding-bottom: 10px;
}
.related-product h1::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 140px;
    height: 2px;
    background-color: #f5821f;
    transform: translate(-50%, 0);
}
.related_product_inner {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
}
.related-item {
	flex: 0 1 300px;
	padding: 20px;
}
.related_card {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 25px rgb(0 0 0 / 28%);
	overflow: hidden;
	transition: transform 0.3s ease;
}
.related_card:hover {
	transform: translateY(-10px);
}
.related_card_img {
	height: auto;
	overflow: hidden;
	position: relative;
}
.related_card_img::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.related_card_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.related_card:hover .related_card_img img {
	transform: scale(1.1);
}
.related_card_content {
	padding: 20px;
	background: #000;
	color: #fff;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.related_card_content h3 {
	font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #ffffff;
    letter-spacing: 1px;
}
.related_card_content p {
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.6;
	margin-bottom: 20px;
	color: #ffffff;
}
.related_card_content_bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	flex-wrap: wrap;
}
.related_card_content_bottom h6 {
	display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
}
.related_card_content_bottom_btn {
	font-size: 15px;
	background-color: #ffffff;
	color: #000;
	font-weight: 500;
	padding: 8px 18px;
	letter-spacing: 1px;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.related_card_content_bottom_btn:hover {
	background-color: #00b4d8;
	color: #fff;
}
@media (max-width: 768px) {
	.about-custom-section, .revolutionizing_defence, .advantage_section, .protecting_section, .call_action_section {
		padding: 40px 15px;
	}
	.about-custom-section-top h1,
	.revolutionizing_defence h1,
	.advantage_section h1,
	.protecting_section h1,
	.related-product h1{
		font-size: 21px;
	}
	.about-custom-section-top p,
	.flippingcard_cardback p,
	.advantage_section_inner_content p,
	.protecting_section_inner p {
		font-size: 16px;
	}
	.about-custom-section-top p b {
		font-size: 18px;
	}
	.flipping_card {
		height: 220px;
	}
	.flippingcard_cardfront p {
		font-size: 16px;
		top: 30px;
	}
	.advantage_section_inner_img img,
	.advantage_section_inner_img {
		height: 200px;
	}
	.advantage_section_inner_content h2 {
		font-size: 16px;
	}
	.advantage_section_btn_cta,
	.protecting_section_btn_cta {
		font-size: 16px;
		padding: 10px 24px;
	}
	.protecting_section_inner img {
		max-width: 100%;
		height: auto;
	}
	.call_action_section h1 {
		font-size: 26px;
	}
	.call_action_section {
		padding: 50px 15px;
	}
	.download_action {
		padding: 20px;
	}
	.download_action_section {
		padding: 50px 15px;
	}
	.download_action_section h1 {
		font-size: 26px;
	}
	.download_action_section p {
		font-size: 18px;
		padding-bottom: 20px;
		margin-bottom: 20px;
		line-height: 25px;
	}
	.protecting_section_inner,
	.advantage_section_inner {
		padding: 20px 15px;
	}
}
