* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 
.custom-navbar {
  background-color: #F8F8F8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 60px;
  font-family: "Open Sans", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 98px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
  transition: top 0.3s;
}

.nav-logo img {
  height: 100px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  color: #333;
  font-weight: 700;
  padding: 8px 10px;
  transition: all 0.3s ease;
}


.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #C52E33;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}


.nav-links a.active {
  color: #C52E33;
}


.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown .arrow {
  font-size: 12px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  list-style: none;
  padding: 10px 0;
  min-width: 250px;
  z-index: 100;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #333;
  font-size: 15px;
  transition: 0.3s;
}

.dropdown-menu a:hover {
  background: #C52E33;
  color: #fff;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .custom-navbar {
    padding: 10px 15px;
  }


  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none; 
    padding: 10px 0;
    gap: 0;
    text-align: center;
    margin: 0;
  }

  .nav-links.show {
    display: flex; 
  }

  
  .dropdown-menu {
     position: relative;     
    display: none;          
    background: #f8f8f8;    
    padding-left: 15px;    
    margin: 0;
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown-menu a {
    padding: 8px 10px;
    display: block;
  }

  .menu-toggle {
    display: block;
    margin-left: 0;
  }

  .nav-logo img {
    height: 40px;
  }
} */




.navbar-brand img {
  height: 82px;
}

.navbar{
  height: 100px;
}

.navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px; /* gap between links */
}

.nav-link {
  font-weight: 600;
  color: #333 !important;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.nav-link:hover {
  color: #C52E33 !important;
}

.dropdown-menu a:hover {
  background-color: #C52E33;
  color: #fff !important;
}

.offcanvas-header {
  border-bottom: 1px solid #ddd;
}

@media (max-width: 992px) {
  .navbar-nav .nav-link {
    padding: 10px;
  }
  .my-img{
    margin-left: -138px;
  }
}



/* crousel */
/* Carousel Caption Base */
.caro-caption {
   position: absolute;
  top: 50%;        
  left: 50%;       
  transform: translate(-50%, -50%); 
  text-align: center;
  width: 100%;
  z-index: 10;
}

/* Slide Text Animation */
.slide-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  font-weight: 800;
  width: 50%;
  opacity: 0;
  margin-left: 350px;
  transform: translateY(50px) !important;
  transition: all 0.8s ease-in-out;
}

.carousel{
    margin-top: 100px;
}

/* Active Slide Animation */
.carousel-item.active .slide-text {
  opacity: 1;
  transform: translateY(0) !important;
}

/* Optional: Smooth fade-in for subsequent slides */
.carousel-item-next .slide-text,
.carousel-item-prev .slide-text {
  opacity: 0;
  transform: translateY(50px);
}


/* Slide button */
.slide-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #C52E33; 
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
}

/* Animate along with slide text */
.carousel-item.active .slide-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Hover effect */
.slide-btn:hover {
  background-color: #a02528;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .slide-btn {
    font-size: 0.9rem;
    padding: 8px 10px;
    margin-top: -10px;
  }

  
  .carousel{
    margin-top: 101px;
  }
  .slide-text{
    margin-left: 35px;
    margin-top: -20px;
    font-size: 12px !important;
    width: 85%;
  }
}

@media (max-width: 480px) {
  .slide-btn {
    font-size: 0.8rem;
    padding: 4px 10px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  

  .caro-caption {
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .slide-text {
    font-size: 1.2rem;
  }
}

/* end */



/* about */
/* ===== About Section ===== */
.about-section {
  padding:-30px 50px;
  background-color: #f9f9f9;
  font-family: "Open Sans", sans-serif;
}

/* Container */
.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}


/* Video / Image container */
.about-video {
  flex: 1 1 475px;
  width: 100%;
  max-width: 600px;
  margin-top: -20px;
  height: 700px;
  border-radius: 12px;
  overflow: hidden;
  animation: fadeInLeft 1s ease forwards;
  opacity: 0;
  /* border-radius: 30px; */
  transform: translateX(-50px);
}

/* Make iframe / video fit the container */
.about-video iframe,
.about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

/* Content */
.about-content {
  flex: 1 1 500px;
  animation: fadeInRight 1s ease forwards;
  opacity: 0;
  transform: translateX(50px);
}

.about-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.about-subheading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #C52E33;
}

