
*{text-decoration:none !important; outline:0 !important; list-style:none !important;margin: 0;
  padding: 0;box-sizing: border-box; font-family: 'Outfit-Regular';}
body {
  color:#2b2a2a;   
  font-family: 'Outfit-Regular';
  background-color: #000;
}
body, html {
    width: 100%;
    height: 100%;
    /* overflow-x: hidden; */
}
h1,h2,h3,h4,h5,h6{font-family: 'Outfit-Bold';}
a,a:hover {transition:0.6s all !important;}

/* .form-control:focus {box-shadow:0px 0px 5px #fed307 !important; border-color:#fed307;} */ .form-control:focus {
  box-shadow: 0px 0px 5px #9b93fd !important;
}
*, :before, :after{
  --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235/var(--tw-border-opacity));
    --tw-ring-inset: var(--tw-empty, );
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
}


@font-face {
  font-family: 'Outfit-Regular';
  src: url('../fonts/Outfit-Regular.ttf'),
        url('../fonts/Outfit-Regular.ttf');
      font-weight: normal;
      font-style: normal;
}
@font-face {
  font-family: 'Outfit-Bold';
  src: url('../fonts/Outfit-Bold.ttf'),
        url('../fonts/Outfit-Bold.ttf');
      font-weight: normal;
      font-style: normal;
}


/* HEADER */
.site-header{
  width: 100%;
  background: #000000a1;
  border-bottom: 1px solid #eee;
  position: absolute;
  top: 0;
  z-index: 1000;
  padding: 0px 30px;
}
/*.site-header:after{
    content: "";
    position: absolute;
    background: url(../images/header-bgimg.png) top / cover;
}*/
.header-container{
    max-width: 1623px;
    margin: auto;
    padding: 26px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img{
  width: 120px;
  float: left;
}
.com_name{

}
.com_name h3{
    margin: 0;
    color: #fff;
    display: inline-block;
    font-size: 35px;
    margin-top: 2px;
    float: left;
    margin-left: 28px;
}

/* NAV */
.nav-list{
  display:flex;
  gap:32px;
  list-style:none;
  margin: 0;
  padding: 0;
}

.nav-list a{
  text-decoration:none;
  color:#fff;
  font-size:19px;
  font-weight:500;
  position:relative;
  padding-bottom:6px;
}

.nav-list a::after{
  content:'';
  position:absolute;
  left:50%;
  bottom:0;
  width:0;
  height:2px;
  background:#F17E00;
  transform:translateX(-50%);
  transition:width 0.3s ease;
}

.nav-list a:hover::after{
  width:100%;
}

/* MOBILE MENU BUTTON */
.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:26px;
  height:2px;
  background:#fff;
  transition:0.3s;
}

.slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

/* Background Parallax Image */
.bg-wrap {
    position: absolute;
    width: 110%; /* Extra width for parallax movement */
    height: 110%;
    top: -5%;
    left: -5%;
    z-index: -1;
    transition: transform 0.1s ease-out; /* Smooth mouse follow */
}

.bg-img {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  filter: brightness(0.6);
  transition: transform 8s linear;
  background-repeat: no-repeat;
}

.active .bg-img {
    transform: scale(1.15);
}

/* Text Content Animations */
.content {
    text-align: center;
    color: white;
    z-index: 2;
}

.parallax-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 15px;
    margin-bottom: 10px;
    transform: translateZ(100px) translateY(50px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    /* Glassmorphism Text Effect */
    background: linear-gradient(to bottom, #ffa95e, #f5821f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.parallax-sub {
    font-size: 1.2rem;
    letter-spacing: 5px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out 0.5s;
}

.active .parallax-title { opacity: 1; transform: translateZ(100px) translateY(0); }
.active .parallax-sub { opacity: 1; transform: translateY(0); }

/* Navigation Buttons */
.nav_slide {
    position: absolute;
    bottom: 50px;
    right: 130px;
    z-index: 10;
    display: flex;
    gap: 20px;
}

.btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    background: white;
    color: black;
}

/* Slide Progress Bar */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #f5821f;
    width: 0%;
    z-index: 15;
}

