@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* ===== 3D & ANIMATION EFFECTS ===== */
@keyframes float-up {
	0% { transform: translateY(0px); opacity: 0; }
	50% { opacity: 1; }
	100% { transform: translateY(-20px); }
}

@keyframes neon-glow {
	0%, 100% { text-shadow: 0 0 10px rgba(127, 3, 3, 0.8), 0 0 20px rgba(3, 29, 64, 0.6); }
	50% { text-shadow: 0 0 20px rgba(127, 3, 3, 1), 0 0 30px rgba(3, 29, 64, 0.8), 0 0 40px rgba(255, 0, 127, 0.6); }
}

@keyframes box-glow {
	0%, 100% { box-shadow: 0 0 5px rgba(127, 3, 3, 0.5), inset 0 0 5px rgba(127, 3, 3, 0.2); }
	50% { box-shadow: 0 0 20px rgba(127, 3, 3, 0.8), 0 0 30px rgba(3, 29, 64, 0.6), inset 0 0 10px rgba(127, 3, 3, 0.3); }
}

@keyframes spin-3d {
	0% { transform: rotateX(0deg) rotateY(0deg); }
	100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes pulse-glow {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes slide-in-left {
	0% { transform: translateX(-100px); opacity: 0; }
	100% { transform: translateX(0); opacity: 1; }
}

@keyframes slide-in-right {
	0% { transform: translateX(100px); opacity: 0; }
	100% { transform: translateX(0); opacity: 1; }
}

@keyframes fade-in-down {
	0% { transform: translateY(-30px); opacity: 0; }
	100% { transform: translateY(0); opacity: 1; }
}

@keyframes shimmer {
	0% { background-position: -1000px 0; }
	100% { background-position: 1000px 0; }
}

@keyframes neon-border {
	0%, 100% { border-color: rgba(127, 3, 3, 0.3); box-shadow: 0 0 5px rgba(127, 3, 3, 0.3); }
	50% { border-color: rgba(127, 3, 3, 1); box-shadow: 0 0 15px rgba(127, 3, 3, 0.8), 0 0 25px rgba(3, 29, 64, 0.6); }
}

@keyframes hover-lift {
	0% { transform: translateY(0px); }
	100% { transform: translateY(-8px); }
}

/* 3D Perspective */
html {
	perspective: 1000px;
}

/* Enhanced body with 3D effects */
body {
	font-size:14px;
	color:#2d363d;
	font-family: 'Montserrat', sans-serif;
	box-sizing:border-box;
	overflow-x: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

* {
	margin:0px;
	padding:0px;
	outline:none;
}
ul {
	list-style:none;
}
a:hover, a {
	text-decoration:none;
}
img {
	border:none;
}
h1,h2,h3,h4,h5,h6,ul,li,span,p,b,strong {
	margin:0px;
	padding:0px;
}
button:focus{
  outline: 0px;
}

/* ===== BUTTON & INTERACTIVE ELEMENTS WITH 3D & NEON ===== */
button, .btn, .butn-bg, a.butn-bg {
	position: relative;
	display: inline-block;
	padding: 12px 30px;
	border: 2px solid #7f0303;
	border-radius: 5px;
	background: linear-gradient(135deg, #7f0303 0%, #5f0202 100%);
	color: white;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: pointer;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(127, 3, 3, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transform: translateZ(0);
	backface-visibility: hidden;
	animation: float-up 0.6s ease-out;
}

button:hover, .btn:hover, .butn-bg:hover, a.butn-bg:hover {
	animation: hover-lift 0.3s ease-out forwards;
	box-shadow: 0 8px 25px rgba(127, 3, 3, 0.6), 0 0 20px rgba(127, 3, 3, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 0, 127, 0.8);
	transform: translateY(-4px) translateZ(20px);
}

button:active, .btn:active, .butn-bg:active, a.butn-bg:active {
	transform: translateY(-2px) translateZ(10px);
	box-shadow: 0 4px 10px rgba(127, 3, 3, 0.6), inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* ===== HEADER ENHANCED ===== */
#header {
	padding: 5px 0;
	display:block;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1), 0 0 30px rgba(127, 3, 3, 0.1);
	backdrop-filter: blur(10px);
	position: relative;
	animation: fade-in-down 0.8s ease-out;
}

#header::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, #7f0303, transparent);
	animation: shimmer 2s infinite;
}
body {
	font-size:14px;
	color:#2d363d;
	font-family: 'Montserrat', sans-serif;
	box-sizing:border-box;
	overflow-x: hidden;
}
body::-webkit-scrollbar-track {
 	-webkit-box-shadow: inset 0 0 6px rgba(40,75,140,0.1);
 	background-color:#f6f6f6;
}
body::-webkit-scrollbar { 
	width:7px;
}
body::-webkit-scrollbar-thumb { 
	background-color:#031d40; 
	border-radius:10px;
}
body::-webkit-scrollbar-thumb:hover { 
	background-color:#000;
}
/**************************/
.support {
	float: left;
	margin-right: 20px;
}
.support ul li {
	display: inline-block;
    color: #031d40;
    font-size: 14px;
}
.support ul li img {
	width: 55px;
    height: auto;
    margin-right: 8px;
    margin-top: -10px;
}
.support ul li span {
	font-size: 15px;
    font-weight: 600;
    color: #7f0303;
}
.support ul li a {
	padding: 0px !important;
}
li.support {
	border-left:3px solid #eeeeee;
	margin-left: 15px;
	padding-left: 15px;
}
/*************************/
.fixed-top {
	position: fixed;
	display:block;
	width: 100%;
	top: 0;
	z-index: 1000;
}
.logo {
	display:block;
	width: 20%;
	animation: slide-in-left 0.8s ease-out;
}
.logo img {
	width: 100%;
	transition: transform 0.4s ease;
	filter: drop-shadow(0 0 8px rgba(127, 3, 3, 0.3));
}
.logo img:hover {
	transform: scale(1.05) rotateZ(-2deg);
	filter: drop-shadow(0 0 15px rgba(127, 3, 3, 0.6));
}
.header_menu {
    display: flex;
}
.header-scrolled .main-nav > ul {
	margin-top:15px;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.main-nav > ul {
	margin-top:15px;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.main-nav > ul > li {
	position: relative;
	white-space: nowrap;
	float: left;
	perspective: 1000px;
}
.main-nav a {
	color: #031d40;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.50px;
    transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	padding:10px 8px;
	transform: translateZ(0);
	backface-visibility: hidden;
}
.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
	color: #7f0303;
	text-decoration: none;
	animation: neon-glow 1.5s ease-in-out infinite;
	transform: translateY(-3px) translateZ(10px);
	text-shadow: 0 0 8px rgba(127, 3, 3, 0.6);
	padding-bottom: 5px;
	border-bottom: 2px solid #7f0303;
}
.main-nav .drop-down ul {
	display: block;
	position: absolute;
	left: 0;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: ease all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	padding: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,249,250,0.98) 100%);
	box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15), 0 0 20px rgba(127, 3, 3, 0.2);
    border: 2px solid rgba(127, 3, 3, 0.3);
    border-radius: 8px;
	backdrop-filter: blur(10px);
	transform: translateY(-10px);
}
.main-nav .drop-down:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
	transform: translateY(0);
}
.main-nav .drop-down li {
	min-width: 160px;
	position: relative;
}
.main-nav .drop-down ul li {
	border-bottom: 1px solid #f4f4f7;
	margin-top:0px;
	transition: all 0.3s ease;
}
.main-nav .drop-down ul li:hover {
	background: linear-gradient(135deg, rgba(127, 3, 3, 0.05) 0%, rgba(3, 29, 64, 0.05) 100%);
	border-left: 3px solid #7f0303;
	padding-left: 7px;
}
.main-nav .drop-down ul li a {
	padding: 8px 10px;
    color: #031d40;
    border-radius: 4px;
	font-weight:500;
    transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
	font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.50px;
    font-size: 13px;
    text-transform: capitalize;
	display: block;
}
	width:100%;
}
.main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
	color: #fff;
    background-color: #031d40;
}
.main-nav .drop-down > a:after {
	content: "\f107";
	font-family: FontAwesome;
	padding-left: 10px;
}
.main-nav .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 10px);
}
.main-nav .drop-down .drop-down:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
}
.main-nav .drop-down .drop-down > a {
	padding-right: 35px;
}
.main-nav .drop-down .drop-down > a:after {
	content: "\f105";
	position: absolute;
	right: 15px;
}
/*******************/
.mobile-nav {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 9999;
	overflow-y: auto;
	left: -260px;
	width: 260px;
	padding-top: 18px;
	background: #f8f8f8;
	transition: 0.4s;
}
.mobile-nav a {
	display: block;
	color: #000;
	padding: 6px 20px;
	font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    position: relative;
    font-family: Montserrat;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
	color: #000;
	text-decoration: none;
}
.mobile-nav .drop-down > a:after {
	content: "\f078";
	font-family: FontAwesome;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}
