/* html, body {
   overflow-x: hidden; 
} */


/* HEADER AND TOP HEADER */
header{
    padding: 0;
    margin: 0;
}

header .top-header{
    padding: 14px 0;
    background-color: var(--red-color);
}

header .top-header .left-block{
    padding: 0;
    margin: 0;
}

header .top-header .left-block ul{
    padding: 0;
    margin: 0;
}

header .top-header .left-block ul li i{
    font-size: 16px;
    color: #fff;
    margin-right: 10px;
}

header .top-header .left-block ul li a{
    font-size: 13px;
    font-family: var(--regular-font);
    color: #fff;
    font-weight: 500;
}
header .top-header .right-block p{
    font-family: var(--regular-font);
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    padding: 0;
    margin-bottom: 0;
}

header .top-header .right-block i{
    font-size: 18px;
    color: #fff;
}

/* HEADER INNER */
header .header-inner{
    background-color: #fff;
    padding: 5px 0;
    margin: 0;
}

header .header-inner .logo-block{
    width: 150px;
    padding: 5px 0;
    margin: 0;
}

.stellarnav ul {
    text-align: end;
}

header .header-inner .stellarnav ul li a{
    font-family: var(--regular-font);
    font-weight: 500;
    font-size: clamp(0.875rem, 0.7885rem + 0.4615vw, 1.25rem);
    color: #000000;
    text-transform: capitalize;
    padding:12px 35px;
    margin: 0;
    transition: 0.4s;
}


header .header-inner .stellarnav ul li a:hover{
    color: var(--red-color);
}

header .blue-line-shape{
    background-color: var(--blue-color);
    width: 100%;
    height: 10px;
}

header .header-inner .stellarnav .drop-right ul li a {
    font-family: var(--regular-font);
    font-size: 14px;
    transition: 0.2s;
}

header .header-inner .stellarnav .drop-right ul li a:hover{
    background-color: var(--red-color);
    color: #fff;
}

/* BANNER SECTION START */
.banner-section{
    height: 650px;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #A3A1A1;
}

.banner-section img{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.banner-section .hero-text{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.banner-section .hero-text h3 {
    font-family: var(--regular-font);
    font-size: clamp(1.5rem, 1.2692rem + 1.2308vw, 2.5rem);
    font-weight: 700;
    color: #000000;
    padding: 0;
    margin-bottom: 30px;
}

.banner-section .hero-text h1 {
    font-family: var(--title-font);
    font-size: clamp(1.875rem, 1.4423rem + 2.3077vw, 3.75rem);
    line-height: 1.1;
    font-weight: 600;
    color: #000000;
    max-width: 60%;
    padding: 0;
    margin-bottom: 30px;
}

.white-layer{
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0;
    background-repeat: no-repeat;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 30.69%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.119086) 50%);
    border-bottom: 2px solid #A3A1A1;
}

/* OUR RANGE OF CATEGORY SECTION START */
.range-of-category{
    background-image: url("../images/category-section-bg-img.png");
    background-position: bottom;
    object-fit: cover;
    background-repeat: no-repeat;
    padding: 70px 0;
    margin: 0;
}

.range-of-category .card{
    background-color: #F5F5F5;
    border: 1px solid #A9A9A9;
    border-radius: 0;
    padding: 20px;
    margin-bottom: 40px;
}

.range-of-category .card h6{
    color: #000000;
    text-transform: capitalize;
    font-family: var(--title-font);
    font-size: clamp(1.375rem, 1.2308rem + 0.7692vw, 2rem);
    font-weight: 600;
    margin: 0;
    padding-bottom: 15px;
}

.range-of-category .card p{
    color: #8E8B8B;
    text-transform: capitalize;
    font-family: var(--regular-font);
    font-size: clamp(0.75rem, 0.7212rem + 0.1538vw, 0.875rem);
    font-weight: 600;
    margin: 0;
    padding-bottom: 30px;
}

.range-of-category .card .icon-block {
    padding: 0;
    position: relative;
    margin: 0 30px;
    margin-bottom: -10%;
}