.about-section{
  padding:120px 0;  
  position:relative;
  overflow:hidden;
}
.about-section:after{
    content: "";
    position: absolute;
    background: url(../images/left-img.png) top / cover;
    top: 100px;
    width: 250px;
    height: 100%;
    background-size: 100%;
    left: 0;
    top: 50px;
    background-repeat: no-repeat;
    animation: smoothFloat 4s ease-in-out infinite;
    opacity: 0.8; /* Thoda professional look ke liye */
}
@keyframes smoothFloat {
    0% {
        transform: translateY(0px);
        opacity: 0.5;
    }
    50% {
        /* Image dhire se 20px niche jayegi aur thodi dark hogi */
        transform: translateY(20px);
        opacity: 1;
    }
    100% {
        transform: translateY(0px);
        opacity: 0.5;
    }
}
/* DOTTED BACKGROUND */
/*.dot-pattern{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-image: radial-gradient(#ddd 1px, transparent 1px);
  background-size: 20px 20px;
  opacity:0.4;
  z-index:0;
}*/
.about_coverdiv{
  margin:auto;
  display:flex;
  align-items:center;
  gap:80px;
  position:relative;
  z-index:2;
}


/* LEFT IMAGES */
.about-images{
  flex:1;
  position:relative;
}

.img-large img{
  width: 100%;
  border-radius: 8px;
  height: 630px;
  object-fit: cover;
}

.img-small{
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 60%;
  border: 5px solid #f5821f;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.img-small img{
  width:100%;
}

/* CONTENT */
.about-content{
  flex:1;
}

.about-tag{
  color: #ffffff;
  font-weight:600;
  letter-spacing:1px;
}

.about-content h2{
  font-size: 42px;
  margin:15px 0;    
  color: #f5821f;
}

.about-text{
  color:#ffffff;
  line-height:1.8;
  margin-bottom:30px;
}

.feature{
  display:flex;
  gap:20px;
  margin-bottom:25px;
}

.icon svg{
  width:40px;
  height:40px;
  fill:none;
  stroke:#e6821f;
  stroke-width:1;
}

.feature h4{
  color: #f5821f;
  margin-bottom:5px;
}

.feature p{
  font-size:14px;
  color:#fff;
}

/* BUTTON */
.btnmore{
  display:inline-block;
  padding:14px 32px;
  background: #f5821f;
  color:#fff;
  font-weight:600;
  text-decoration:none;
  border-radius:4px;
  transition:0.3s;
  opacity: 10 !important;
}

.btnmore:hover{
  background:#fff;
  color: #000;
}


/* RESPONSIVE */
@media(max-width:992px){  
  .experience-card{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:40px;
  }
}

.services-section {
    position: relative;
    padding: 80px 0;
    /* Automotive Parts ki background image yahan lagayein */
    background: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?q=80&w=2000') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax effect ke liye */
    color: #fff;
    text-align: center;
}
.services-section:after{
  content: "";
  position: absolute;
  background: url(../images/right-img.png) top / cover;    
  width: 200px;
  height: 100%;
  background-size: 100%;
  right: 0;
  top: 50px;
  background-repeat: no-repeat;
  animation: smoothFloat 4s ease-in-out infinite;
  opacity: 0.8;
  z-index: 1;
}


/* Background image ko thoda dark karne ke liye overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Yahan se darkness control karein */
    z-index: 1;
}

.whychoose_boxset {
    position: relative;
    z-index: 2;    
}

.section-header h1 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #fff;
}

.sub-title {
  color: #e6821f;    
  display: block;
  margin-bottom: 10px;
  font-size: 25px;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 20px;
}

/* Service Box Styling */
.service-box {
    position: relative;
    background: #ffffff;
    color: #333;
    padding: 40px 30px;
    border-radius: 8px;
    overflow: hidden; /* Bahut zaroori: layer ko box ke andar rakhne ke liye */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    border: 1px solid #eee;
}
.service-box::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5821f 0%, #985513 100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.service-box:hover::before {
    top: 0;
}

