/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Bebas+Neue&display=swap');
*{
	margin: 0;
	padding: 0;
}
:root {
    --primary: #d7162f;
    --light: #fff;
    --dark: #000;
	--secondary: #7a7a7a;
}
body {
    margin: 0;
    padding: 0;
	font-family: 'Roboto', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
	    letter-spacing: 2px;
}
.container{
	max-width: 1250px;
}
/* ================================
   Desktop Navigation
================================ */
.site-header .main-header {
/* 	 position: absolute; */
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10;
      background: transparent !important;
	padding: 10px 0;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
    background: #ffffffba !important;
    padding: 15px 6px; 
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); 
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav > li {
  position: relative;
}
.btn-div {
    display: flex;
    align-items: center;
}
.btn-primary {
    position: relative;
    padding: 10px 45px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 1.5px;
    color: #fff !important;
    background: #111;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
}
.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: 0.4s ease;
    z-index: -1;
}
.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary);
    transform: scale(1.2);
    opacity: 0;
    transition: 0.4s ease;
}
.btn-primary:hover::before {
    left: 0;
}
.btn-primary:hover::after {
    transform: scale(1);
    opacity: 1;
}
.btn-primary:hover {
    color: #000 !important;
}
a.btn-primary.whatsapp {
    background: #056305 !important;
}

.wpcf7-submit {
    background: var(--primary);
    padding: 8px 30px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    border: none;
}
.site-header .nav > li > a {
  color: #333;
  text-decoration: none;
  padding: 8px 15px;
  font-weight: 700 !important;
  transition: all 0.3s ease;
  display: inline-block;
    transition: color 0.3s ease;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
    color: var(--primary) !important;
}
.site-header .nav > li > a:hover::after,
.site-header .nav > li.current-menu-item > a::after,
.site-header .nav > li.current_page_item > a::after {
    transform: scaleX(1); 
}
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: auto;
  min-width: 300px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
    padding: 8px 100px 8px 8px;
    color: #333;
    display: block;
    font-weight: 600;
    width: 100%;
    text-decoration: none;
    font-size: 16px;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: var(--primary);
	color: #000;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