.range-of-category .card .icon-block a{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--red-color);
    display: grid;
    place-items:center;
    margin: 0;
    padding:0; 
    transition: 0.3s;
}

.range-of-category .card .icon-block a:hover{
    background-color: #fff;
    border: 3px solid var(--red-color);
    color: var(--red-color);

}

.range-of-category .card .icon-block i{
    color: #ffffff;
    font-size: 28px;
    margin: 0;
    padding:0; 
    transition: 0.3s;
    line-height: 0;
}

 .range-of-category .card .icon-block i:hover{
    color: var(--red-color);
} 

.range-of-category .card .img-block{
    margin-bottom: 30px;
    width: 100%;
    height: 400px; /* Or a fixed height like 300px */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #8a8a8a;
    background-color: #fff;
}


.range-of-category .card .img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.range-of-category .card .view-more{
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    text-transform: capitalize;
    font-family: var(--regular-font);
    font-size: 16px;
    font-weight: 600;
    background-color: var(--red-color);
    border: none;
    margin: 0;
    padding:21px 0 ;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.range-of-category .card .view-more::before{
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%; 
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    transition: left 0.5s;
}

.range-of-category .card .view-more:hover::before{
    left: 130%;
}

.range-of-category .card .view-more:hover{
    background-color: var(--blue-color);
}

/* OUR CLIENT SECFTION START */
.Company-Stats{
    padding: 50px 0;
    margin: 0;
    overflow: hidden;
}

.Company-Stats .counter-area{
    background-color: var(--red-color);
    padding: 65px 0;
    margin: 0;
    position: relative;
    border-radius: 145px 0 0 145px;
    
}

.Company-Stats .counter-area::before{
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--red-color);
    z-index: -1;
}

.Company-Stats .counter-area .counter-item{
    padding: 0;
    margin: 0;
}

.Company-Stats .counter-area .counter-item{
    gap: 20px;
    padding: 0;
    margin: 0;
}

.Company-Stats .counter-area .counter-item .icon{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color: #FFF5F6;
    padding: 0;
    margin: 0;
}

.Company-Stats .counter-area .counter-item .icon i{
   font-size: clamp(1.5rem, 1.2692rem + 1.2308vw, 2.5rem);
   color:var(--red-color);
   line-height: 0;
}

.Company-Stats .counter-area .counter-item .status{
    width: 170px;
    padding: 0;
    margin: 0;
}

.Company-Stats .counter-area .counter-item .status h5{
    color: #ffffff;
    text-transform: capitalize;
    font-family: var(--regular-font);
    font-size: clamp(0.75rem, 0.6923rem + 0.3077vw, 1rem);
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.Company-Stats .counter-area .counter-item .status h6{
    color: #ffffff;
    font-family: var(--title-font);
    font-size: clamp(2.25rem, 1.7596rem + 2.6154vw, 4.375rem);
    font-weight: 600;
    margin: 0;
    padding: 0;
}

/* ABOUT SECTION START */
.about-us{
    padding: 50px 0;
    margin: 0;
    
}

.about-us .left-block .img-block{
    width: 450px;
    height: 770px;
    overflow: hidden;
    padding: 0;
}


.about-us .left-block .img-block img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.about-us .left-block{
    position: relative;
}

.about-us .left-block .experience-bar {
    background-color: var(--red-color);
    width: 381px;
    position: absolute;
    bottom: 10%;
    right: 18%;
    padding: 20px;
    border: 3px solid #fff;
    margin: 0;
}

.about-us .left-block .experience-bar h5{
    font-family: var(--title-font);
    font-size: clamp(1.375rem, 0.8269rem + 2.9231vw, 3.75rem);
    font-weight: 700;
    color: #fff;
    padding:0;
    margin: 0;
}

.about-us .left-block .experience-bar p{
    font-family: var(--title-font);
    font-size: clamp(1.125rem, 0.8654rem + 1.3846vw, 2.25rem);
    font-weight: 500;
    color: #fff;
    padding:0;
    margin: 0;
}

.about-us .hero-text{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
}

.about-us .hero-text i{
    font-size: clamp(1.875rem, 1.4856rem + 2.0769vw, 3.5625rem);
    color: var(--red-color);
    padding: 0;
    margin-top: 30px;
}

.about-us .hero-text h4{
    padding-top: 40px;
}

.about-us .hero-text h5{
    max-width: 100%;
    padding-bottom: 20px;
}

.about-us .hero-text p{
    font-family: var(--title-font);
    color: #585858;
    font-weight: 500;
    font-size: clamp(0.75rem, 0.6923rem + 0.3077vw, 1rem);
    line-height: 25px;
    padding-bottom: 30px;
    margin: 0;
}

/*  Why Choose Us section start */
.why-choose-us{
    padding: 50px 0;
    margin: 0;
    overflow: hidden;
}

.why-choose-us .section-semi-title{
    max-width: 100%;
}

.why-choose-us .feature-all-cards{
    padding:0;
    margin: 0;
}

.why-choose-us .feature-all-cards .video-block video {
    max-width: 100%;
    height: 100%;
    padding: 0;
    display: block;
    object-fit: cover;
}

.why-choose-us .feature-all-cards .video-block img{
    vertical-align: middle;
    width: 100%;
    object-fit: cover;
    height: 100%;

}

.why-choose-us .feature-all-cards .card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #cccf;
    padding: 40px 20px;
    margin-bottom: 20px;
    height: 480px;
    transition: color 0.5s;
}