.mobile-nav .active.drop-down > a:after {
	content: "\f077";
}
.mobile-nav .drop-down > a {
	padding-right: 35px;
}
.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}
.mobile-nav .drop-down li {
	padding-left: 20px;
}
.mobile-nav-toggle {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 999;
	border: 0;
	background: none;
	font-size: 35px;
	transition: all 0.4s;
	outline: none;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}
.mobile-nav-toggle i {
	margin: 18px 18px 0 0;
	color: #7f0303;
}
.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	overflow: hidden;
	display: none;
}
.mobile-nav-active {
	overflow: hidden;
}
.mobile-nav-active .mobile-nav {
	left: 0;
}
.mobile-nav-active .mobile-nav-toggle i {
	color: #2e2f43;
}
/***********************/
#carousel {
	overflow:hidden;
}
.carousel-inner img {
	width:100%;
	height:auto;
}
.carousel-inner {
	position:relative;
}
#carousel .carousel-control {
	background:none;
	top:50%;
	font-size:20px;
	text-align:center;
	width:40px;
	height:40px;
	opacity:1;
	position:absolute;
}
#carousel .carousel-control-right{
	right:4%;
}
#carousel .carousel-control-left{
	left:2%;
}
#carousel .carousel-control-right span{
	-webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
	visibility:hidden;
	transition:transform 0.5s ease;
	opacity:0;
}
#carousel .carousel-control-left span{
	-webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
	visibility:hidden;
	transition:transform 0.5s ease;
	opacity:0;
}
#carousel:hover .carousel-control-right span{
	-webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
	visibility:visible;
	opacity:1;
}
#carousel:hover .carousel-control-left span{
	-webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
	visibility:visible;
	opacity:1;
}
#carousel .carousel-control span {
	color: #fff;
    background: rgb(255 255 255 / 50%);
    height: 50px;
    width: 50px;
    border-radius: 50px;
    z-index: 121;
    line-height: 50px;
    text-align: center;
    position: absolute;
}
/**********************/
#about_main {
	padding: 70px 0;
}
.about_sec {
	margin-top: -100px !important;
    z-index: 2;
    padding: 0px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2), 0 0 40px rgba(127, 3, 3, 0.15);
	border-radius: 15px;
	animation: float-up 0.8s ease-out;
	transform: translateZ(0);
	backface-visibility: hidden;
}
.about_sec:before {
    content: '';
    position: absolute;
    width: 25%;
    height: 80%;
    left: -10px;
    bottom: -10px;
    border-left: 10px #7f0303 solid;
    border-bottom: 10px #7f0303 solid;
	border-radius: 0 0 15px 0;
	box-shadow: -8px -8px 20px rgba(127, 3, 3, 0.3);
	animation: pulse-glow 2s ease-in-out infinite;
}
.about_sec:after {
    content: '';
    position: absolute;
    width: 25%;
    height: 80%;
    right: -10px;
    top: -10px;
    border-top: 10px #031d40 solid;
    border-right: 10px #031d40 solid;
	border-radius: 15px 0 0 0;
	box-shadow: 8px 8px 20px rgba(3, 29, 64, 0.3);
	animation: pulse-glow 2s ease-in-out infinite 0.3s;
}
.about_detail_sec {
	padding: 40px;
}
.about_dtl h1 {
	font-size: 32px;
    color: #031d40;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
	animation: slide-in-left 0.8s ease-out;
}
.about_dtl h1:after {
    position: absolute;
    content: '';
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #7f0303 0%, #031d40 100%);
    display: block;
    left: 0;
    bottom: 0;
	border-radius: 3px;
	animation: neon-border 2s ease-in-out infinite;
}
.about_dtl p {
    color: #555;
    display: block;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: 500;
    line-height: 26px;
    padding-bottom: 12px;
	animation: fade-in-down 1s ease-out;
}
.about_dtl a {
	padding: 10px 35px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #031d40;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 3px 3px 0 rgb(0 0 0 / 40%);
}
.about_dtl a:hover {
    background: #7f0303;
    color: #fff;
}
/**********************/
#project_main {
    padding: 70px 0;
    background: linear-gradient(135deg, #031d40 0%, #1a3a52 50%, #031d40 100%);
	position: relative;
	overflow: hidden;
}