.about-para {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

/* Button */
.about-more {
  background-color: #a02528;
  color: white;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 30px;
  display: inline-block;
  transition: background 0.3s ease;
}

.about-more:hover {
  background-color: #8f1e1f;
  color: white;
}

/* ===== Animations ===== */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    gap: 30px;
  }
  .about-content {
    text-align: center;
  }
  .about-heading {
    font-size: 2rem;
  }
  .about-subheading {
    font-size: 1.2rem;
  }

  .about-para{
    text-align: justify;
    line-height: 25px;
  }
}

@media (max-width: 768px) {
  .about-video {
    height: 300px;
    animation: fadeInUp 1s ease forwards;
    transform: translateY(30px);
  }
  .about-content {
    margin-top: 0;
    animation: fadeInUp 1s ease forwards;
    transform: translateY(30px);
  }
  .about-section {
    padding: 80px 23px;
  }
}

@media (max-width: 480px) {
  .about-video {
    height: 200px;
  }
}


/*  */


/* produts */

/* Product Section */
.product-section {
  padding: 80px 50px;
  background-color: #f8f8f8;
  font-family: "Open Sans", sans-serif;
}

.product-container {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  justify-content: center;
}

/* Product Card */
.product-card {
  flex: 1 1 30%;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Hover effect on card */
.product-card:hover {
  box-shadow: 0 12px 25px rgba(0,0,0,0.2); /* sirf shadow badhega */
}

/* Image */
.product-image {
  width: 400;
  height: 400px; /* Exact desktop height */
  overflow: hidden;
  padding: 20px;
  /* border-radius: 30px; */
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 10px;

}

.product-image:hover img {
  transform: scale(1.02);
}

/* Content */
.product-content {
  padding: 20px;
}

.product-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-icon {
  font-size: 1.3rem;
  color: #555;
  transition: color 0.3s ease;
}

.product-icon:hover {
  color: #C52E33;
}

.product-para {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.heading{
    background-color: #F8F8F8;
    text-align: center;
    font-size: 35px;
    margin-bottom: 50px;
    color: black;
    font-weight: 700;
    /* position: relative; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-card {
    flex: 1 1 45%;
  }
  .product-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    gap: 20px;
  }
  .product-image {
    height: 200px;
  }
  .product-heading {
    font-size: 1.3rem;
  }
  .heading{
    font-size:33px
  }
  .product-para{
    text-align: justify;
  }
}

@media (max-width: 480px) {
  .product-image {
    height: 202px !important;
  }
  .product-heading {
    font-size: 1.1rem;
  }
}

/*  */



/* counter */

.counter-section {
  position: relative;
  background: url("./img/banner.png") no-repeat center center/cover;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.counter-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); /* light black gradient overlay */
  z-index: 1;
}

.counter-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

.counter-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.counter-subheading {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.counter-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.counter-item {
  flex: 1 1 220px;
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.counter-item:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.2);
}

.counter-icon {
  font-size: 40px;
  color: #C52E33;
  margin-bottom: 15px;
}

.counter-number {
  font-size: 2rem !important;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

.counter-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.counter-footer {
  margin-top: 40px;
  font-size: 1.1rem;


  font-weight: 500;
  opacity: 0.95;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .counter-heading {
    font-size: 1.8rem;
  }
  .counter-number {
    font-size: 1.6rem;
  }
}

/*  */


/* footer */


.footer-logo{
  margin-top: -29px;
}

.footer-para{
  margin-top: -30px;
}

.footer-sec{
  padding-left: 70px;
}

.site-footer {
  background-color: #797c7e;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  padding-top: 60px;
}

.footer-top {
  padding-bottom: 40px;
}

.footer-col {
  margin-bottom: 30px;
}

.footer-heading {
  font-size: 21.5px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}

.footer-border {
  width: 50px;
  height: 3px;
  background-color: #C52E33; 
  margin: 8px 0 15px;
}



.product-border{
  width: 90px;
  height: 3px;
  background-color: #C52E33; /* your chosen color */
  margin: 8px 0 15px;
}




.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #ffffffb9;
  text-decoration: none;
  transition: all 0.3s ease;
  
}

.footer-links li a:hover {
  color: #C52E33;
  letter-spacing: 1px;
}

.footer-col p {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-col i {
  margin-right: 10px;
  color: #C52E33;
}

.footer-bottom {
  background-color: #222D35;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.footer-bottom a.footer-dev {
  color: #C52E33;
  text-decoration: none;
}

.footer-bottom a.footer-dev:hover {
  text-decoration: underline;
}

.contact-div{
    /* background-color: #F8F8F8; */
    padding-left: 50px;
}

.footer-company{
    color: #C52E33;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom .container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .contact-div{
    /* background-color: #F8F8F8; */
    padding-left: 15px;
}

  .footer-col {
    text-align: left;
  }

  .footer-links li a {
    font-size: 14px;
  }

  .footer-sec{
    padding-left: 10px;
  }
}

/*  */



/* about us */
/* Banner section */
.banner-section {
  height: 400px;
  position: relative;
  background: url('./img/about-us-banner.png') no-repeat center center;
  background-size: contain;
  margin-top: 55px;
}

/* Navigation links inside banner */
.banner-nav {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  position: absolute;
  top: 50%;
  left: 450px; /* left side */
  transform: translateY(-50%);
}

.tape{
  left: 470px ;
}
.banner-nav h1{
  color: white;
  font-weight: 800;
}

.banner-about{
  padding-left: 20px;
  border-left: 3px solid #b92729;
}

.banner-link {
  font-size: 19px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.banner-link:hover {
  color: #fff;
}

.banner-link.active {
  color: #fff;
}

.bopp{
  left: 261px !important;
}

/* Responsive (mobile) */
@media (max-width: 768px) {
  .banner-section {
    height: 100px;
    margin-top: 90px !important;
  }

  .banner-link {
    font-size: 16px;
  }

  .left{
    left: 89px !important;
  }

  .banner-nav {
    gap: 15px;
    left: 67px;
  }

  .bopp{
    left: 20px !important;
  }

  .banner-nav h1{
    font-size: 20px;
    margin-top: 10px;
  }
  .links{
    margin-top: -20px;
  }
}


/*  */


/* about us content */

/* Section Background */
.aboutus-section {
  position: relative;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  
  /* Gradient overlay + background image */
  background: linear-gradient(
      rgba(255, 255, 255, 1), /* top light white */
      rgba(255, 255, 255, 0.50)  /* bottom light white */
    ),
    url('about-bg-img.png') no-repeat center center;
  background-size: cover;
}

/* Left Image */
.about-img {
  width: 475px;
  height: 624px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}
.about-img:hover {
  transform: scale(1.02);
}


.about-main{
  color: black;
  font-weight: 700;
  font-size: 35px;
}
/* Right Text */
.aboutus-heading {
  font-size: 2.7rem;
  font-weight: 700;
  color: #C52E33;
  margin-bottom: 20px;
}


.about-right{
  margin-top: -20px;
}
.aboutus-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #333333da;
  font-weight: 600;
  margin-bottom: 10px;
}
.fade-up {
  opacity: 1 !important;
  transform: none !important;
}

/* Scroll Animation */
/* .fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
} */

/* Responsive */
@media (max-width: 992px) {
  .about-img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }

  .about-right{
    margin-top: -47px;
  }
  .about-main{
    text-align: center;
  }

  .aboutus-text{
    text-align: center;
  }
  .aboutus-heading {
    font-size: 35px;
    text-align: center;
  }
}


/* other section */

.hero-section {
width: 100%;
height: 60vh; /* Full viewport height */
margin: 0;
padding: 0;
background: url('./img/about-page.png') no-repeat center center/cover;
position: relative;
}


.hero-overlay {
width: 100%;
height: 100%;
background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.5));
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 0 20px;
}


