/*------------------------------------------------------------------
[Master Stylesheet]

- MAIN CSS
- FONTS
- PLUGIN CSS

Author:     Andrey Sokoltsov
Profile:    http://themeforest.net/user/andreysokoltsov
-------------------------------------------------------------------*/

/* MAIN CSS */
@import url("bootstrap.min.css");
@import url("skin-bootstrap.css");
@import url("font-awesome.min.css");
@import url("theme.css");
@import url("responsive.css");
@import url("animate.css");
@import url("color.css");

/* FONTS */
/* @import url(//fonts.googleapis.com/css?family=Roboto:400,700,300,900,700italic,400italic,500,500italic,300italic);
@import url(//fonts.googleapis.com/css?family=Montserrat:400,700); */
@import url("../fonts/flaticon/flaticon.css");

.count-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px 20px;
  background-color: #ffffff;
}


.pump-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.pump-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 350px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.pump-card:hover {
  transform: translateY(-5px);
}

.pump-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #333;
}

.card-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  text-align: center;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.tag-list span {
  background-color: #f0f0f0;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.learn-more {
  text-align: center;
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto;
}

.learn-more:hover {
  text-decoration: underline;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.tag-list a {
  background-color: #f0f0f0;
  padding: 6px 6px;
  font-size: 12px;
  border-radius: 5px;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s, color 0.2s;
  font-weight: 600;
}

.tag-list a:hover {
  background-color: #007BFF;
  color: #fff;
}



.sticky1-container1 {
            padding: 0px;
            margin: 0px;
            position: fixed;
            right: -115px;
            top: 381px;
            width: 210px;
            z-index: 1100;
            list-style-type: none;
        }

        
        video {
            max-width: 100%;
            height: auto;
        }

.flip-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

/* Card Styles */
.flip-card {
  background-color: transparent;
  width: 250px;
  height: 180px;
  perspective: 1000px;
  flex: 1 1 250px;
  max-width: 250px;
}

/* Inner Flip Animation */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front & Back Styling */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 1px solid #eee;
  border-bottom: 3px solid #76b900;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
}

.flip-card-front img {
  width: 100%;
  margin-bottom: 10px;
}

.flip-card-front h2 {
  font-size: 24px;
  color: #222;
}

.flip-card-front h2 span {
  display: block;
  font-size: 14px;
  font-weight: normal;
  color: #444;
}

.flip-card-back {
  transform: rotateY(180deg);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  color: #333;
}

/* 👇 Mobile Responsive Fix */
@media screen and (max-width: 600px) {
  .flip-card {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
  }
}