#project_main::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(127, 3, 3, 0.15) 0%, transparent 50%),
	            radial-gradient(circle at 80% 80%, rgba(255, 0, 127, 0.1) 0%, transparent 50%);
	pointer-events: none;
	animation: shimmer 3s infinite;
}
.hm_product_hed h2 {
	padding-bottom: 10px;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    color: #fff;
    text-transform: uppercase;
}
.hm_product_hed span {
	padding:0 10% 0;
	text-align:center;
	font-size:15px;
	display:block;
	color: #fff;
}
.hm_product_hed {
	padding-bottom:35px;
}
.product_bx {
    background: #fefefe;
    padding: 4px;
}
.product_bx h5 {
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.25px;
    margin: 15px 6px 12px 6px;
    font-size: 18px;
    color: #7f0303;
}
a:hover .product_bx h5 {
	color: #031d40;
}
.product_dtl .arrow {
	display:flex;
    float:right;
    margin-top:-85px;
	z-index:999;
	position:relative;
	display:none;
}
.product_dtl .arrow span i {
	width:50px;
	height:50px;
	line-height:50px;
	font-size:20px;
	color:#fff;
	display:block;
	text-align:center;
	background:#e41e26;
}
.product-slider .owl-nav {
	margin-top:50px;
	display:block;
	position:relative;
}
.product-slider .owl-nav:before {
	position:absolute;
	content:'';
	width:140%;
	height:2px;
	left:-35%;
	right:0;
	bottom:25px;
	background:#fefefe;
	display:block;
}
.product-slider .owl-prev span {
    position:absolute;
    content:'';
    bottom:0;
	right:100px;
    width:50px;
    height:50px;
    line-height:40px;
    font-size:35px;
    color:#031d40;
    background:#fefefe;
    border-radius:50px;
    display:block;
	border:2px solid rgb(3 29 64 / 50%);
}
.product-slider .owl-next span {
    position:absolute;
    content:'';
    bottom:0;
	right:40px;
    width:50px;
    height:50px;
    line-height:40px;
    font-size:35px;
    color:#031d40;
    background:#fefefe;
    border-radius:50px;
    display:block;
	border:2px solid rgb(3 29 64 / 50%);
}	
/**********************/
#process_main {
	padding: 50px 0 30px 0;
}
.process_hed h3 {
    padding-bottom: 20px;
    text-align: center;
    font-size: 23px;
    font-weight: bold;
    letter-spacing: 1px;
    display: block;
    color: #031d40;
    text-transform: uppercase;
}
.process_dtl_bx {
	text-align: center;
	display:block;
	padding:20px;
	background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
	box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1), 0 0 15px rgba(127, 3, 3, 0.1);
	margin-bottom: 20px;
	border-radius: 15px;
	border: 1px solid rgba(127, 3, 3, 0.2);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transform: translateZ(0);
	backface-visibility: hidden;
}