.hero-content h3 {
font-size: 2.7rem !important;
color: #fff;
margin-bottom: 20px;
font-weight: 700;
}


.hero-content p {
font-size: 1.2rem;
color: #d8d0d0;
margin-left: 100px;
margin-bottom: 30px;
max-width: 800px;
line-height: 1.3;
}


.hero-btn {
display: inline-flex;
align-items: center;
gap: 8px;
/* justify-content: center; */
background-color: #C52E33;
color: #fff;
text-decoration: none;
padding: 10px 28px;
border-radius: 50px;
font-weight: 600;
transition: background 0.3s ease;
}


.hero-btn:hover {
background-color: #a5262b;
color: white;
}


.arrow {
font-size: 1.2rem;
color: black;
}


/* Responsive */
@media (max-width: 768px) {
.hero-content h3 {
font-size: 1.8rem;
}
.hero-content p {
font-size: 0.9rem;
margin-left: 11px;
}
}


@media (max-width: 480px) {
.hero-content h3 {
font-size: 1.5rem;
}
.hero-content p {
font-size: 0.85rem;
}
}


/* our value */
.values-section {
padding: 80px 20px;
background: #f9f9f9;
text-align: center;
}


.values-container {
max-width: 1200px;
margin: 0 auto;
}


.values-heading {
font-size: 2.7rem !important;
color: #C52E33; /* Same color as you mentioned */
margin-bottom: 20px;
font-weight: 700;
}