.why-choose-us .feature-all-cards .video-block {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    position: relative;
}

.why-choose-us .feature-all-cards .video-block .btn{
    background-color: var(--red-color);
    color: #fff;
    font-size: 32px;
    line-height: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.why-choose-us .feature-all-cards .video-block .btn::before,
.why-choose-us .feature-all-cards .video-block .btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #d50000;
    border-radius: 50%;
    animation: pulseAnim 2s infinite;
    top: 0;
    left: 0;
    z-index: -1;
}

.why-choose-us .feature-all-cards .video-block .btn::after {
  animation-delay: 1s;
}

@keyframes pulseAnim {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}


.why-choose-us .feature-all-cards .card::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 0;
    background: var(--red-color);
    z-index: 0;
    transition: height 0.5s;
}

.why-choose-us .feature-all-cards .card:hover::before {
    height: 100%;
}

.why-choose-us .feature-all-cards .card:hover {
    color: #fff;
}

.why-choose-us .feature-all-cards .card * {
    position: relative;
    z-index: 1;
}


.why-choose-us .feature-all-cards .card:hover i,
.why-choose-us .feature-all-cards .card:hover h5,
.why-choose-us .feature-all-cards .card:hover p,
.why-choose-us .feature-all-cards .card:hover a {
    color: #fff;
}


.why-choose-us .feature-all-cards .card i{
    font-size: clamp(1.875rem, 1.2981rem + 3.0769vw, 4.375rem);
    color: #3D3C3C;
    padding: 0;
    margin-bottom: 26px;
    line-height: 0;
}

.why-choose-us .feature-all-cards .card h5{
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 600;
    color: #3D3C3C;
    padding: 0;
    margin-bottom: 15px;
}

.why-choose-us .feature-all-cards .card p{
    font-family: var(--regular-font);
    font-size: 14px;
    font-weight: 500;
    color: #3D3C3C;
    padding: 0;
    margin-bottom: 26px;
}

.why-choose-us .feature-all-cards .card a{
    font-family: var(--regular-font);
    font-size: 16px;
    font-weight: 700;
    color: #3D3C3C;
    padding: 0;
    margin: 0;
    transition: 0.3s;
}

.why-choose-us .feature-all-cards .card a:hover{
    scale: 0.9;
}

/* OUR CLIENT */
.our-client {
    padding: 50px 0 110px 0;
    margin: 0;
    overflow: hidden;
}

.our-client h5{
    max-width: 100%;
}
.our-client .clients-bar-1 {
    background-color: var(--red-color);
    padding: 20px 0;
    margin: 0 auto;
    width: 100%;
    transform: rotate(8deg) scaleX(1.2); /* ✅ Combined */
}