/* Orange/Active Box */
/*.service-box.active {
    background: #ff3e11;
    color: #fff;
}*/
.icon-wrap {
    display: inline-block;
    font-size: 45px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-box .icon-wrap {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-box h3 {
  font-size: 23px;
  margin-bottom: 15px;
  color: #f5821f;
}

.service-box p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 10;
    color: #000;
}

/* Hover Effects */
.service-box:hover {
  color: #fff;
  transform: translateY(-10px);    
}
.service-box:hover h3{
  color: #fff;
}
.service-box:hover p{
  color: #fff;
}

.service-box:hover .icon-wrap {
    transform: scale(1.2) rotate(10deg);
    filter: brightness(0) invert(1); /* Agar icon image hai to white ho jayegi */
}
.service-box:not(.active):hover {
    background: #f8f8f8;
}
/*.service-box.active:hover::before {
    background: #fff;
}
.service-box.active:hover {
    color: #333;
}*/
/* Responsive */
@media (max-width: 768px) {
    .section-header h1 {
        font-size: 28px;
    }
}

.stats-counter {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px;
  margin-top: 60px;
  border-radius: 8px;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 35px;
    color: #FF3E11;
}

.stat-info h2 {
  margin: 0;
  color: #fff;
  font-size: 38px;
}

.stat-info p {
  font-size: 17px;
  color: #ffffff;
  margin: 0;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:hover .stat-icon {
    transform: rotateY(360deg); /* Icon flip animation */
    color: #ff3e11; /* Hover par color thoda bright */
}

.testimonial-section {    
    padding: 80px 0;
}

.testimonial-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 4px;
    position: relative;
    border-left: 4px solid #e6821f;    
    margin: 45px 10px;
}
.testimonial-card .card-body{
    padding: 0px;
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h3 {
    font-size: 18px;
    margin: 0;
    color: #333;
}

.user-info span {
    font-size: 14px;
    color: #777;
}

.quote-icon img {
    width: 35px;    
}

.card-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin: 0;
}

/* Swiper Dots Color */
.swiper-pagination-bullet-active {
    background: #f5821f !important;
}
.swiper-pagination-bullet{
    background: #fff;
    opacity: 10;
}

/* SECTION */
.kranti-section{
  padding:100px 0;  
}

.kranti-container{
  width:100%;
  max-width:100%;
  margin:auto;
  display:flex;
  align-items:center;
      gap: 20px;
}

/* LEFT CONTENT */
.kranti-content{
    flex: 1;
    padding: 0px 60px;
    padding-right: 0px;
}

.kranti-content span{
  color:#fff;
  font-weight:600;
  letter-spacing:1px;
}

.kranti-content h2{
    font-size: 40px;
    font-weight: 800;
    margin: 15px 0 20px;
    color: #e6821f;
}

.kranti-content p{
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 18px;
}

/* LIST */
.kranti-list{
  margin-bottom:25px;
}

.kranti-list li{
  list-style:none;
  margin-bottom:12px;
  font-weight:500;
  color:#fff;
  position:relative;
  padding-left:22px;
  font-size: 18px;
}

.kranti-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#e6821f;
}
.kranti-list li strong{
    font-family: 'Outfit-Bold';
}

/* RIGHT IMAGE */
.kranti-image{
  flex:1;
}

.kranti-image img{
    width: 100%;
    border-radius: 20px 0px 0px 20px;
    object-fit: cover; 
}


footer {
    display: inline-block;
    width: 100%;    
    padding: 120px 0px;
    padding-bottom: 40px;
    position: relative;
}
footer:after {
    content: "";
    position: absolute;
    background: url(../images/right-img.png) top / cover;
    width: 170px;
    height: 100%;
    background-size: 100%;
    right: 0;
    top: 30px;
    background-repeat: no-repeat;
    animation: smoothFloat 4s ease-in-out infinite;
    opacity: 0.8;
    z-index: 1;
}

.footer_logodiv {
    display: inline-block;
    width: 100%;
}
.footer_logodiv img {
    width: 150px;
    border-radius: 14px;
}
.footer_logodiv p {
    margin: 0;
    font-size: 16px;
    margin-top: 23px;
    max-width: 400px;
    color: #b6b6b6;
}
.footer_logodiv h3{
    margin: 0px;
    color: #e6821f;
    font-size: 42px;
    margin-top: 20px;
}
.footer_menu {
    display: inline-block;
    width: 100%;
}
.footer_menu h3 {
    margin: 0px;
    color: #e6821f;
    margin-bottom: 20px;
    font-size: 24px;
    text-transform: uppercase;
}
.footer_menu ul {
    padding: 0px;
    margin: 0px;
}
.footer_menu ul li {
    margin-bottom: 10px;
}
.footer_menu ul li a {
    color: #fff;
    font-size: 17px;
}
.footer_socialmedia {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}
.footer_socialmedia a {
    margin-right: 17px;
}
.footer_socialmedia a span {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #e6821f;
    text-align: center;
    line-height: 34px;
    color: #fff;
    font-size: 21px;
    border-radius: 6px;
}
.footer_menu ul li a svg{
    margin-right: 8px;
    color: #e6821f;
}
.design_info{
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 18px;
    padding: 20px 0px;
}
.design_info p{
    margin: 0px;
}
.design_info p a{
    color: #fff;
}