.process_dtl_bx:hover {
	transform: translateY(-12px) translateZ(20px) scale(1.02);
	box-shadow: 0px 15px 40px rgba(127, 3, 3, 0.2), 0 0 30px rgba(127, 3, 3, 0.3);
	animation: pulse-glow 0.6s ease-in-out;
	border-color: rgba(127, 3, 3, 0.6);
}
.process_mg img {
	border-radius: 5px;
}
/**********************/
#other_section {
	padding: 50px 0;
	background: #eeeeee;
}
.manufacturer_dtl h4 {
	font-size: 21px;
    color: #031d40;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
    margin-top: 10%;
}
.manufacturer_dtl h4:after {
    position: absolute;
    content: '';
    width: 120px;
    height: 4px;
    background: #031d40;
    display: block;
    left: 0;
    bottom: 0;
}
.banner_bx {
	padding:25px 15px;
	border: 2px solid rgba(127, 3, 3, 0.3);
	background: linear-gradient(135deg, #031d40 0%, #1a3a52 100%);
	box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(127, 3, 3, 0.2);
	text-align:center;
	margin-top:15px;
	cursor:pointer;
	border-radius: 10px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transform: translateZ(0);
	backface-visibility: hidden;
	position: relative;
	overflow: hidden;
}

.banner_bx::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	animation: shimmer 2s infinite;
	transition: all 0.4s ease;
}