.our-client .clients-bar-1 .clients{
    border-top: 3px dashed #fff;
    border-bottom: 3px dashed #fff;
    padding:10px 0;
    margin: 0;
}
.our-client .clients-bar-1 .clients .client{
    width: 200px;
    height: 100% !important;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    margin-right: 40px;
}

.our-client .clients-bar-2{
    background-color: var(--blue-color);
    padding: 20px 0;
    margin: 0 auto;
    width: 100%;
    transform: rotate(-8deg) scaleX(1.2); 
}

.our-client .clients-bar-2 .clients .client{
    width: 200px;
    height: 100% !important;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    margin-right: 40px;
}

.our-client .clients-bar-2 .clients{
    border-top: 3px dashed #fff;
    border-bottom: 3px dashed #fff;
    padding:10px 0;
    margin: 0;
}

/* PROVIDING THE BEST SECTION */
.providing-the-best {
    padding: 30px 0;
    margin: 0;
}

.providing-the-best .section-semi-title{
    max-width: 100%;
}

.providing-the-best .all-products{
    padding:0;
    margin: 0;
}

.providing-the-best .card {
    height: 500px;
    position: relative;
    overflow: hidden;
    margin: 0 15px;
    padding: 0;
    border: none;
    justify-content: center;
    border-radius: 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    align-items: center;
}

.providing-the-best .card .text-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(33, 33, 33, 0.58);
    padding: 20px;
    transform: translateY(50%);
    transition: transform 0.5s ease;
}

.providing-the-best .card:hover .text-content {
    transform: translateY(0%);
}

.providing-the-best .card .img-block {
    padding: 0;
    display: flex;
    width: 100%;
    margin: 0;
    justify-content: center;
    align-items: center;
}

.providing-the-best .card .img-block::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(33, 33, 33, 0.08);
    padding:0;
    margin: 0;
}