.values-subtext {
font-size: 1.1rem;
color: #555;
max-width: 700px;
margin: 0 auto 50px;
line-height: 1.3;
font-weight: 600;
}


.values-row {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}


.value-card {
background: #fff;
padding: 30px 20px;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}


.value-card:hover {
transform: translateY(-10px);
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


.value-icon {
font-size: 3rem;
color: #C52E33;
margin-bottom: 15px;
}


.value-card h3 {
font-size: 1.3rem;
margin-bottom: 10px;
color: #222;
}


.value-card p {
font-size: 0.95rem;
color: #555;
line-height: 1.5;
}


/* Responsive */
@media (max-width: 992px) {
.values-row {
grid-template-columns: repeat(2, 1fr);
}
}


@media (max-width: 576px) {
.values-row {
grid-template-columns: 1fr;
}
}


/* vission & mission */
/* Section Background */
.mission-vision {
  /* background: linear-gradient(135deg, #f9f9f9, #ffffff); */
  background-color: #8f1e1f;
}

/* Card Base */
.mv-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 5px solid #8f1e1f;
}

/* Card Hover Effect */
.mv-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.20);
}

/* Icon Style */
.mv-icon {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  transition: transform 0.4s ease, color 0.4s ease;
}

/* Title */
.mv-title {
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: 1.8rem !important;
}

/* Text */
.mv-text {
  font-size: 1rem;
  color: #555;
  font-weight: 600;
  line-height: 1.4;
}

/* Mission Theme */
.mission-card .mv-icon {
  color: #f7b731;
}
.mission-card:hover .mv-icon {
  transform: scale(1.5) rotate(10deg);
  color: #e1a20d;
}

/* Vision Theme */
.vision-card .mv-icon {
  color: #20bf6b;
}
.vision-card:hover .mv-icon {
  transform: scale(1.5) rotate(-10deg);
  color: #149d54;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mv-card {
    padding: 1.5rem;
  }
  .mv-title {
    font-size: 1.3rem;
  }
  .mv-icon {
    font-size: 2.5rem;
  }
}



/* about us why choose */

/* Section background */
.why-choose {
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  position: relative;
  overflow: hidden;
}

/* Heading */
.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.section-title span {
  background: linear-gradient(90deg, #8f1e1f, #C52E33);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 600;
}

/* Feature Card */
.feature-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 180deg,
    #8f1e1f,
    #2c0a0b,
    #d4a373,
    #f6e7d8,
    #8f1e1f
  );
  animation: rotate 14s linear infinite;
  opacity: 0.12; /* very subtle premium glow */
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

/* Card Content */
.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color:rgba(0, 0, 0, 0.247);
  z-index: 2;
  position: relative;
  transition: transform 0.4s ease, color 0.4s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(10deg);
  color: rgba(20, 20, 20, 0.603);
}
.feature-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 2;
}
.feature-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
  position: relative;
  z-index: 2;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .feature-card {
    padding: 1.5rem 1rem;
  }
  .feature-icon {
    font-size: 2.5rem;
  }
}

/*  */



/* contact */

.contact-banner{
   height: 400px;
  position: relative;
  background: url('./img/contact-banner.png') no-repeat center center;
  background-size: contain;
  margin-top: 45px;

}


.contact-section {
  background-color: #f5f5f5;
}

.contact-card {
  background: #fff;
  /* background-color: #20bf6b; */
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fdf2f2;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  font-size: 1rem;
  color: #333;
}

