  .service-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .service-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  }
  .carousel img {
    max-height: 700px;
    object-fit: cover;
  }
  
  
  /*css for slow bounce*/
  
    @keyframes slowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  .slow-bounce-img {
    display: inline-block;
    animation: slowBounce 5s ease-in-out infinite; /* 5s = slow bounce */
  }
   .rotate-on-hover {
    display: inline-block;
    font-size: 15px; /* thoda bada icon */
    color: white; /* default dark blue */
    transition: transform 0.6s ease, color 0.6s ease, text-shadow 0.6s ease;
  }

  .rotate-on-hover:hover {
    transform: rotateY(180deg) scale(1.3); /* left-right flip + thoda zoom */
    color: #28a745; /* green on hover */
    text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25); /* glow/shadow */
  }
  /*end*/
  
  /* Product Card */
.product-card {
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card img {
  max-height: 200px;
  object-fit: contain;
}
.product-title {
  background: linear-gradient(90deg, #002678, #0056b3);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 10px;
  text-transform: uppercase;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Explore All Products Button */
.btn-gradient {
  background: linear-gradient(90deg, #ff7b00, #ff4b2b);
  color: #fff;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  background: linear-gradient(90deg, #ff4b2b, #ff7b00);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

/* Swiper Arrows */
.swiper-button-next,
.swiper-button-prev {
  width: 45px!important;
  height: 45px!important;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: bold;
  color: #fff;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #002678;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
  transform: scale(1.1);
}

/* ---------------- Client Section ---------------- */
.client-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #eef3ff 0%, #f9f9f9 100%);
    position: relative;
}

/* Section Title */
.client-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}
.client-section .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}
.client-section .section-title span {
    color: #264794;
}
.client-section .section-title p {
    font-size: 16px;
    color: #555;
}

/* Slick Slider */
.slick_slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}

/* Client Box */
.client-box {
    padding: 20px;
    border-radius: 15px;
    /*background: #fff;*/
    /*box-shadow: 0 6px 18px rgba(0,0,0,0.1);*/
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.client-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Client Images */
.client-box img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.client-box:hover img {
    transform: scale(1.1);
}

/* Slick Arrows */
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 38, 120, 0.8);
    border-radius: 50%;
    z-index: 1;
}
.slick-prev:hover, .slick-next:hover {
    background: #264794;
}
.slick-prev::before, .slick-next::before {
    font-size: 20px;
    color: #fff;
}

/* Responsive Adjustments */
@media(max-width: 992px) {
    .client-box img { max-width: 100px; }
}
@media(max-width: 576px) {
    .client-box img { max-width: 80px; }
}


/* Smooth Gradient Background */
.banner-marquee {
    background: linear-gradient(270deg, #11a35a, #28c76f, #ff6600, #ff914d);
    background-size: 600% 100%;
    overflow: hidden;
    position: relative;
    animation: gradientMove 20s ease infinite;
}

/* Animate Gradient */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Marquee Scroll */
@keyframes scroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.marquee-track {
    display: inline-flex;
}

.marquee-item {
    border-right: 1px solid rgba(255,255,255,0.3);
    padding-right: 30px;
    margin-right: 30px;
    transition: transform 0.3s;
}

.marquee-item:hover {
    transform: scale(1.1);
    color: #fff;
}

/*latest added banner height fixed*/
/* Banner Height & Cover */
#mainBanner {
    max-height: 500px; /* Adjust height as needed */
    overflow: hidden;
    position: relative;
}

.banner-img {
    width: 100%;
    height: 500px; /* Match max-height */
    object-fit: cover; /* Maintain aspect ratio and cover container */
}