.banner_bx span {
	color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.25px;
	display:block;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.banner_bx span img {
	margin-right:15px;
	width: 40px;
	filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
	transition: all 0.3s ease;
}

.banner_bx:hover {
	background: linear-gradient(135deg, #7f0303 0%, #a00404 100%);
	border: 2px solid rgba(255, 0, 127, 0.8);
	box-shadow: 0px 12px 35px rgba(127, 3, 3, 0.4), 0 0 25px rgba(127, 3, 3, 0.6);
	animation: neon-border 1.5s ease-in-out infinite;
	transform: translateY(-8px) translateZ(15px);
}

.banner_bx:hover span {
	color:#fff;
	animation: neon-glow 1s ease-in-out infinite;
}

.banner_bx:hover span img {
	filter: drop-shadow(0 0 10px rgba(255, 200, 200, 0.8));
	transform: scale(1.1) rotate(5deg);
}
/**********************/
#industries_main {
	padding: 50px 0 100px 0;
}
.industries_hed h3 {
    padding-bottom: 20px;
    text-align: center;
    font-size: 23px;
    font-weight: bold;
    letter-spacing: 1px;
    display: block;
    color: #031d40;
    text-transform: uppercase;
}
.industries_bx {
    height: 160px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    text-align: center;
    display: block;
    line-height: 148px;
    background-size: 67%;
    margin-bottom: 40px;
    border-radius: 15px;
    border: 2px solid rgba(127, 3, 3, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08), 0 0 15px rgba(127, 3, 3, 0.1);
    transform: translateZ(0);
    backface-visibility: hidden;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.industries_bx::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(127, 3, 3, 0.05) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.4s ease;
	border-radius: 15px;
}

.industries_bx:hover {
	transform: translateY(-15px) translateZ(25px) scale(1.03) rotateX(5deg);
	box-shadow: 0px 15px 40px rgba(127, 3, 3, 0.25), 0 0 30px rgba(127, 3, 3, 0.2);
	border-color: rgba(127, 3, 3, 0.6);
	animation: pulse-glow 0.6s ease-in-out;
}

.industries_bx:hover::before {
	opacity: 1;
}
.industry_name h5 {
	text-align: center;
	font-size: 18px;
	color: #7f0303;
	display: block;
	padding-top: 30px;
	text-transform: capitalize;
	font-weight: 600;
	letter-spacing: 0.25px;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}

.industries_bx:hover .industry_name h5 {
	animation: neon-glow 1s ease-in-out infinite;
	color: #ff0080;
}

.industries_bx img {
	max-width: 80px;
    height: auto;
    margin: 0 auto;
    display: block;
    padding-top: 30px;
	filter: drop-shadow(0 0 8px rgba(127, 3, 3, 0.3));
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	z-index: 2;
}

.industries_bx:hover img {
	filter: drop-shadow(0 0 15px rgba(127, 3, 3, 0.8));
	transform: scale(1.15) rotateZ(-10deg);
}
.industry-slider .owl-nav button.owl-next, .industry-slider .owl-nav button.owl-prev, .industry-slider button.owl-dot {
	display:none;
}
/* ===== PREMIUM FOOTER STYLING ===== */
#background_curve {
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
	position: relative;
	overflow: hidden;
}