.providing-the-best .card .text-content h3{
    font-family: var(--title-font);
    font-size: clamp(1.5rem, 1.3846rem + 0.6154vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    padding: 0;
    margin-bottom: 30px;
}

.providing-the-best .card .text-content p{
    font-family: var(--regular-font);
    font-size: clamp(0.875rem, 0.8173rem + 0.3077vw, 1.125rem);
    font-weight: 500;
    color: #ffffff;
    padding: 0;
    margin-bottom: 30px;
}

.providing-the-best .card .text-content .btn-primary {
    color: var(--red-color);
    background-color: #fff;
    position: relative;
    padding: 15px 20px;
    overflow: hidden;
    transition: background 0.3s ease;
}

.providing-the-best .card .text-content .btn-primary::before{
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%; 
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    transition: left 0.5s;
}

.providing-the-best .card .text-content .btn-primary:hover:before{
    left: 130%;
}

.providing-the-best .card .text-content .btn-primary:hover{
    background-color: var(--red-color);
    color: #fff;
}

/*  CONTACT US SECTION */
.contact-us,.inner-contact{
    background-image: url(../images/contact-us-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 50px 0;
    margin: 0;
    background-size: 100% 100%;
}

.contact-us .get-in-touch{
    background: rgba(0, 0, 0, 0.67);
    border: 2px solid #4A4A4A;
    padding: 0;
    margin: 0;
}

.contact-us .get-in-touch .text-content {
    background: #A02327;
    border: 2px solid #514F4F;
    padding: 30px;
    margin: 0;
}

.contact-us .get-in-touch .text-content i{
    font-size: clamp(2.5rem, 1.8077rem + 3.6923vw, 5.5rem);
    color: #fff;
    margin-bottom: 30px;
}

.contact-us .get-in-touch .text-content h3{
    font-family: var(--title-font);
    font-weight: 600;
    font-size: clamp(1.5rem, 1.1538rem + 1.8462vw, 3rem);
    line-height: 57px;
    color: #FFFFFF;
    padding: 0;
    margin-bottom: 30px;
}

.contact-us .get-in-touch .text-content p{
    font-family: var(--regular-font);
    font-weight: 400;
    font-size: clamp(0.75rem, 0.6923rem + 0.3077vw, 1rem);
    line-height: 20px;
    color: #E6E6E6;
}

.contact-us .get-in-touch .text-content .all-details{
    padding: 0;
    margin: 0;
}

.contact-us .get-in-touch .text-content .all-details a i{
    font-size: clamp(1rem, 0.9279rem + 0.3846vw, 1.3125rem);
    color: #fff;
    padding: 0;
    margin-right: 15px;
}

.contact-us .get-in-touch .text-content .all-details a {
    font-family: var(--regular-font);
    font-weight: 400;
    font-size: clamp(0.75rem, 0.6923rem + 0.3077vw, 1rem);
    line-height: 18px;
    color: #FFFFFF;
    margin-bottom: 20px;
    padding: 0;
}

.contact-us .get-in-touch .form-block{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    margin-right: 20px;
}

.contact-us .get-in-touch .form-block input{
    font-family: var(--regular-font);
    font-weight: 400;
    text-transform: capitalize;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #A02327;
    border-radius: 0;
    padding: 15px;
    margin-bottom: 30px;
    transition: 0.4s;
}

.contact-us .get-in-touch .form-block input:focus{
    background-color: #000000;
    border: 1px solid var(--blue-color);
}
.contact-us .get-in-touch .form-block input::placeholder{
    color: #c4c3c3;
    font-family: var(--regular-font);
    text-transform: capitalize;
    font-size: clamp(0.75rem, 0.7212rem + 0.1538vw, 0.875rem);
    font-weight: 500;
    padding: 0;
    margin: 0;
}

.contact-us .get-in-touch .form-block textarea{
    width: 100%;
    height: 112px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.5); /* black with 50% opacity */
    border: 1px solid #A02327;
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
    transition: 0.4s;
}

.contact-us .get-in-touch .form-block textarea:focus{
    background-color: #000000;
    border: 1px solid var(--blue-color);
}

.contact-us .get-in-touch .form-block textarea::placeholder{
    color: #cecece;
    font-size: clamp(0.75rem, 0.7212rem + 0.1538vw, 0.875rem);
    font-family: var(--regular-font);
    font-weight: 500;
    text-transform: capitalize;
}


.contact-us .get-in-touch .form-block .btn-primary{
    border: none;
}

.form-control:focus {
    border-color:none !important;
    box-shadow:none !important;
}


/* FOOTER SECTION  */
footer{
    background-color: #121212;
    padding: 50px 0;
    margin: 0;
}

footer .logo-block {
    padding: 0;
    margin-bottom: 20px;
    width: 200px;
    cursor: pointer;
}

footer h4{
    font-family:var(--regular-font);
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    color: var(--red-color);
    padding: 0;
    margin-bottom: 20px;
}

footer a p{
    font-family:var(--regular-font);
    font-weight: 400;
    font-size: clamp(0.75rem, 0.6923rem + 0.3077vw, 1rem);
    line-height: 18px;
    color: #FFFFFF;
}

footer ul{
    padding: 0;
    margin: 0;
}

footer ul li{
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li a{
    font-family:var(--regular-font);
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 400;
    font-size: clamp(0.75rem, 0.6923rem + 0.3077vw, 1rem);
    line-height: 30px;
    color: #FFFFFF;
    transition: 0.3s;
}

footer ul li a:hover{
    color: var(--red-color);
}

footer .details{
    padding: 0;
    margin: 0;
}

footer .icon-block a{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color: var(--red-color);
    transition: 0.3s;
}

footer .icon-block a:hover{
    background-color: #fff;
}

footer .icon-block a i{
    font-size: clamp(0.75rem, 0.6923rem + 0.3077vw, 1rem);
    color: #fff;
    transition: 0.3s;
}

footer .icon-block a i:hover{
    color: var(--red-color);
}

footer .details .icon{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    background-color: var(--red-color);
    padding: 0;
    margin-right: 15px;
    transition: 0.3s;
}

footer .details .icon:hover{
    background-color: #fff;
}

footer .details a{
    font-family:var(--regular-font);
    font-weight: 400;
    font-size: clamp(0.75rem, 0.6923rem + 0.3077vw, 1rem);
    line-height: 18px;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 15px;
    max-width:80%;
    transition: 0.3s;
}

footer .details a:hover{
    color: var(--red-color);
}

footer .details .icon i {
    font-size: clamp(0.75rem, 0.6923rem + 0.3077vw, 1rem);
    color: #fff;
    transition: 0.3s;
}

footer .details .icon i:hover{
    color: var(--red-color);
}

footer .map-box{
    padding: 0;
    margin: 0;
    overflow: hidden;
}

/* DOWN FOOTER */
.down-footer{
    background-color: var(--red-color);
}
.down-footer a{
    font-family: var(--regular-font);
    font-weight: 700;
    font-size: clamp(1rem, 0.9423rem + 0.3077vw, 1.25rem);
    color: #FFFFFF;
    padding: 20px 0;
    margin: 0;
}

/* fixed icons  */

.fixed-icons {
    position: fixed;
    bottom: 5%;
    right: 1%;
    z-index: 9999;
}

.wp-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.wp-icon a{
    width: 50px;
    height: 50px;
    background-color:rgb(74,201,90);
     box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: grid;
    border-radius: 50%;
    place-items: center;
    padding: 0;
    margin: 0;
    animation: bounceIcon 0.6s infinite;    
}


.wp-icon a i{
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    line-height: 0;
}


.email-icon a{
    width: 50px;
    height: 50px;
    background-color:rgb(222,86,74);
     box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: grid;
    border-radius: 50%;
    place-items: center;
    padding: 0;
    margin: 0;
    animation: bounceIcon 0.6s infinite;
}

.email-icon a i{
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    line-height: 0;
}

@keyframes bounceIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* rotaed */
.rotaed-img{
    position: absolute;
    width: 400px;
    top: 250px;
    right: -100px;
}

section.inner-banner {
  position: relative;
  width: 100%;
  height: 300px; /* adjust as needed */
  overflow: hidden;
  background-attachment: fixed;
}

section.inner-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures full coverage */
  object-position: center;
}

section.inner-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 31, 31, 0.6); /* light black shade */
}