.about-hero{
    position: relative;
    height: 450px;
    background: url(../images/sub-bsnner.png);
    display: flex;
    align-items: center;
    padding-left: 8%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-bottom: 2px dotted #f5821f;
}

/* DARK OVERLAY */
.sub_overlay{
      position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 69%);
    z-index: 1;
}

/* CONTENT */
.hero-content{
    position: relative;
    z-index: 2;
    top: 62px;
}

.hero-content h1{
  font-size:60px;
  font-weight:900;
  letter-spacing:2px;
  line-height:1;
}

/* BLUE BAR */
.blue-bar{
  background-image: linear-gradient(204deg, #02020200 35%, #e6821f 100%);
    color: #fff;
    padding: 3px 11px;
}

/* BREADCRUMB */
.breadcrumb{
    font-size: 20px;
    color: #fff;
    margin-top: 40px;
}

.breadcrumb a{
  color:#da7c21;
  text-decoration:none;
}

.breadcrumb span{
  margin:0 5px;
  color:#ccc;
}

.breadcrumb .active{
  color:#fff;
}

.background-section{
  padding:120px 0;
  position: relative;
}
.background-section:after {
    content: "";
    position: absolute;
    background: url(../images/left-img.png) top / cover;
    width: 200px;
    height: 100%;
    background-size: 100%;
    left: 0;
    top: 140px;
    background-repeat: no-repeat;
    animation: smoothFloat 4s ease-in-out infinite;
    opacity: 0.8;
}

.about_mandivbox{
  width:100%;
  max-width:100%;
  margin:auto;
  display:flex;
  gap:80px;
  align-items:flex-start;
}

/* LEFT SIDE */
.left-content{
  flex:1;
}

.about_subtitle{
    color: #ffffff;
    font-size: 27px;
    letter-spacing: 1px;
}
.about_subtitle h4{
    color: #e6821f;
}

.left-content h1{
    font-size: 46px;
    color: #fff;
    margin: 20px 0;
}

.left-content p{
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

/* RIGHT SIDE */
.right-content{
  flex:1;
  position:relative;
}

.right-content img{
    width: 100%;
    border-radius: 6px;
    display: block;
    height: 590px;
    object-fit: cover;
}

/* BOTTOM CARD */
.bottom-card{
    position: absolute;
    bottom: -100px;
    width: 85%;
    background: #000000;
    padding: 20px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    border-radius: 16px;
    right: -60px;
    color: #fff;
    border: 3px solid #f5821f;
}

.mission-vision-section{
  padding:40px 0;
  padding-bottom: 110px;
  position: relative;
}
.mission-vision-section:after {
    content: "";
    position: absolute;
    background: url(../images/right-img.png) top / cover;
    width: 143px;
    height: 449px;
    background-size: 100%;
    right: 0;
    top: 50px;
    background-repeat: no-repeat;
    /* animation: smoothFloat 4s ease-in-out infinite; */
    opacity: 0.8;
    z-index: 1;
}

.mission_container{
  width:100%;
  max-width:100%;
  margin:auto;
  display:flex;
  gap:60px;
}

.mv-box{
  flex:1;
  text-align:center;
}

/* 🔥 ICON WRAPPER */
.icon-wrapper{
  width:90px;
  height:90px;
  margin:0 auto 25px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(245,130,31,0.1);
  border:2px solid #f5821f;
  transition:all 0.4s ease;
  position:relative;
  overflow:hidden;
}

.icon-wrapper svg{
  width:40px;
  height:40px;
  color:#f5821f;
  transition:all 0.4s ease;
}


.mv-box:hover .icon-wrapper{
  background:#f5821f;
  box-shadow:0 0 25px rgba(245,130,31,0.7);
  transform:scale(1.1);
}

.mv-box:hover .icon-wrapper svg{
  color:#000;
  transform:rotate(15deg) scale(1.2);
}

/* Title Bar */
.mv-title{
    background: #f5821f;
    padding: 12px;
    font-size: 30px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #fff;
}

/* Text */
.mv-box p{
    font-size: 21px;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
}
.sub_pageheader{
    position: inherit;
}



.values-section {
    padding: 80px 0;
    background-color: #111;
    color: #fff;
    text-align: center;
    position: relative;
}

.values-section:after {
    content: "";
    position: absolute;
    background: url(../images/left-img.png) top / cover;
    width: 200px;
    height: 100%;
    background-size: 100%;
    left: 0;
    top: 30px;
    background-repeat: no-repeat;
    animation: smoothFloat 4s ease-in-out infinite;
    opacity: 0.8;
}

.values_container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.sub-title {
    color: #e6821f;
    font-weight: bold;
    letter-spacing: 2px;
}

.section-header h1 {
    font-size: 38px;
    margin: 20px 0 50px;
}

/* 5 Box Grid Layout */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 Barabar columns */
    gap: 20px;
}

.value-box {
        position: relative;
    background: #1a1a1a;
    padding: 28px 13px;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    text-align: left;
    border-color: #e6821f;
    background: rgba(230, 130, 31, 0.05);
    text-align: center;
}

/* Unique Slide-up Hover Layer */
.value-box::before {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(230, 130, 31, 0.2));
    transition: 0.5s;
    z-index: -1;
}