#background_curve::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(127, 3, 3, 0.1) 0%, transparent 50%),
	            radial-gradient(circle at 80% 80%, rgba(3, 29, 64, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.footer_curve {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 0;
}

.footer_pd {
	padding: 60px 0 40px 0;
	position: relative;
	z-index: 2;
}

.footer_pd .container {
	position: relative;
	z-index: 2;
}

/* ===== CONTACT INFO SECTION ===== */
.footer_hed {
	margin-bottom: 40px;
}

.footer_hed h6 {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 15px;
	display: block;
	width: 100%;
}

.footer_hed h6::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #7f0303 0%, #ff0080 100%);
	border-radius: 2px;
	animation: neon-border 2s ease-in-out infinite;
}

.foot_cont {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
	width: 100%;
}

.foot_cont:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.foot_cont:hover {
	transform: translateX(10px);
	padding-left: 10px;
}

.foot_cont i {
	flex-shrink: 0;
	margin-right: 20px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 10px;
	background: linear-gradient(135deg, #7f0303 0%, #a00404 100%);
	box-shadow: 0 0 20px rgba(127, 3, 3, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 22px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.foot_cont:hover i {
	box-shadow: 0 0 30px rgba(127, 3, 3, 0.9), 0 0 40px rgba(255, 0, 127, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	transform: scale(1.15) rotateY(10deg);
	animation: spin-3d 3s linear infinite;
}

.cont {
	flex: 1;
	padding: 0;
}

.cont p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	line-height: 26px;
	letter-spacing: 0.5px;
	margin: 0;
	padding: 0;
	font-weight: 500;
}

.cont strong {
	color: #ff80b8;
	display: block;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: 1px;
	text-transform: uppercase;
	animation: neon-glow 2s ease-in-out infinite;
}

.cont span {
	display: block;
	margin: 5px 0;
}

.cont span a {
	color: rgba(255, 255, 255, 0.85);
	padding: 5px 10px 5px 0;
	border-bottom: 2px solid transparent;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.5px;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: inline;
	text-decoration: none;
}

.cont span a::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: #7f0303;
	transition: width 0.3s ease;
}

.cont span a:hover {
	color: #ff80b8;
	text-shadow: 0 0 15px rgba(127, 3, 3, 0.9);
	border-bottom-color: #7f0303;
	padding-left: 5px;
}

/* ===== PRODUCT CATEGORIES MULTI-COLUMN STYLING ===== */
.footer_list {
	clear: both;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: flex-start;
	align-content: flex-start;
}

.footer_list h6 {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 15px;
	display: block;
	width: 100%;
	flex-basis: 100%;
}

.footer_list h6::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #7f0303 0%, #ff0080 100%);
	border-radius: 2px;
	animation: neon-border 2s ease-in-out infinite;
}

.footer_list ul {
	flex: 0 1 calc(33.333% - 14px);
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
}

.footer_list ul li {
	display: block;
	margin-bottom: 12px;
	list-style: none;
	transition: all 0.3s ease;
	padding-left: 0;
}

.footer_list ul li::before {
	content: '▸ ';
	color: #ff0080;
	font-weight: bold;
	margin-right: 8px;
	transition: all 0.3s ease;
}

.footer_list ul li:hover::before {
	color: #7f0303;
	text-shadow: 0 0 10px rgba(127, 3, 3, 0.8);
	margin-right: 12px;
}

.footer_list ul li a {
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.5px;
	position: relative;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	text-decoration: none;
	display: inline;
}

.footer_list ul li a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #7f0303 0%, #ff0080 100%);
	transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer_list ul li a:hover {
	color: #fff;
	text-shadow: 0 0 12px rgba(127, 3, 3, 0.8);
	padding-left: 5px;
}

.footer_list ul li a:hover::after {
	width: 100%;
}

/* ===== FOOTER COPY SECTION ===== */

.footer_curve {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 0;
}

.footer_copy {
	padding: 25px 0;
	background: linear-gradient(135deg, #000a0f 0%, #0a0f15 100%);
	border-top: 2px solid rgba(127, 3, 3, 0.3);
	position: relative;
}

.copy_dtl p {
	color: rgba(255, 255, 255, 0.7);
	display: block;
	font-size: 14px;
	letter-spacing: 0.5px;
	font-weight: 500;
	text-align: center;
	transition: all 0.3s ease;
	margin: 0;
}

.copy_dtl p:hover {
	color: #ff80b8;
	text-shadow: 0 0 15px rgba(127, 3, 3, 0.8);
}

.copy_dtl p strong {
	color: #7f0303;
	font-weight: 700;
}

.social_link ul {
	margin: 15px auto 0;
	display: table;
}
/**********************/
#inner_banner {
	background: url(../images/inner_bg.jpg) center no-repeat;
	padding: 200px 0 0 0;
	text-align: center;
	display: block;
	background-size: cover;
	min-height: 350px;
	position: relative;
}
#inner_banner:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgb(3 29 64 / 75%);
}
.banner_head h1 {
	font-size: 35px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
    position: relative;
    z-index: 3;
    text-transform: uppercase;
}
/**********************/
#product_sct {
	padding: 60px 0 20px 0;
}
.product_sct_lft span {
	position: relative;
	font-size: 20px;
	color: #7f0303;
	display: inline-block;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding-left: 60px;
}
.product_sct_lft span:before {
	position: absolute;
	content: '';
	left: 0;
    top: 50%;
    content: "";
    width: 40px;
    height: 2px;
    background: #7f0303;
    transform: translateY(-50%);
}
.product_sct_lft h3 {
    font-size: 23px;
    font-weight: 600;
    padding-top: 15px;
    letter-spacing: 1px;
    display: block;
    color: #031d40;
}
.product_sct_para p {
    color: #787878;
    display: block;
    font-size: 14px;
    letter-spacing: 0.25px;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 10px;
}