section.inner-banner .hero-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 999;
}
section.inner-banner h2{
    font-family: var(--title-font);
    color: #fff;
    white-space: nowrap;
    font-size: clamp(1rem, 0.9135rem + 0.4615vw, 1.375rem);
    font-weight: 700;
    text-transform: capitalize;
    transform: translateX(50%,50%);

}

/* inner categorys */
section.our-categorys{
    padding: 50px 0;
    margin: 0;
}

section.our-categorys .inner-card {
    margin: 30px 0;
    padding: 20px;
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
section.our-categorys h4{
    font-family: var(--title-font);
    font-size: clamp(1.125rem, 0.8654rem + 1.3846vw, 2.25rem);
    color: #000000;
    line-height: 1.1;
    font-weight: 700;
    padding: 0;
    margin-bottom: 20px;
}

section.our-categorys p{
    font-family: var(--title-font);
    font-size: clamp(0.875rem, 0.8462rem + 0.1538vw, 1rem);
    color: #413f3f;
    line-height: 1.4;
    font-weight: 400;
    padding: 0;
    margin-bottom: 20px;
}
section.our-categorys .inner-card .img-block {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    object-fit: cover;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

section.about-us .sticky {
    position: sticky;
    top: 10px;
}

section.our-categorys .sticky {
    position: sticky;
    top: 10px;
}

section.our-categorys .inner-card .img-block img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}
section.our-categorys .inner-card .text-content{
    padding: 0;
    margin: 0;
}

section.our-categorys .inner-card .text-content h4{
    font-family: var(--title-font);
    font-size: clamp(1.5rem, 1.3269rem + 0.9231vw, 2.25rem);
    font-weight: 500;
    color: #1d1d1d;
    text-transform: capitalize;
    padding: 0;
    margin-bottom: 30px;
}

section.our-categorys .inner-card .text-content p{
    font-family: var(--regular-font);
    font-size: clamp(0.75rem, 0.6923rem + 0.3077vw, 1rem);
    font-weight: 400;
    color: #1d1d1d;
    text-transform: capitalize;
    padding: 0;
    margin-bottom: 20px; 
}


section.our-categorys .inner-card .text-content .btn-interseted{
    color: var(--red-color);
    text-transform: capitalize;
    font-family: var(--regular-font);
    font-size: clamp(1rem, 0.9423rem + 0.3077vw, 1.25rem);
    font-weight: 500;
    padding: 13px 25px;
    text-decoration: none;
    width: fit-content;
    border: 2px solid var(--red-color);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

section.our-categorys .inner-card .text-content .btn-interseted::before{
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%; 
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    transition: left 0.5s;
}

section.our-categorys .inner-card .text-content .btn-interseted:hover::before{
  left: 130%;
}

section.our-categorys .inner-card .text-content .btn-interseted:hover{
    color: #fff;
    background-color:var(--red-color);
}

a#backtotop {
    display: none;
}


a#backtotop i{
    display: none;
}