.contact-item span{
  font-size: 19px;
  font-weight: 600;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-item i {
  font-size: 1.9rem;
  color: #8f1e1f;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-item:hover i {
  transform: scale(1.2);
  color: #b33a3a;
}

.map-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  height: 100%;
  min-height: 450px;
}

/* Responsive */
@media (max-width: 767px) {
  .map-card {
    min-height: 300px;
  }
  .contact-card {
    padding: 20px;
  }
  .contact-banner{
    margin-top: -61px !important;
  }

  .contact-section{
    margin-top: -150px;
  }

  
}

/*  */


.container-contact {
  position: relative;
  padding: 30px 0;
  background: linear-gradient(
      rgba(255, 255, 255, 1), /* top light white */
      rgba(255, 255, 255, 0.50)  /* bottom light white */
    ),
    url('about-bg-img.png') no-repeat center center;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-bg-overlay {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  /* background: rgba(255,255,255,0.25);  */
  /* backdrop-filter: brightness(0.7); */
  z-index:0;
  border-radius: 15px;
}


.contact-subheading {
  color:#8f1e1f;
  font-size: 25px;
  font-weight: 700;
}

.cont-main-heading {
  color: black;
  font-weight: 700;
  text-transform: uppercase;
}
.contact-form-section h5.subheading {
  position: relative;
  z-index:1;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-form-section h1.main-heading {
  position: relative;
  z-index:1;
  font-weight: 700;
  margin-bottom: 40px;
}

.input-contact{
  background-color: #F8F8F8;
  border: none;
}

.contact-form {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea {
  border-radius: 10px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #8f1e1f;
  box-shadow: 0 0 8px rgba(143,30,31,0.2);
}

.btn-submit {
  background-color: #8f1e1f;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-submit:hover {
  background-color: #b33a3a;
  transform: scale(1.05);
}

.btn-submit:active {
  transform: scale(0.95);
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1200px) {
  .contact-form-section {
    padding: 80px 20px;
  }
  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .contact-form-section {
    padding: 60px 15px;
  }
  .contact-form {
    padding: 25px;
  }

  .main-div-contact{
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}



/* coloured tape */

.coloured-tape-banner{
  height: 400px;
  position: relative;
  background: url('./img/coloured-tap.png') no-repeat center center;
  background-size: contain;
  margin-top: 55px;
}


.tape-manu{
   height: 400px;
  position: relative;
  background: url('./img/manu-tape.png') no-repeat center center;
  background-size: contain;
  margin-top: 55px;
}

.bopp-tape{
  height: 400px;
  position: relative;
  background: url('./img/bopp-tape.png') no-repeat center center;
  background-size: contain;
  margin-top: 55px;
}



/* Outer Container */
.main-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

/* Inner Container */
.content-container {
  width: 90%;
  max-width: 1200px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
}

.content-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(143, 30, 31, 0.25);
}

/* Image Column */
.img-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: #F9F4F4;
}

.img-col img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.img-col img:hover {
  transform: scale(1.01);
}

/* Text Column */
.text-col {
  padding: 40px;
  background-color: #fff;
  animation: fadeIn 1s ease forwards;
}

.text-col h2 {
  color: #8F1E1F;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 35px;
  margin-bottom: 20px;
}

.text-col p {
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 600;
}

.features, .specs {
  margin-top: 25px;
}

.features h5, .specs h5 {
  color: #8F1E1F;
  margin-bottom: 10px;
  font-weight: 700;
}

.features ul, .specs ul {
  list-style: none;
  padding: 0;
}

.features li::before {
  content: "✔ ";
  color: #8F1E1F;
  font-weight: bold;
}

.features ul li{
  font-weight: 600;
  font-size: 15px;
}


.specs ul li{
  font-weight: 600;
}

.specs li::before {
  content: "• ";
  color: #8F1E1F;
  font-weight: bold;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .text-col {
    padding: 30px;
  }

  .coloured-tape-banner{
    height: 115px;
  }

  .holo-graphic{
    height: 115px !important;

  }
}

@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
  }

  .img-col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 15px;
  }

  .img-col img {
    width: 48%;
  }

  .text-col {
    padding: 25px;
    text-align: center;
  }

  .text-col h2 {
    font-size: 1.5rem;
  }

  .text-col p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .img-col img {
    width: 100%;
  }

  .text-col {
    padding: 20px;
  }
}