.value-box:hover::before {
    bottom: 0;
}

/* Border Glow on Hover */
.value-box:hover {
    border-color: #e6821f;
    transform: translateY(-15px);
    box-shadow: 0 10px 30px rgba(230, 130, 31, 0.2);
}

/* Active Class (Orange Theme) */
.value-box.active {
    border-color: #e6821f;
    background: rgba(230, 130, 31, 0.05);
}

/* Icon Flip Effect */
.icon-wrapadd {
    font-size: 45px;
    margin-bottom: 25px;
    display: inline-block;
    transition: 0.6s ease;
}

.value-box:hover .icon-wrapadd {
    transform: rotateY(360deg) scale(1.1);
}

.value-box h3 {
    color: #e6821f;
    font-size: 22px;
    margin-bottom: 15px;
}

.value-box p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* Box Numbering Decoration */
.box-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03); /* Chupa hua number */
    transition: 0.4s;
}

.value-box:hover .box-number {
    color: rgba(230, 130, 31, 0.2);
}

.contact-page {
    padding: 100px 0;
    background-color: #000000;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Info Side */
.contact-info {
    flex: 1;
}
.contact-info .info-text h3{
    color: #e6821f;
}
.contact-info .info-text p{
    font-size: 18px;
}
.contact-info .info-text p a{
    color: #fff;
}
.map_divbox{
    display: inline-block;
    width: 100%;
}
.map_divbox iframe{
    width: 100%;
}

.contact-info h1 {
    font-size: 42px;
    margin: 20px 0;
    color: #fff;
}
.contact-info p{
    color: #fff;
    margin: 0px;
    font-size: 16px;
}

.info-items {
    margin-top: 40px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: #ff3e11;
    transition: 0.4s;
}
.info-icon img{
        width: 55px;
}
.info-box:hover .info-icon {
    background: #ff3e11;
    color: #fff;
    transform: rotateY(360deg); /* Flip effect */
}

/* Form Side */
.contact-form {
    flex: 1.2;
    background: #000000;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6821f;
}

.input-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

/* Unique Glow Hover on Inputs */
.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #ff3e11;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 62, 17, 0.1);
}

.btn-submit {
    background: #e6821f;
    color: white;
    border: none;
    padding: 18px 35px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.4s;
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #e6821f;
    letter-spacing: 1px;
}

.products-page {
    background-color: #1a1a1a; /* Dark background */
    padding: 80px 0;
    color: white;
}

.product-header {
    text-align: center;
    margin-bottom: 50px;
}

.product-header .sub-title {
    color: #ff3e11;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-header h1 {
    font-size: 45px;
    margin-top: 15px;
    line-height: 1.2;
}