/* product-details */

section.product-details {
    padding: 50px 0;
    margin: 0;
}

section.product-details  .inner-card{
    margin: 30px 0;
}

section.product-details  .inner-card .img-block {
    width: 100%;  
    display: flex;
    justify-content: center;
    object-fit: cover;
    overflow: hidden;
    padding-bottom: 30px;
}


section.product-details .inner-card .img-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    overflow: hidden;
}

section.product-details .inner-card  .sticky {
    position: sticky;
    top: 10px;
}

section.product-details .inner-card .text-content{
    padding: 0;
    margin: 0;
}

section.product-details .inner-card .text-content h4{
    font-family: var(--title-font);
    font-size: clamp(1.5rem, 1.3269rem + 0.9231vw, 2.25rem);
    font-weight: 500;
    color: #1d1d1d;
    text-transform: capitalize;
    padding: 0;
    margin-bottom: 30px;
}

section.product-details .inner-card .text-content h3{
    font-family: var(--title-font);
    font-size: clamp(1.125rem, 1.0385rem + 0.4615vw, 1.5rem);
    font-weight: 500;
    color: #1d1d1d;
    text-transform: capitalize;
    padding: 0;
    margin-bottom: 15px;
}

section.product-details .inner-card .text-content p{
    font-family: var(--regular-font);
    font-size: clamp(0.75rem, 0.6923rem + 0.3077vw, 1rem);
    font-weight: 400;
    color: #1d1d1d;
    text-transform: capitalize;
    padding: 0;
    margin-bottom: 20px; 
}

section.product-details .specifications {
  margin: 20px 0;
}

section.product-details .specifications h3 {
    font-family: var(--regular-font);
    color: #000000;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

section.product-details .spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

section.product-details .spec-table td {
    font-family: var(--regular-font);
    font-size: 15px;
    color: #494949;
  border: 1px solid #eee;
  padding: 10px 12px;
  vertical-align: top;
}

section.product-details .spec-table td strong{
    font-family: var(--regular-font);
    font-size: 14px;
    color: #4b4b4b;
}
section.product-details .spec-table td:first-child {
  width: 30%;
  font-weight: bold;
  background: #fafafa;
}

.inner-contact {
    background-color: #eeeeee !important;
    background-image:none;
    padding: 50px 0;
    margin: 0;
}

.contact-us .inner-get-in-touch {
    background: #232323 !important;
    border: 2px solid #4A4A4A;
    padding: 0;
    margin: 0;
}

ol.breadcrumb.breadcrumb-center {
    position: absolute;
    z-index: 9999;
    top: 64%;
    left: 50%;
    transform: translate(-50%,-50%);
}

ol.breadcrumb.breadcrumb-center li a{
    font-family: var(--regular-font);
    font-size: clamp(0.9375rem, 0.8654rem + 0.3846vw, 1.25rem);
    color: #ffff;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: 0.3s;    
}

ol.breadcrumb.breadcrumb-center li a:hover{
    color: var(--red-color);   
}

ol.breadcrumb.breadcrumb-center li {
    font-family: var(--regular-font);
    font-size: clamp(0.9375rem, 0.8654rem + 0.3846vw, 1.25rem);
    color: #ffff;
    white-space: nowrap;
    font-weight: 500;
    text-decoration: none;
    margin-left: -5px;
    
}