/*  */

/* technica details */
.tech-full-section {
  width: 100%;
  background-color: #F5E6E6;
  padding: 0;
  margin: 0;
}

.inner-container {
  max-width: 1300px;
  margin: auto;
  padding: 80px 40px;
}

/* ===== HEADINGS ===== */
.main-heading {
  color:black;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2rem !important;
  position: relative;
  display: inline-block;
}

.main-heading::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #8F1E1F;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 2px;
}

.sub-heading {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
  font-weight: 600;
}

/* ===== TABLE CARD ===== */
.table-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.table-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(143, 30, 31, 0.25);
}

.table-title {
  color: #8F1E1F;
  font-weight: 600;
  margin-bottom: 15px;
  border-left: 5px solid #8F1E1F;
  padding-left: 10px;
  font-size: 1.25rem;
}

.spec-desc {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 500;
}

/* ===== TABLE DESIGN ===== */
.custom-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px;
  font-size: 1rem;
}

.custom-table thead {
  background-color: #8F1E1F;
  color: #fff;
}

.custom-table th,
.custom-table td {
  padding: 14px 18px;
  text-align: left;
}

.custom-table tbody tr:nth-child(odd) {
  background-color: #fff;
}

.custom-table tbody tr:nth-child(even) {
  background-color: #F9F4F4;
}

.custom-table tbody tr:hover {
  background-color: #f3dcdc;
  transition: 0.3s;
}

.first-table{
  margin-top: 50px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .inner-container {
    padding: 60px 25px;
  }

  .main-heading {
    font-size: 1.7rem;
  }

  .table-title {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .inner-container {
    padding: 50px 20px;
  }

  .main-heading {
    font-size: 1.5rem;
  }

  .table-card {
    padding: 20px;
  }

  .custom-table th,
  .custom-table td {
    font-size: 0.9rem;
    padding: 10px;
  }

  .sub-heading {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 1.3rem;
  }

  .table-title {
    font-size: 1.1rem;
  }

  .spec-desc {
    font-size: 0.85rem;
  }
}

/* clients says */

/* ===== CLIENT SECTION ===== */
.client-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

/* Headings */
.main-heading {
  color: #8F1E1F;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2rem;
  position: relative;
  display: inline-block;
}

.main-heading::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #8F1E1F;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 2px;
}

.sub-heading {
  font-size: 1rem;
  color: #555;
  margin-top: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SCROLLING ROW ===== */
.scroll-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.scroll-content {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scrollMove 35s linear infinite;
}

@keyframes scrollMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(8, 8, 8, 0.171);
  padding: 30px;
  width: 320px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(143, 30, 31, 0.25);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}

/* ===== CLIENT INFO CAPSULE ===== */
.client-info {
  display: flex;
  align-items: center;
  background-color: #f7e8e8;
  border-radius: 50px;
  padding: 8px 14px;
  width: fit-content;
}

.client{
  /* background-color: #20bf6b; */
  margin-top: 50px;
}

.client-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  border: 2px solid #8F1E1F;
}

.client-name {
  color: #8F1E1F;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .testimonial-card {
    width: 280px;
    padding: 25px;
  }

  .main-heading {
    font-size: 1.7rem;
  }

  .sub-heading {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 250px;
  }

  .scroll-content {
    animation-duration: 25s;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    width: 220px;
    padding: 20px;
  }

  .main-heading {
    font-size: 1.4rem;
  }

  .sub-heading {
    font-size: 0.85rem;
  }

  .client-name {
    font-size: 0.85rem;
  }
}


/* holographic */
.holo-graphic{
   height: 400px;
  position: relative;
  background: url('./img/holographic.png') no-repeat center center;
  background-size: contain;
  margin-top: 55px;
}


/* industrial */


.industrial{
  height: 400px;
  position: relative;
  background: url('./img/industrial.png') no-repeat center center;
  background-size: contain;
  margin-top: 55px;
}


.indes-para{
  font-size: 14px;
}


@media (max-width:992px) {
.industrial{
  height: 115px;
}
.stationary{
  height: 115px !important;
}   
}
/* stationary */

.stationary{
  height: 400px;
  position: relative;
  background: url('./img/statinory.png') no-repeat center center;
  background-size: contain;
  margin-top: 55px;
}