.pagination a:hover{
	color: #fff !important;
}
/* ================================
   		Mobile Menu
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#mobileMenu li {
    padding: 10px;
}
#mobileMenu li a {
    text-decoration: none;
    font-size: 16px;
}
/* ================================
  		Footer Section
================================ */
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
ul.footer-details i {
    background: var(--primary);
    color: #fff !important;
    padding: 15px;
    font-size: 20px;
    margin-right: 15px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
    font-family: "Syne", sans-serif;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 155px;
    display: block; 
}
.footer_menu {
    padding: 40px 0 0 0;
}
.footer-details li {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
footer ul li.menu-item a {
    display: inline-block;
    line-height: 40px;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
footer h3 {
    margin-bottom: 18px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
a{
	color: var(--dark) !important;
}
footer .menu li {
    padding-left: 0 !important;
    color: var(--dark) !important;
    transition: transform 0.3s ease;
    line-height: 35px;
}
footer .menu li::after {
  content: "\f061"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: var(--primary);
}
footer .menu li:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
footer .menu li:hover{
	color: var(--primary) !important;
	transform: translateX(20px);
}
footer .social-icons {
    display: flex;
}
footer .social-icons a:hover{
	background: var(--primary);
}
footer .social-icons a {
    display: flex;
    height: 40px;
    width: 40px;
    text-decoration: none;
    color: var(--light);
    background-color: var(--secondary);
    align-items: center;
    justify-content: center;
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 200;
    position: relative;
    text-decoration: none;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid var(--secondary);
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: var(--white);
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer {
    padding-top: 2rem;
    background: url(https://www.supersteel.in/wp-content/uploads/2026/01/footer-back.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
/* ================================
   Scroll To top Button
================================ */
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 15%;
    right: 30px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 2;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}
.hm-title-bgbox h2 {
    color: #fff;
    font-size: 38px;
    line-height: 50px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 30px;
}
.contact-btom-img{
	position: relative;
}
.overlay1{
    background-color: #c6d5ee;
    opacity: 0.1;
    height: 100%;
    width: 100%;
    position: absolute;
}
.contact-btom-img img{
	height: 100%;
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
}
a#instagram {
    cursor: pointer;
    position: fixed;
    bottom: 25%;
    right: 30px;
    padding: 0 9px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white) !important;
    z-index: 2;
    background: linear-gradient(135deg,#f9ce34,#ee2a7b,#6228d7);
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
}
a#instagram i {
    color: #fff;
}
/* ================================
    	Curser
================================ */
.custom-cursor__cursor{
  width:25px;
  height:25px;
  border-radius:50%;
  border:1px solid var(--primary);
  position:fixed;
  left:0;
  top:0;
  pointer-events:none;
  transform:translate(-50%,-50%);
  transition:all 200ms ease-out;
  z-index:999991;
}
.custom-cursor__cursor-two{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--primary);
  opacity:.3;
  position:fixed;
  left:0;
  top:0;
  pointer-events:none;
  transform:translate(-50%,-50%);
  transition:width .3s,height .3s,opacity .3s;
  z-index:999991;
}
a:hover ~ .custom-cursor__cursor,
button:hover ~ .custom-cursor__cursor{
  transform:translate(-50%,-50%) scale(1.4);
}
a:hover ~ .custom-cursor__cursor-two,
button:hover ~ .custom-cursor__cursor-two{
  width:20px;
  height:20px;
  opacity:.15;
}
/*=================================
         Preloader
==================================*/
#preloader{
    position:fixed;
    width:100%;
    height:100%;
    background: #fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
	top:0;
}
.loader-image{
    width:180px;
    position:absolute;
    border-radius:10px;
}
.final-image{ 
    opacity:0; 
}
.hero-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-img img{
	width: 60%;
	margin: auto;
}

/* ================================
    	Hero Section
================================ */
.hero-section {
/*     padding: 200px 0 200px; */
	padding: 100px 0;
    background: url(https://www.supersteel.in/wp-content/uploads/2026/01/slider-bg.avif) #ff00001c;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	position: relative;
}
.section-title{
	font-size: 60px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 2.3px;
	color: var(--secondary);
}
.section-title span{
	color: var(--primary);
}
.btn-box {
    display: flex;
    gap: 20px;
}
.pxl-heading-text {
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: normal;
}
.pxl-heading-text span.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp 0.6s ease forwards;
}
.pxl-heading-text span.space {
    display: inline-block;
    width: 0.3em; 
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.arrow {
    left: 45%;
    position: absolute;
    bottom: 35%;
}
.hero-section .btn-box {
    margin-top: 3rem;
}
.video-btn {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    margin-left: 2rem;
    overflow: visible;
}
.video-btn::before {
    content: "\f04b"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 22px;
    color: #fff;
    position: relative;
    z-index: 2;
}
.video-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.4);
    animation: ripple 2.5s infinite;
    z-index: 0;
}
.video-btn {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    animation: ripple2 2.5s infinite 1.2s;
}
@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2.3);
        opacity: 0;
    }
}
@keyframes ripple2 {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    100% {
        box-shadow: 0 0 0 40px rgba(255, 0, 0, 0);
    }
}
.floating-img {
    animation: floatY 3s ease-in-out infinite;
}
@keyframes floatY {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
/* ================================
    	Quality Section
================================ */
.quality-box {
    text-align: center;
}
.quality-box p {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}
.quality-box img {
    height: auto;
    width: 65px;
    background: #ffffff;
    padding: 7px;
    margin-bottom: 10px;
	border-radius: 10px;
}
section.quality {
    width: 70%;
    margin: auto;
    background: #7a7a7a;
    color: #fff;
    margin-top: -60px;
	position: relative;
}
.quality-box {
    padding: 20px;
}
.quality .col-md-4:nth-child(2) .quality-box {
    background: var(--primary); 
}
/* ================================
    About Section
================================ */
.about-section{
    padding: 70px 0;
}
.left-box{
    border-radius:20px;
    overflow:hidden;
}
.left-box img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    height: 300px;
}
.experience-box {
    background: var(--primary);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 130px;
    margin-bottom: 20px;
}
.experience-box h2{
    font-size:60px;
    margin:0;
    font-weight:700;
}
.experience-box span{
    font-size:16px;
    line-height:1.2;
}
.review-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 130px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.08);
    text-align: center;
}
.review-box h3{
    font-size:42px;
    color:#ff0000;
    margin:0;
    font-weight:700;
}
.about-title small{
    color: var(--primary);
    font-weight:600;
    letter-spacing:1px;
}
.about-text{
    color:#666;
    margin-top:20px;
    line-height:1.7;
}
.stat-box{
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    display:flex;
    gap:15px;
    align-items:center;
}
.stat-box i{
    font-size:36px;
    color:#ff0000;
}
.stat-box h4{
    margin:0;
    font-weight:700;
}
.stat-box p{
    margin:0;
    font-size:14px;
    color:#666;
}
.about-title .section-title {
    font-size: 45px;
}
/* ================================
   		Client Section
================================ */
section.client {
    padding: 50px 0;
}
.client .section-title {
    text-align: center;
    position: relative;
    font-size: 35px;
    margin-bottom: 3rem;
}
.carousel-client .slide {
    text-align: center;
}
.carousel-client img {
    max-width: 80%;
    height: auto;
}
.bx-wrapper{
	margin:0 !important;
	max-width: 100% !important;
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
	background: #fff !important;
}
.slide {
    display: flex;
    height: 90px;
    align-items: center;
    justify-content: center;
}
/* ================================
   Feature Power Tools Section
================================ */
.services {
    padding: 60px 0;
    background: #d7162f17;
}
.service-card{
    background:#fff;
    padding:45px 30px 0;
    position:relative;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    transition:.4s ease;
    height:100%;
}
.service-card:hover{
    transform:translateY(-12px);
}
.service-icon{
    width:64px;
    height:64px;
    background:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:-32px;
    left:30px;
    transition:.4s;
    padding: 10px;
}
.tool-meta {
    display: flex;
    gap: 15px;
    font-size: 16px;
    color: #666;
    margin: 10px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #8080803b;
}
.tool-meta i{
	color: var(--primary);
}
.service-card:hover .service-icon{
    background:var(--primary);
}
.service-icon img{
    filter: invert(1);
}
.service-card h4{
    margin-top:25px;
    font-size:18px;
    font-weight:700;
    color: var(--primary);
}
.service-card p{
    font-size:14px;
    color:#777;
    line-height:1.7;
}
.service-img{
    position:relative;
    overflow:hidden;
    margin-top:30px;
}
.service-img img{
    width:100%;
    transition:.5s ease;
}
.service-card:hover .service-img img{
    transform:scale(1.12);
}
.service-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
    display:flex;
    align-items:flex-end;
    padding:25px;
    opacity:0;
    transform:translateY(25px);
    transition:.4s ease;
}
.service-card:hover .service-overlay{
    opacity:1;
    transform:translateY(0);
}
.heading-box strong {
    text-align: center;
    display: block;
    color: var(--primary);
}
.services .heading-box{
    margin-bottom: 4rem;
}
.services .section-title{
    text-align: center;
}
/*===============================
 	Trending Categories
=============================*/
.section-categories{
    background: var(--primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.section-head{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
    position:relative;
    z-index:2;
}
.section-head span{
    letter-spacing:3px;
    font-weight:600;
    text-transform:uppercase;
}
.section-categories .section-title{
	color: #fff;
}
.section-head p{
    font-size:14px;
    opacity:.9;
}
.category-card {
    background: #fff;
    padding: 60px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: .4s ease;
    height: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.category-card:hover{
    transform:translateY(-15px);
    box-shadow:0 25px 50px rgba(0,0,0,.25);
}
.icon-wrap{
    width:90px;
    height:90px;
    border-radius:50%;
    background: var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 40px;
    position:relative;
}
.icon-wrap::before{
    content:"";
    position:absolute;
    inset:-12px;
    border-radius:50%;
    border:2px solid rgba(255,0,0,.3);
    transition:.4s;
}
.category-card:hover .icon-wrap::before{
    inset:-18px;
    border-color:#ff0000;
}
.icon-wrap img{
    filter: invert(1);
	padding: 20px;
}
.category-card h4{
    font-size:18px;
    font-weight:600;
    margin:10px 0;
    color: var(--primary);
}
.category-card p{
    font-size:16px;
    color:#666;
}
.category-card .btn-div {
    display: flex;
    justify-content: center;
    align-items: center;
	margin-top: 2rem;
}
/* ================= CTA ================= */
.view-all{
    margin-top:60px;
    text-align:center;
    position:relative;
    z-index:2;
}
.view-all a {
    padding: 14px 36px;
    background: #fff;
    color: #ff0000;
    text-decoration: none;
}
.view-all a:hover{
	background: transparent;
	border: 1px solid #fff;
	color: #fff !important;
}
/* ================================
   Testimonial Section
================================ */
.testimonial-section {
    padding: 70px 0;
}
.testi-card {
    background: #f6f7fc;
    border-radius: 18px;
    padding: 60px 35px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.quote-icon{
    width:55px;
    height:55px;
    background: var(--primary);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:-25px;
    left:30px;
    font-size:22px;
}
.testi-text{
    color:#555;
    font-size:15px;
    line-height:1.7;
    margin-bottom:25px;
}
.testi-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.testi-user{
    display:flex;
    align-items:center;
    gap:12px;
}
.testi-user img{
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
}
.testi-user h6{
    margin:0;
    font-weight:600;
    color:#2c1e7a;
}
.testi-user small{
    color:#777;
}
.stars i{
    color: var(--primary);
    font-size:14px;
}
/* ================================
   Contact Section
================================ */
.contact{
	background: url(https://www.supersteel.in/wp-content/uploads/2026/01/contact-bg.avif);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	padding: 70px 0;
}
.contact .overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, #d7162f70 -5.59%, rgba(13, 22, 17, 0) 19.92%, rgba(13, 22, 17, 0) 54.98%, #d7162f59 90.96%, #d7162f 100%);
    z-index: 1;
}
.contact-form{
	    background: #fff;
    padding: 30px;
    position: relative;
    z-index: 3;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}
/* ================================
    	Breadcrumb
================================ */
section.breadcrumb-section {
    background: url(https://www.supersteel.in/wp-content/uploads/2026/01/breadceumb.jpg);
    padding: 150px 0 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
section.breadcrumb-section a{
	color: #fff !important;
}
.breadcrumb-item.active{
	color: var(--primary);
}
.breadcrumb-item+.breadcrumb-item::before{
	color: var(--primary);
}
/* ================================
    	About Page Css
================================ */
.who-we-are{
    padding: 70px 0;
}
.who-we-are .image-stack{
    position:relative;
}
.who-we-are .image-stack img{
    width:100%;
    border-radius:6px;
}
.who-we-are .bottom-img{
    width:85%;
    margin-left:auto;
}
.who-we-are .experience-box{
    position:absolute;
    bottom:30px;
    left:0;
    background: var(--primary);
    padding:30px 25px;
    text-align:center;
    border-radius:6px;
    width:180px;
}
.who-we-are .experience-box h2{
    font-size:48px;
    font-weight:700;
    margin:0;
}
.who-we-are .experience-box span{
    font-size:14px;
    display:block;
}
.who-we-are .section-label{
    color: var(--primary);
    letter-spacing:2px;
    font-size:14px;
    margin-bottom:10px;
}
.who-we-are .section-title{
    font-size:44px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:30px;
}
.who-we-are .feature{
    margin-bottom:25px;
}
.who-we-are .feature h5{
    font-weight:600;
    margin-bottom:8px;
}
.who-we-are .feature h5 span{
    color: var(--primary);
    margin-right:8px;
}
.who-we-are .quote{
    font-style:italic;
    color: #575353;
    margin:30px 0;
    border-left:3px solid #d7162f;
    padding-left:20px;
}
.who-we-are .owner{
    display:flex;
    align-items:center;
    gap:15px;
}
.who-we-are .owner img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}
.who-we-are .owner h6{
    margin:0;
    font-weight:600;
}
.who-we-are .owner span{
    font-size:14px;
    color: var(--primary);
}
/* ------------------ */
.industry-services .section-head{
	margin: 0 auto 20px;
}
.industry-service{
    display:flex;
    gap:20px;
    margin-bottom:50px;
    align-items:flex-start;
}
.industry-service.right{
    flex-direction:row-reverse;
    text-align:right;
}
.industry-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#ededed;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}
.industry-service:hover .industry-icon{
	background-color: var(--primary);
}
.industry-service:hover .industry-icon img{
	filter: invert(1);
}
.industry-icon img{
    width: 40px;
    height: 40px;
    object-fit:contain;
}
.industry-service h5{
    font-weight:600;
    margin-bottom:8px;
}
.industry-service p{
    font-size:14px;
    color:#666;
    margin-bottom:6px;
}
.industry-center img{
    max-width:100%;
}
@media(max-width:991px){
    .industry-service,
    .industry-service.right{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }
}
/*===============================
   			Contact Page Css
================================*/
.contact-section {
        padding: 70px 0;
    }
   .contact-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-box .section-title{
	font-size: 25px;
	color: var(--primary);
}
    .form-control {
        background: #f9f9f9;
        border: 1px solid #ddd;
        color: #000;
    }
    .btn-gold {
        background: var(--primary);
        border: none;
        color: #fff;
        font-weight: 600;
        padding: 12px;
        border-radius: 6px;
        width: 100%;
    }
    .info-card {
        padding: 20px 25px;
        background: #fff;
        border-radius: 10px;
        border: 1px solid #ececec;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        transition: 0.3s;
		display: flex;
		gap: 30px;
    }
	.info-card a{
		color: #000 !important;
		text-decoration: none;
	}
    .info-card:hover {
        border-color: var(--primary);
        transform: translateY(-4px);
    }
    .info-card i{
        font-size: 28px;
        color: var(--primary);
        margin-bottom: 10px;
    }
    .info-card h6 {
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 600;
    }
    .map-section iframe {
        width: 100%;
        height: 450px;
        border: 0;
        border-radius: 12px;
        margin-top: 40px;
    }
/* ================================
   Blog Page Css
================================ */
.sub-section-title{
	color: var(--secondary);	
}
section.blog-title {
    text-align: center;
}
.small-post {
    display: flex !important;
    gap: 15px !important;
    margin-bottom: 25px !important;
    align-items: center;
}
.small-post img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:6px;
}
.small-post-title{
    font-weight:600;
    font-size:17px;
	color: var(--primary);
}
.post-meta{
    font-size:13px;
    color:#777;
}
.feature-post a{
	text-decoration: none !important;
}
.feature-post{
    position:relative;
    overflow:hidden;
    border-radius:8px;
    margin-bottom:30px;
}
.feature-post::before {
  content: "";
  position: absolute;
  inset: 0; 
  z-index: 1; 
  transition: background 0.3s ease;
}
.feature-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    color: #fff;
    width: 90%;
    margin: -50px auto 0;
    border-radius: 15px;
}
.feature-post img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    transition: 0.4s ease;
    border-radius: 8px;
}
.feature-post:hover img{
    transform:scale(1.05);
}
.feature-content {
    color: #ffffff;
    background: #000000d6;
}
.feature-content .tag {
    background: var(--primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    display: inline-block;
    font-weight: 600;
}
.feature-title a{
    font-size:26px;
    font-weight:700;
    margin-top:10px;
    font-family: 'Playfair Display', serif;
	color: #fff !important;
}
.feature-meta{
    font-size:14px;
    margin-top:8px;
}
/* =============================
  Product Catalogue page
 ===============================*/
  .product-details .product-image-zoom-box {
      overflow: hidden;
      border-radius: 10px;
    }
   .product-details .product-image-zoom {
      transition: transform 0.4s ease;
      transform-origin: center center;
    }
   .product-details .product-image-zoom-box:hover .product-image-zoom {
      transform: scale(1.6);
    }
   .product-details .product-thumb-gallery img {
      cursor: pointer;
      border: 2px solid transparent;
      border-radius: 6px;
    }
   .product-details .product-thumb-gallery img.active {
      border-color: var(--primary);
    }
   .product-details .price {
      font-size: 28px;
      font-weight: 700;
      color: var(--primary);
    }
   .product-details .old-price {
      text-decoration: line-through;
      color: var(--secondary);
      font-size: 18px;
    }
   .product-details .rating i {
      color: var(--primary);
    }
   .product-details .qty-input {
      max-width: 120px;
    }
   .product-details .feature-list li {
      margin-bottom: 8px;
    }
   .product-details .tab-content {
      background: #fff;
      padding: 20px;
      border-radius: 0 0 10px 10px;
      border: 1px solid #dee2e6;
      border-top: none;
    }
   .product-details .modal-content {
  border-radius: 12px;
}
.product-details .related-products-section .btn-div {
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-details .related-products-section .card-body p{
	color: var(--primary);
}
.product-details .related-products-section .card-body{
    text-align: center!important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.related-products-grid .card {
    padding: 15px;
    border-radius: 20px;
}
.product-details .describtion .nav-link {
    color: #000 !important;
    font-weight: 600;
}
.product-details .describtion .nav-tabs .nav-link.active{
	color: var(--primary) !important;
}
.product-details .feature-list {
  list-style: none;
  padding-left: 0;
}
.product-details .feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 16px;
}
.product-details .feature-list li::before {
  content: "\f00c"; /* Font Awesome check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary);
  font-size: 14px;
}
.mb-3.position-relative.product-image-zoom-box img {
    height: 500px;
}
.product-thumb-gallery img {
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
}
.product-thumb-gallery img.active {
  opacity: 1;
  border-color: #000;
}
.description-list li {
    position: relative;
    padding-left: 25px;
    line-height: 40px;
}
.description-list li::before {
    content: "\f061"; 
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900; 
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
}
.related-products-section .card img {
    height: 300px;
	object-fit: contain;
}
.related-products-section .section-title {
    font-size: 40px;
}
/* Mega Menu */
.normal-mega-menu {
    width: 90vw !important;
    position: absolute !important;
    left: 55% !important;
    background: #fff !important;
    box-shadow: 0 20px 40px rgba(0,0,0,.2) !important;
    top: 55px !important;
    transform: translateX(-50%) !important;
    padding: 10px !important;
    margin: auto !important;
    height: 450px !important;
	border-radius: 10px;
}
.elementor-nav-menu--layout-horizontal .elementor-nav-menu>li:hover {
    background: var(--primary);
	width: 100%;
	border-radius: 7px;
}
.elementor-nav-menu--layout-horizontal .elementor-nav-menu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
/*=========================
  		Responsive
==========================*/
@media(max-width: 1200px){
	.hero-section{
		padding: 150px 0 150px;
	}
	.arrow {
		bottom: 10%;
	}
}
@media(max-width: 1024px){
	.section-title{
		font-size: 50px;
	}
	section.quality{
		width: 100%;
	}
}
@media(max-width: 991px){
	.who-we-are .section-title {
		font-size: 30px;
		margin-bottom: 10px;
	}
	.products-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media(max-width: 767px){
	.arrow{
		display: none;
	}
	.left-box img{
		height: auto;
	}
	.hero-section {
		padding: 100px 0 100px;
	}
	.about-section {
		padding: 50px 0;
	}
	.section-title {
		font-size: 40px;
	}
	.about-title .section-title {
		font-size: 40px;
	}
	.who-we-are {
		padding: 50px 0;
	}
	.industry-service{
		margin-bottom: 12px;
	}
	.contact-section {
		padding: 35px 0;
	}
}
@media(max-width: 568px){
	.about-section {
		padding: 40px 0;
	}
}
@media(max-width: 479px){
	.btn-box {
		display: flex;
		gap: 20px;
		flex-direction: column;
	}
	.hero-section .btn-box {
		margin-top: 2rem;
	}
	.quality-box p{
		font-size: 22px;
	}
	.about-title .section-title {
		font-size: 30px;
	}
	section.breadcrumb-section{
		padding: 100px 0 60px;
	}
	.contact-box{
		padding: 20px;
	}
	.products-grid {
		grid-template-columns: 1fr;
	}
	.product-item img {
		height: auto;
		object-fit: contain;
	}
}
@media(max-width: 414px){
	.footer_menu {
		padding: 0;
	}
	.who-we-are {
		padding: 30px 0;
	}
}
@media(max-width: 375px){
	.testimonial-section {
		padding: 50px 0;
	}
	.section-title {
		font-size: 25px;
	}
	.about-title .section-title {
		font-size: 25px;
	}
	.client .section-title {
		font-size: 30px;
		margin-bottom: 1rem;
	}
	section.client {
		padding: 40px 0;
	}
}
@media(max-width: 360px){
	.video-btn {
		width: 50px;
		height: 50px;
	}
}