/* Marquee */
.banner-marquee {
    background: linear-gradient(270deg, #11a35a, #28c76f, #ff6600, #ff914d);
    background-size: 600% 100%;
    overflow: hidden;
    position: relative;
    animation: gradientMove 20s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes scroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.marquee-track {
    display: inline-flex;
}

.marquee-item {
    border-right: 1px solid rgba(255,255,255,0.3);
    padding-right: 30px;
    margin-right: 30px;
    transition: transform 0.3s;
}

.marquee-item:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-img {
        height: 300px; /* smaller screens */
    }
    .marquee-item {
        font-size: 13px!important;
        padding-right: 15px!important;
        margin-right: 15px!important;
    }
}

.about-heading {
    display: inline-block;           /* Shrink to content width */
    background: linear-gradient(90deg, #ff0000, #ff4d4d); /* Red gradient */
    color: #fff!important;                     /* White text */
    padding: 8px 20px;               /* Top/Bottom and Left/Right padding */
    border-radius: 25px;             /* Rounded pill shape */
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

/* Brand Colors */
.text-green { color: #0b8a33; }
.text-red { color: #d42027; }
.bg-green { background: #0b8a33 !important; color: #fff; }
.bg-red { background: #d42027 !important; color: #fff; }
.border-green { border-color: #0b8a33 !important; }

.about-layout2 {
  background: #fff;
  border-radius: 12px;
}

.section-title h5 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 1.8rem;
  line-height: 1.4;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.feature-item:hover .feature-icon {
  transform: rotate(15deg) scale(1.1);
}

/* Brand Button */
.btn-brand {
  display: inline-block;
  font-weight: bold;
  color: #fff !important;
  border-radius: 30px;
  background: linear-gradient(135deg,#f44336,#f6b156);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-brand:hover {
  background: linear-gradient(45deg, #d42027, #0b8a33);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

    /* Base container style */
.vvm-box {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid transparent;
}

/* Hover effect */
.vvm-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Title */
.vvm-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 15px;
}

/* Text */
.vvm-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Icon wrapper */
.vvm-icon {
  font-size: 42px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

/* Icon hover animation */
.vvm-box:hover .vvm-icon {
  transform: scale(1.2);
}

/* Individual icon and border colors */
.vision-box .vvm-icon {
  color: #4caf50; /* green */
}

.vision-box {
  border-left-color: #4caf50;
}

.mission-box .vvm-icon {
  color: #ff9800; /* orange */
}

.mission-box {
  border-left-color: #ff9800;
}

.values-box .vvm-icon {
  color: #2196f3; /* blue */
}

.values-box {
  border-left-color: #2196f3;
}

/*counter css*/

.counter-card {
  background: #fff;
  border: 2px solid #eee;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.counter-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, #0b8a33, #0b8a33);
  top: -110%;
  left: -110%;
  transform: rotate(45deg);
  opacity: 0.1;
  transition: all 0.5s ease;
}

.counter-card:hover::before {
  top: 0;
  left: 0;
  opacity: 0.2;
}

.counter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: transparent;
}

.counter-value {
  font-size: 2rem;
  font-weight: 700;
  color: #0b8a33;
}

.counter-card:hover .counter-value {
  color: #d42027;
}

.counter-title {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.icon-box img {
  width: 60px;
  height: 60px;
  transition: transform 0.4s ease;
}

.counter-card:hover .icon-box img {
  transform: scale(1.15) rotate(8deg);
}

.icon-red {
   filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(300%) contrast(200%);
}

/*end*/



/*prodcut card*/
.product-card {
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.icon-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff5722, #4caf50);
  padding: 15px;
  transition: transform 0.3s ease;
}

.icon-box img {
  max-width: 50px;
  height: auto;
}

.product-card:hover .icon-box {
  transform: scale(1.15) rotate(5deg);
}

.btn-custom {
  display: inline-block;
  padding: 10px 20px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg,#f44336,#f6b156);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background: #d42027;
  color: #fff;
}

/*<!--end-->*/
/* Background + Animation */
.why-choose-us-section {
  position: relative;
  background: black;
  /*background-image: url('assets/images/bg-image/h3_features_bg_02.jpg');*/
  background-image: url('../images/bg-image/h3_features_bg_02.jpg');

  background-size: cover;
  background-position: center;
  animation: movingBackground 15s linear infinite;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
}

@keyframes movingBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Heading */
.why-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  background:white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  margin-bottom: 40px;
}

/* Image */
.why-image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Boxes */
.why-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 5px solid transparent;
}

.why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Icons */
.why-icon {
  font-size: 34px;
  margin-bottom: 15px;
}

/* Box Titles */
.why-box h5 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

/* Box Descriptions */
.why-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Individual Box Colors */
.why-quality {
  border-left-color: #4caf50;
}

.why-quality .why-icon {
  color: #4caf50;
}

.why-tech {
  border-left-color: #3f51b5;
}

.why-tech .why-icon {
  color: #3f51b5;
}

.why-global {
  border-left-color: #2196f3;
}

.why-global .why-icon {
  color: #2196f3;
}

.why-range {
  border-left-color: #ff9800;
}

.why-range .why-icon {
  color: #ff9800;
}


/*featured cards*/

/* Feature Cards */
.feature-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.feature-card .icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  transition: transform 0.3s;
}
.feature-card .icon-img {
  filter: brightness(0) invert(1);
  width: 30px;
  height: 30px;
}
.feature-card:hover .icon {
  transform: scale(1.2);
}

/* Icon Circle Gradients */
.bg-success-gradient { background: linear-gradient(135deg, #11a35a, #28d47d); }
.bg-orange-gradient { background: linear-gradient(135deg, #ff6600, #ff9b3d); }
.bg-info-gradient { background: linear-gradient(135deg, #17a2b8, #5bc0de); }
.bg-primary-gradient { background: linear-gradient(135deg, #264794, #4d6fe2); }

/* Heading */

/* Right Image Decor */
.decor-shape {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(11,138,51,0.2), rgba(212,32,39,0.2));
  border-radius: 50%;
  z-index: -1;
}

/* Responsive */
@media(max-width: 991px){
  .feature-card { flex-direction: row; }
  .decor-shape { width: 80px; height: 80px; top: -10px; right: -10px; }
}
/*end*/

/*client logo*/
/* Client Logo Styling */
.client-box .client-logo {
    display:flex;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.client-box .client-logo img {
    max-height: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
}
.client-box .client-logo:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}
.client-box .client-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Gradient Border */
.theme-border {
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(135deg, #ff6600, #0b8a33) border-box;
  border: 2px solid transparent;
  border-radius: 12px;
}

/* Progress Bar Styling */
.slider-progress {
    height: 4px;
    background: #eee;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

.progress-bar-inner {
    height: 100%;
    width: 100%;
    background: orange;
    animation: scrollProgress 5s linear infinite;
}

@keyframes scrollProgress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Optional: Responsive spacing */
@media (max-width: 576px) {
    .client-box {
        padding: 0 10px;
    }
}
/*end*/


/*counter_styling*/
.counter-icon-wrap img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.counter-card-neo:hover .counter-icon-wrap img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255,255,255,0.8));
  transform: scale(1.1);
}


.counter-wrapper {
  background: linear-gradient(135deg, #e8ffe8, #fff);
  padding: 60px 0;
}

.counter-card-neo {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0, 128, 0, 0.12);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.counter-card-neo::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 180deg, rgba(0,200,83,0.15), transparent, rgba(255,87,34,0.15), transparent);
  animation: rotateBorder 10s linear infinite;
  z-index: 0;
}

.counter-card-neo > * {
  position: relative;
  z-index: 1;
}

.counter-card-neo:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 128, 0, 0.2);
}

@keyframes rotateBorder {
  100% { transform: rotate(360deg); }
}

.counter-icon-wrap {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff5722, #4caf50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.counter-card-neo:hover .counter-icon-wrap {
  transform: rotate(10deg) scale(1.1);
}

.counter-icon-wrap img {
  width: 40px;
  height: 40px;
}

.counter-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 10px;
}

.counter-number span:last-child {
  color: #ff5722;
  margin-left: 3px;
}

.counter-label {
  font-size: 1rem;
  font-weight: 500;
  color: #444;
}
    /* Feature Card Hover */
.feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all 0.4s ease-in-out;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Icon Styling */
.icon {
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
}
.feature-card:hover .icon {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Icon Image (white filter effect) */
.icon-img {
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.feature-card:hover .icon-img {
  transform: scale(1.15);
}

/* Decorative Shape (animated pulse) */
.decor-shape {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.15);
  animation: pulse 3s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0.4; }
  100% { transform: scale(1); opacity: 0.8; }
}

/*end*/