/* Filters */
.filters {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.filters select {
    padding: 10px 15px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.filters select:focus {
    border-color: #ff3e11;
    box-shadow: 0 0 5px rgba(255, 62, 17, 0.5);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Product Card */
.product-card {
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ff3e11;
}

.product-info .category {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.add-to-cart {
    background-color: #ff3e11;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    font-weight: bold;
}

.add-to-cart:hover {
    background-color: #e6821f;
}

/* Responsive */
@media (max-width: 768px) {
    .product-header h1 { font-size: 35px; }
    .filters { flex-direction: column; max-width: 300px; margin: 30px auto 0; }
    .product-grid { grid-template-columns: 1fr; }
}
.testimonial_title{
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 50px;
}
.testimonial_title h3{
    color: #e6821f;
    font-size: 35px;
    margin-bottom: 15px;
}
.testimonial_title p{
    color: #ffffff;
    font-size: 20px;
    margin: 0 auto;
    max-width: 690px;
}
.custam_tabingdiv {
    display: inline-block;
    width: 100%;
    margin-top: 60px;
}
.custam_tabingdiv .nav.nav-pills {
    /*height: 100%;*/
    background-color: #b45f14;
    padding: 15px 0px 0px 0px;   
    transform: translateY(0);
    opacity: 10;
    pointer-events: auto;
    border-top: 0px;
    z-index: 1;
    position: relative;
    padding-top: 0px;
    top: 0;
}
.custam_tabingdiv .nav-item {
    margin-bottom: 0px;
}
.custam_tabingdiv .nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: 0;
    text-align: left;
    color: #fff !important;
    font-size: 20px;
    padding: 13px 20px;
    width: 100%;
    border-top: 1px solid #000;
    text-align: left;
}
.nav .nav-item button.active {
    background-color: #000;
    color: #fff !important;
}
.product_detailsman {
    display: inline-block;
    width: 100%;
}
.product_textimg {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}
.product_textimg h2 {
    margin: 0px;
    text-transform: uppercase;
    font-size: 35px;
    color: #e6821f;
}
.product_coverdiv{
    display: inline-block;
    width: 100%;
    border: 1px solid #f5831f;
    border-radius: 19px;
    text-align: center;
    background-color: #231f20;
    margin-bottom: 40px;
    height: 325px;
}
.product_coverdiv p{
    margin: 0px;
    color: #fff;
    font-size: 16px;
    padding: 11px 0px;
}
.product_imgdivbox{
    display: inline-block;
    width: 100%;
    background-color: #fff;
    border-radius: 14px;
}
.product_imgdivbox img{
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 30px;
}
.product_topmancover{
    display: inline-block;
    width: 100%;
    position: relative;
}
.product_topmancover:after {
    content: "";
    position: absolute;
    background: url(../images/left-img.png) top / cover;
    top: 100px;
    width: 250px;
    height: 100%;
    background-size: 100%;
    left: 0;
    top: 50px;
    background-repeat: no-repeat;
    animation: smoothFloat 4s ease-in-out infinite;
    opacity: 0.8;
}
.float_wp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 40px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
.addflot_wp{
    bottom: 20px;
}
.fa-whatsapp{
    font-size: 35px;
    line-height: 58px;
}
/* media queries */

@media (max-width: 1199px){
    
}
@media (max-width: 991px){
    .product_textimg h2 {    
        font-size: 30px;
    }   
    .product_textimg {    
        margin-bottom: 20px;
        margin-top: 30px;
    }
    .values-section {
        padding: 30px 0;    
    }
    .values-grid {    
        grid-template-columns: inherit;    
    }
    .values-section:after{
        display: none;
    }
    .mission-vision-section {
        padding: 30px 0;
        padding-bottom: 40px;    
    }
    .mv-box p {
        font-size: 18px;    
    }
    .mv-title {    
        font-size: 23px;    
    }
    .mission-vision-section:after{
        display: none;
    }
    .mission_container {    
        flex-direction: column;
    }
    .bottom-card {
        position: inherit;
        bottom: 0px;
        right: 0px;
        padding: 10px;
        font-size: 19px;
        margin-top: 30px;
        width: 100%;
    }
    .left-content p {    
        font-size: 16px;
    }
    .left-content h1 {
        font-size: 32px;    
    }
    .about_mandivbox{
        gap: 0px;        
        flex-direction: column;
    }
    .background-section:after{
        display: none;
    }
    .background-section {
        padding: 60px 0;    
    }
    .img-small{
        bottom: -70px;
        right: 0;
    }
    .img-large img {    
        border-radius: 8px;
        height: auto;    
    }
    .design_info {    
        font-size: 16px;
        padding: 15px 0px;
    }
    .services-section {    
        padding: 40px 0;    
    }
    .footer_logodiv h3 {    
        font-size: 25px;
        margin-top: 15px;
    }
    .footer_logodiv img {
        width: 180px;    
    }
    .kranti-content {    
        padding: 0px 25px;    
    }
    .sub-title {    
        margin-bottom: 0px;
        font-size: 21px;
    }
    .section-header h1 {
        font-size: 33px;
        margin: 5px 0 23px;
    }
    .kranti-content p {    
        margin-bottom: 21px;
        font-size: 17px;
    }
    .testimonial_title p {    
        font-size: 17px;
        max-width: 100%;
    }
    .testimonial_title h3 {    
        font-size: 30px;
    }
    .stat-info p {
        font-size: 15px;    
    }
    .stat-info h2 {    
        font-size: 30px;
    }
    .stats-counter {    
        padding: 20px;
        margin-top: 30px;
        gap: 20px;
    }
    .footer_socialmedia {    
        margin-top: 0px;
    }
    .footer_menu {    
        margin: 15px 0px;
    }
    footer {    
        padding: 30px 0px;    
    }
    footer:after{
        display: none;
    }
    .kranti-section {
        padding: 40px 0;
    }
    .kranti-image img {        
        border-radius: 0;        
    }
    .testimonial-section {
        padding: 40px 0;
    }
    .services-section:after{
        display: none;
    }
    .about-content h2 {
        font-size: 33px;    
    }
    .btnmore {    
        transform: translate(0px, 0px) !important;
        font-size: 14px;
    }
    .about-section {
        padding: 50px 0;    
    }
    .about-section:after{
        display: none;
    }
    .about_coverdiv{
        flex-direction: column;
    }
    .nav-list a{
        font-size: 18px;
    }
    .nav-list {    
        gap: 15px;    
    }
    .logo h3 {    
        font-size: 17px;
        margin-top: 24px;    
        margin-left: 1px;
    }
    .logo img {
        width: 140px;        
    }
    .contact-wrapper { flex-direction: column; gap: 20px;}
    .contact-form { width: 100%; }
     .kranti-container{
    flex-direction:column;
  }

  .kranti-content h2{
    font-size:28px;
  }
}
@media (max-width: 768px){
    .menu-toggle{
        display: flex;
        position: absolute;
        right: 20px;
        top: 33px;
  }

  .nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    border-top:1px solid #eee;
    transform:translateY(-10px);
    opacity:0;
    pointer-events:none;
    transition:0.3s;
  }

  .nav.active{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    background-color: #000;
    top: 108px;
    z-index: 11;
    border-top: 0;
    width: 100%;
    display: inline-block;
  }

  .nav-list{
    flex-direction:column;
    gap:0;
  }

  .nav-list li{
    border-bottom:1px solid #eee;
  }

  .nav-list a{
    display:block;
    padding:15px 20px;
    text-align: center;
  }

  /* Hamburger Animation */
  .menu-toggle.active span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
  }

  .menu-toggle.active span:nth-child(2){
    opacity:0;
  }

  .menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg) translate(5px,-5px);
  }
}