/* market area */
/* Theme Colors */
:root {
  --primary-color: #8F1E1F;
  --secondary-color: #b32a2b;
  --text-light: #fff;
  --bg-light: #f9f9f9;
}

/* Section Styling */
.market-section {
  background: linear-gradient(135deg, #fff, #f4eaea);
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  animation: fadeInDown 1.2s ease;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Cards */
.market-card {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 20px;
  padding: 35px 15px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transform: scale(0.95);
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(143, 30, 31, 0.2);
  animation: fadeUp 0.8s ease both;
}

.market-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: var(--secondary-color);
  box-shadow: 0 10px 25px rgba(143, 30, 31, 0.4);
  color: white;
}

.market-card .icon-wrap {
  font-size: 2.2rem;
  margin-bottom: 12px;
  transition: transform 0.4s ease, color 0.4s ease;
}

.market-card:hover .icon-wrap {
  transform: rotate(10deg) scale(1.2);
  color: #ffdcdc;
}

.market-card h2 , h3 , h4{
  font-size: 1.1rem !important;
}

/* Card title */
.market-card h5 {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  z-index: 1;
}

/* Ripple animation */
.market-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.market-card:active::after {
  width: 200%;
  height: 200%;
  transition: 0s;
}

/* Keyframe Animations */
@keyframes fadeUp {
  0% { transform: translateY(40px) scale(0.9); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes fadeInDown {
  0% { transform: translateY(-30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .market-card {
    padding: 25px 10px;
  }
  .market-card .icon-wrap {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.6rem;
  }
  .market-card {
    padding: 20px 8px;
  }
  .market-card h5 {
    font-size: 0.95rem;
  }
}


/* market area */

.marketarea-heading{
  color: #8F1E1F;
}
.market-area .section-title {
  font-size: 2.2rem;
  letter-spacing: 1px;
}

.market-area .divider {
  width: 100px;
  height: 3px;
  background-color: #EDDD5E;
}

.market-block h3 {
  font-size: 1.6rem;
  border-left: 5px solid #EDDD5E;
  padding-left: 10px;
}

.market-block h4 {
  font-size: 1.2rem !important;
  /* color: #EDDD5E; */
}

.market-block p {
  text-align: justify;
  line-height: 1.8;
  font-size: 18px;
  color: black;
  font-weight: 600;
}

@media (max-width: 768px) {
  .market-area .section-title {
    font-size: 1.8rem;
  }
  .market-block h3 {
    font-size: 1.3rem;
  }
  .market-block h4 {
    font-size: 1.1rem;
  }
}



/* tape manufacture */
.km-card{
background: #ffffff;
border-radius: 18px;
overflow: hidden;
box-shadow: 0 10px 28px rgba(160,37,40,0.28);
width: 100%;
}


/* IMAGE CONTAINER */
.km-image{
width: 500px; /* FIXED SIZE as requested */
/* background: linear-gradient(135deg, #A02528, #640f12); */
/* padding: 25px; */
}

/* IMAGE INSIDE */
.km-image-img{
/* width: 100%;
height: 100%; */
width: 500px;
height: 650px;
object-fit: cover;
filter: drop-shadow(0 10px 20px rgba(0,0,0,0.45));
transition: 0.5s ease;
}


.km-image:hover .km-image-img{
transform: scale(1.02);
}


/* CONTENT */
.km-content{
flex: 1;
background: #ffffff;
}


.km-title{
color: #A02528;
font-weight: 800;
margin-bottom: 15px;
}


.km-text{
font-size: 1rem;
color: #222;
line-height: 1.5;
}


/* MOBILE: STACK LAYOUT */
@media(max-width: 991px){
.km-image{
width: 100%;
max-width: 100%;
text-align: center;
}
.km-image-img{ max-width: 243px; max-height: 340px; }
}


/* Advanced clean animation */
.km-animate{
opacity: 0;
transform: translateY(30px) scale(0.97);
animation: fadeUp 0.9s ease-out forwards;
}


@keyframes fadeUp{
0%{ opacity:0; transform: translateY(30px) scale(0.97); }
70%{ opacity:0.85; transform: translateY(-6px) scale(1.02); }
100%{ opacity:1; transform: translateY(0) scale(1); }
}