/* ===== RESPONSIVE FOOTER STYLING ===== */
@media (max-width: 992px) {
	.footer_list ul {
		flex: 0 1 calc(50% - 10px);
	}
}

@media (max-width: 768px) {
	.footer_pd {
		padding: 40px 0 30px 0;
	}

	.footer_hed h6, .footer_list h6 {
		font-size: 16px;
		margin-bottom: 20px;
		letter-spacing: 1.5px;
	}

	.foot_cont {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.footer_list ul {
		flex: 0 1 100%;
	}

	.footer_list ul li {
		margin-bottom: 10px;
	}

	.copy_dtl p {
		font-size: 13px;
	}
}

@media (max-width: 576px) {
	.footer_pd {
		padding: 30px 0 20px 0;
	}

	.footer_hed h6, .footer_list h6 {
		font-size: 14px;
		margin-bottom: 15px;
		letter-spacing: 1px;
	}

	.footer_hed h6::after, .footer_list h6::after {
		width: 40px;
	}

	.foot_cont {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 18px;
		padding-bottom: 18px;
	}

	.foot_cont i {
		margin-right: 0;
		margin-bottom: 12px;
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 18px;
	}

	.foot_cont:hover i {
		transform: scale(1.1) rotateY(10deg);
	}

	.cont p {
		font-size: 13px;
		line-height: 22px;
	}

	.cont strong {
		font-size: 14px;
	}

	.footer_list ul li a {
		font-size: 13px;
	}

	.copy_dtl p {
		font-size: 12px;
	}
}
/**********************/
#product_descp {
	padding: 20px 0 150px 0;
}
.product_images {
	position: relative;
}
.overview_bx {
	position: absolute;
    content: '';
    top: 5%;
    left: 0;
    background: #031D3F;
    display: block;
    width: 130%;
    z-index: 2;
    height: 90%;
    padding: 30px 25px;
}
.product_detail h4 {
	font-size: 21px;
	color: #fff;
	display: block;
	padding: 0 0 7px 0;
	font-weight: 600;
	text-transform: uppercase;
	border-bottom: 3px dashed #fff;
	letter-spacing: 1px;
	margin-bottom: 15px;
}
.product_detail p {
    color: #fff;
    display: block;
    font-size: 14px;
    letter-spacing: 0.25px;
    font-weight: 500;
    line-height: 22px;
    padding-bottom: 10px;
}
.enquire_block ul span {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-transform: capitalize;
    color: #7f0303;
    letter-spacing: 0.25px;
}
.enquire_block ul {
	margin:50px auto 0;
	display:table;
}
.enquire_block ul li {
	display:inline-block;
}
.enquire_block ul li a {
	display: table;
    margin: 10px auto 0;
    padding: 10px 30px;
    background-color: #031d40;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.50px;
	margin-right:10px;
}
.enquire_block ul li a:hover {
    background-color: #7f0303;
	color:#fff;
}
/**********************/
.location {
    border: 0px;
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
}
#contact_sct {
	padding: 60px 0;
}
.contact_dtl h5 {
    font-weight: bold;
    letter-spacing: 0.25px;
    padding-bottom: 15px;
    font-size: 18px;
    color: #7f0303;
    text-transform: capitalize;
}
.contact_details ul li {
	letter-spacing:0.25px;
}
.contact_details ul li img {
	margin-right:15px;
	float:left;
	display:block;
	background: #031d40;
	padding: 7px;
    width: 36px;
}
.contact_details ul li span {
	color: #000;
    display: flex;
    font-size: 14px;
    letter-spacing: 0.50px;
    font-weight: 600;
    line-height: 22px;
}
.contact_details ul li a {
	font-weight: 600;
    letter-spacing: 0.50px;
    display: contents;
    font-size: 14px;
    color: #2d363d;
}
.contact_details ul li a:hover {
	color: #7f0303;
}
.location {
	border: 0px;
	width: 100%;
	height: 350px;
	margin-bottom: 20px;
}
.contact_form {
	padding-left: 30px;
}
.contact_form h3 {
	font-weight: bold;
    color: #7f0303;
    text-transform: uppercase;
    font-size: 23px;
    letter-spacing: 1px;
    padding-bottom: 5px;
}
.contact_form_bg {
	background: #eeeeee;
	padding: 20px 20px;
	border-radius: 10px;
}
.contact_form_bg span {
	color: #000;
    display: block;
    font-size: 14px;
    letter-spacing: 0.25px;
    font-weight: 600;
    padding-bottom: 20px;
}
.contact_form_bg .form-group input {
    position: relative;
    display: block;
    width: 100%;
    color: #031d40;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    background: #fff;
    border: 1px solid transparent;
	margin-bottom: 15px;
}
.contact_form_bg .form-group textarea {
    display: block;
    width: 100%;
    padding: 12px 15px;
    color: #031d40;
    height: 70px;
    font-size: 14px;
    resize: none;
    border-radius: 10px;
	border:0px;
	margin-bottom: 20px;
    background: #fff;
}
.butn-bg {
    font-size: 16px;
    padding: 10px 40px;
    background: #7f0303;
    color: #fff;
	cursor:pointer;
	text-transform: uppercase;
	font-weight:600;
    display: block;
    margin-top: 10px;
	border:2px solid #fff;
}
.butn-bg:hover {
	border:2px solid #fff;
	color:#fff;
	font-weight:600;
	background:#031d40;
}
/**********************/
#gallery_sct {
	padding: 60px 0 150px 0;
}
/**********************/
#about_sct {
	padding: 60px 0 150px 0;
}
.about_inner_mg {
	-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 20px rgb(82 85 90 / 10%);
    -moz-box-shadow: 0 0 20px rgba(82,85,90,0.1);
    box-shadow: 0 0 20px rgb(82 85 90 / 10%);
    padding: 10px;
}
.about_inner_dtl {
	padding-left: 30px;	
	padding-top: 30px;
}
.about_sec0 span {
	position: relative;
	font-size: 20px;
	color: #7f0303;
	display: inline-block;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding-left: 60px;
}
.about_sec0 span:before {
	position: absolute;
	content: '';
	left: 0;
    top: 50%;
    content: "";
    width: 40px;
    height: 2px;
    background: #7f0303;
    transform: translateY(-50%);
}
.about_sec0 h1 {
    font-size: 30px;
    color: #031d40;
    font-weight: 600;
    letter-spacing: 1px;
    padding-bottom: 15px;
}
.about_sec0 p {
    color: #787878;
    display: block;
    font-size: 14px;
    letter-spacing: 0.25px;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 10px;
}
.about_list ul {
	padding-top: 20px;
}
.about_list ul li {
	float: left;
	display: inline-block;
	padding-right: 20px;
}
.about_list ul li span {
	position: relative;
	font-size: 17px;
	color: #7f0303;
	display: inline-block;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding-left: 30px;
}
.about_list ul li span:before {
	position: absolute;
	content: '';
	left: 0;
    top: 50%;
    content: "";
    width: 20px;
    height: 2px;
    background: #7f0303;
    transform: translateY(-50%);
}
/**********************/
.enquire_btn {
    right: 0;
    position: fixed;
    top: 250px;
    z-index: 10000;
}
.btm-watsap {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 99;
}