@media (max-width: 767px){
    .float_wp{
        right: 20px;
    }
    .header-container {
        max-width: 100%;    
        padding: 15px 0px;    
        flex-direction: column;
    }
    .com_name h3 {
        margin: 0;
        color: #fff;
        display: inline-block;
        font-size: 21px;
        margin-top: 10px;
        float: left;
        margin-left: 0;
    }
    .breadcrumb {    
        margin-top: 20px;
    }
    .background-section {
        padding: 30px 0;
    }
    .about_subtitle {    
        font-size: 25px;    
    }
    .section-header h1 {
        font-size: 30px;        
    }
    .contact-info .info-text p {
        font-size: 16px;
    }
    .footer_logodiv img {
        width: 150px;
    }
    .input-row {    
        flex-direction: column;
    }
    .contact-form {    
        padding: 14px;    
    }
    .info-icon img {
        width: 46px;
    }
    .contact-info h1 {
        font-size: 31px;
        margin: 12px 0;        
    }
    .contact-page {
        padding: 50px 0;    
    }
    .logo img{
        width: 120px;
    }
    .about-content h2 {
        font-size: 28px;
    }
    .progress-bar{
        display: none;
    }
    .site-header{
        position: inherit;
    }
    .btn{
        width: 50px;
        height: 50px;
    }
    .parallax-title{
        font-size: 35px;
    }
    .slider {    
        height: 440px;    
    }   
    .custam_tabingdiv {    
        margin-top: 30px;
    }
    .hero-content h1 {
        font-size: 35px;    
    }
    .hero-content {    
        top: 12px;
    }
    .about-hero{
        height: 230px;
    }
    .product_topmancover:after{
        display: none;
    }
}
/* media queries */








