/* --- Theme 1-------------*/
#vs-counter-theme-1 .counter {
  color: #444;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

#vs-counter-theme-1 .counter .counter-value {
  color: #fff;
  font-size: 33px;
  font-weight: 600;
  line-height: 128px;
  height: 140px;
  width: 140px;
  margin: 0 auto 10px;
  border-radius: 50% 0 50% 50%;
  border: 7px solid #FF2B08;
  border-right-color: transparent;
  display: block;
  position: relative;
  z-index: 1;
}

#vs-counter-theme-1 .counter .counter-value:before {
  content: '';
  background: linear-gradient(to right bottom, #FF2B08, #FE9C04);
  border-radius: 50%;
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  right: 6px;
  z-index: -1;
}

#vs-counter-theme-1 .counter h3 {
  color: #555;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
}

#vs-counter-theme-1 .counter.purple .counter-value {
  border-color: #6101E5;
  border-right-color: transparent;
}

#vs-counter-theme-1 .counter.purple .counter-value:before {
  background: linear-gradient(to right bottom, #6101E5, #9F27E8);
}

#vs-counter-theme-1 .counter.blue .counter-value {
  border-color: #0284F3;
  border-right-color: transparent;
}

#vs-counter-theme-1 .counter.blue .counter-value:before {
  background: linear-gradient(to right bottom, #0284F3, #1DC0E1);
}

#vs-counter-theme-1 .counter.pink .counter-value {
  border-color: #435CF8;
  border-right-color: transparent;
}

#vs-counter-theme-1 .counter.pink .counter-value:before {
  background: linear-gradient(to right bottom, #435CF8, #FF4674);
}

@media screen and (max-width: 990px) {
  #vs-counter-theme-1 .counter {
    margin-bottom: 40px;
  }
}

/*----counter 2-------------*/
#vs-counter-theme-2 .counter {
  color: #FE8105;
  background: linear-gradient(to right, #FE8105, #FE9F1E);
  font-family: 'Poppins', sans-serif;
  text-align: center;
  width: 200px;
  padding: 45px 10px 0;
  margin: 0 auto;
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0 100%, 0 25%);
}

#vs-counter-theme-2 .counter:before {
  content: "";
  background: #fff;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  position: absolute;
  top: 15px;
  left: 50%;
  z-index: -1;
  clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0 100%, 0 25%);
}

#vs-counter-theme-2 .counter .counter-icon {
  font-size: 37px;
  line-height: 37px;
  margin: 0 0 15px;
}

#vs-counter-theme-2 .counter h3 {
  font-size: 19px;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0 0 20px;
}

#vs-counter-theme-2 .counter .counter-value {
  background: linear-gradient(to right, #FE8105, #FE9F1E);
  font-size: 28px;
  font-weight: 400;
  line-height: 91px;
  width: 140px;
  height: 70px;
  margin: 0 auto;
  border-radius: 500px 500px 0 0;
  display: block;
  position: relative;
  z-index: 1;
}

#vs-counter-theme-2 .counter .counter-value:before {
  content: "";
  background: #fff;
  border-radius: inherit;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 12px;
  bottom: 0;
  left: 12px;
  right: 12px;
  z-index: -1;
}

#vs-counter-theme-2 .counter.green,
#vs-counter-theme-2 .counter.green .counter-value {
  color: #209A1E;
  background: linear-gradient(to right, #209A1E, #12AE00);
}

#vs-counter-theme-2 .counter.red,
#vs-counter-theme-2 .counter.red .counter-value {
  color: #D73123;
  background: linear-gradient(to right, #D73123, #FF540E);
}

#vs-counter-theme-2 .counter.blue,
#vs-counter-theme-2 .counter.blue .counter-value {
  color: #118FCF;
  background: linear-gradient(to right, #118FCF, #009FFD);
}

@media screen and (max-width: 990px) {
  #vs-counter-theme-2 .counter {
    margin-bottom: 40px;
  }
}
/*----counter 3-------*/
#vs-counter-theme-3 .counter {
    color: #FFA50A;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    width: 210px;
    height: 210px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

#vs-counter-theme-3 .counter::before {
    content: "";
    background: #FFA50A;
    width: 88%;
    height: 88%;
    border-radius: 20px 50px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    transition: all 0.3s ease;
}

#vs-counter-theme-3 .counter .counter-icon {
    color: #fff;
    font-size: 28px;
    line-height: 1;
    position: absolute;
    bottom: 10px;
    right: 15px;
    z-index: 2;
}

#vs-counter-theme-3 .counter .counter-content {
    background-color: #fff;
    height: 92%;
    width: 92%;
    padding: 50px 15px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#vs-counter-theme-3 .counter h3 {
    color: #777;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 5px;
}

#vs-counter-theme-3 .counter .counter-value {
    font-size: 33px;
    font-weight: 600;
    display: block;
    line-height: 1.2;
}

/* Color Variations */
#vs-counter-theme-3 .counter.blue { 
    color: #1abcb1; 
}
#vs-counter-theme-3 .counter.blue::before { 
    background: #1abcb1; 
}

#vs-counter-theme-3 .counter.green { 
    color: #13af13; 
}
#vs-counter-theme-3 .counter.green::before { 
    background: #13af13; 
}

#vs-counter-theme-3 .counter.purple { 
    color: #5E0D99; 
}
#vs-counter-theme-3 .counter.purple::before { 
    background: #5E0D99; 
}

/* Responsive Design */
@media screen and (max-width: 990px) {
    #vs-counter-theme-3 .counter { 
        margin-bottom: 40px; 
    }
}

@media screen and (max-width: 576px) {
    #vs-counter-theme-3 .counter {
        width: 180px;
        height: 180px;
    }
    #vs-counter-theme-3 .counter .counter-content {
        padding: 40px 15px;
    }
    #vs-counter-theme-3 .counter h3 {
        font-size: 18px;
    }
    #vs-counter-theme-3 .counter .counter-value {
        font-size: 28px;
    }
    #vs-counter-theme-3 .counter .counter-icon {
        font-size: 24px;
    }
}

/*-------counter 4----*/
#vs-counter-theme-4 .counter {
    --primary-color: #2793D3;
    --secondary-color: #5ED3DA;
    --text-color: #888;
    --bg-color: linear-gradient(to right, #f5f5f5, #fff);
    --border-color: #fff;
    --shadow-color: rgba(0, 0, 0, 0.2);
    
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    height: 240px;
    width: 210px;
    padding: 70px 20px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    transition: all 0.4s ease;
}

#vs-counter-theme-4 .counter:hover {
    transform: translateY(-5px);
}

#vs-counter-theme-4 .counter::before {
    content: '';
    background: var(--bg-color);
    border-radius: 7px;
    border: 3px solid var(--border-color);
    box-shadow: 0 0 8px var(--shadow-color);
    transform: rotate(45deg);
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 45px;
    top: 45px;
    z-index: -1;
    transition: all 0.3s ease;
}

#vs-counter-theme-4 .counter .counter-value {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    display: block;
    margin: 0 0 9px;
    position: relative;
}

#vs-counter-theme-4 .counter .counter-value::before,
#vs-counter-theme-4 .counter .counter-value::after {
    content: '';
    background: linear-gradient(to right bottom, var(--secondary-color), var(--primary-color), var(--secondary-color));
    height: 80px;
    width: 80px;
    border-radius: 10px;
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    left: 50%;
    top: 15px;
    z-index: -2;
    opacity: 0.9;
    transition: all 0.4s ease;
}

#vs-counter-theme-4 .counter .counter-value::after {
    top: auto;
    bottom: 15px;
}

#vs-counter-theme-4 .counter h3 {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0 0 15px;
    line-height: 1.4;
}

#vs-counter-theme-4 .counter .counter-icon {
    font-size: 30px;
    line-height: 1;
    margin: 0 0 25px;
    display: inline-block;
}

/* Color Variations */
#vs-counter-theme-4 .counter.magenta { 
    --primary-color: #B20005;
    --secondary-color: #F00374;
}

#vs-counter-theme-4 .counter.purple { 
    --primary-color: #8264CC;
    --secondary-color: #A978BA;
}

#vs-counter-theme-4 .counter.blue { 
    --primary-color: #183A8C;
    --secondary-color: #2873E8;
}

/* Responsive Design */
@media screen and (max-width: 990px) {
    #vs-counter-theme-4 .counter { 
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 576px) {
    #vs-counter-theme-4 .counter {
        height: 200px;
        width: 180px;
        padding: 50px 15px;
    }
    
    #vs-counter-theme-4 .counter::before {
        left: 25px;
        right: 25px;
        bottom: 35px;
        top: 35px;
    }
    
    #vs-counter-theme-4 .counter .counter-value {
        font-size: 24px;
    }
    
    #vs-counter-theme-4 .counter .counter-value::before,
    #vs-counter-theme-4 .counter .counter-value::after {
        height: 65px;
        width: 65px;
    }
    
    #vs-counter-theme-4 .counter h3 {
        font-size: 14px;
    }
    
    #vs-counter-theme-4 .counter .counter-icon {
        font-size: 26px;
        margin-bottom: 20px;
    }
}

/*-------counter 5----*/
#vs-counter-theme-5 .counter {
    --primary-color: #2778ee;
    --secondary-color: #19bbd2;
    --title-color: #2778ee;
    --bg-color: #fff;
    --shadow-color: rgba(0, 0, 0, 0.15);
    --corner-size: 30px;
    
    background: var(--bg-color);
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    width: 210px;
    padding: 0 0 25px;
    margin: 0 auto 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--shadow-color);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#vs-counter-theme-5 .counter:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#vs-counter-theme-5 .counter::before {
    content: "";
    background: var(--bg-color);
    width: var(--corner-size);
    height: var(--corner-size);
    border-radius: 5px 0;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.07);
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    bottom: -15px;
    left: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

#vs-counter-theme-5 .counter .counter-value {
    color: #fff;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    font-size: 38px;
    font-weight: 300;
    padding: 15px 0;
    margin: 0 0 25px;
    border-radius: 10px 10px 0 0;
    display: block;
    position: relative;
    overflow: hidden;
}

#vs-counter-theme-5 .counter .counter-value::after {
    content: "";
    background: rgba(255, 255, 255, 0.2);
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: skewX(-20deg) translateX(-150%);
    transition: transform 0.6s ease;
}

#vs-counter-theme-5 .counter:hover .counter-value::after {
    transform: skewX(-20deg) translateX(250%);
}

#vs-counter-theme-5 .counter h3 {
    color: var(--title-color);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    margin: 0 0 25px;
    padding: 0 15px;
    transition: color 0.3s ease;
}

#vs-counter-theme-5 .counter .counter-icon {
    color: #fff;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    font-size: 40px;
    line-height: 65px;
    width: 65px;
    height: 65px;
    margin: 0 auto;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Color Variations */
#vs-counter-theme-5 .counter.purple {
    --primary-color: #c452ef;
    --secondary-color: #8f70e7;
    --title-color: #c452ef;
}

#vs-counter-theme-5 .counter.magenta {
    --primary-color: #ae379b;
    --secondary-color: #e84a94;
    --title-color: #ae379b;
}

#vs-counter-theme-5 .counter.yellow {
    --primary-color: #e69814;
    --secondary-color: #fecb4b;
    --title-color: #e69814;
}

/* Responsive Design */
@media screen and (max-width: 990px) {
    #vs-counter-theme-5 .counter { 
        margin-bottom: 45px;
    }
}

@media screen and (max-width: 576px) {
    #vs-counter-theme-5 .counter {
        width: 180px;
        padding-bottom: 20px;
    }
    
    #vs-counter-theme-5 .counter .counter-value {
        font-size: 32px;
        margin-bottom: 20px;
        padding: 12px 0;
    }
    
    #vs-counter-theme-5 .counter h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    #vs-counter-theme-5 .counter .counter-icon {
        width: 55px;
        height: 55px;
        font-size: 35px;
        line-height: 55px;
    }
    
    #vs-counter-theme-5 .counter::before {
        width: 25px;
        height: 25px;
    }
}
/*-------counter 6----*/
#vs-counter-theme-6 .counter {
    --primary-gradient: linear-gradient(to right bottom, #A75BF9, #4566CA);
    --secondary-color: #fff;
    --text-color: #444;
    --hex-clip: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    --size: 210px;
    
    background: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    width: var(--size);
    height: 220px;
    padding: 72px 42px;
    margin: 0 auto;
    position: relative;
    clip-path: var(--hex-clip);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#vs-counter-theme-6 .counter:hover {
    transform: translateY(-5px) scale(1.02);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

#vs-counter-theme-6 .counter::before,
#vs-counter-theme-6 .counter::after {
    content: "";
    background: var(--primary-gradient);
    position: absolute;
    bottom: 10px;
    left: 10px;
    top: 10px;
    right: 10px;
    clip-path: var(--hex-clip);
    z-index: -1;
    transition: inherit;
}

#vs-counter-theme-6 .counter::after {
    background: var(--secondary-color);
    bottom: 40px;
    left: 25px;
    top: 40px;
    right: 25px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

#vs-counter-theme-6 .counter .counter-value {
    color: var(--text-color);
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 7px;
    display: block;
    position: relative;
    z-index: 1;
}

#vs-counter-theme-6 .counter h3 {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 25px;
    position: relative;
    z-index: 1;
}

/* Color Variations */
#vs-counter-theme-6 .counter.red {
    --primary-gradient: linear-gradient(to right bottom, #FFC06B, #FC3343);
}

#vs-counter-theme-6 .counter.pink {
    --primary-gradient: linear-gradient(to right bottom, #2E94F8, #E3144C);
}

#vs-counter-theme-6 .counter.blue {
    --primary-gradient: linear-gradient(to right bottom, #FDC16D, #44CEDD);
}

/* Responsive Design */
@media screen and (max-width: 990px) {
    #vs-counter-theme-6 .counter {
        margin-bottom: 45px;
    }
}

@media screen and (max-width: 576px) {
    #vs-counter-theme-6 .counter {
        --size: 180px;
        height: 190px;
        padding: 60px 30px;
    }
    
    #vs-counter-theme-6 .counter::after {
        bottom: 35px;
        left: 20px;
        top: 35px;
        right: 20px;
    }
    
    #vs-counter-theme-6 .counter .counter-value {
        font-size: 26px;
    }
    
    #vs-counter-theme-6 .counter h3 {
        font-size: 14px;
        margin-bottom: 20px;
    }
}
/*-------counter 7----*/
#vs-counter-theme-7 .counter {
    --primary-color: #A911A4;
    --shadow-color: #EDD7AC;
    --text-color: #444;
    --icon-size: 100px;
    --shadow-offset: 10px;
    
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    transition: all 0.4s ease;
}

#vs-counter-theme-7 .counter:hover {
    transform: translateY(-5px);
}

#vs-counter-theme-7 .counter .counter-icon {
    color: #fff;
    background-color: var(--primary-color);
    font-size: 40px;
    line-height: 70px;
    width: var(--icon-size);
    height: var(--icon-size);
    margin: 0 auto 45px;
    border-radius: 50%;
    position: relative;
    box-shadow: 
        0 var(--shadow-offset) var(--shadow-color),
        0 calc(var(--shadow-offset) * 2) var(--shadow-color),
        0 calc(var(--shadow-offset) * 3) var(--shadow-color);
    transition: all 0.3s ease;
}

#vs-counter-theme-7 .counter:hover .counter-icon {
    transform: translateY(-5px);
    box-shadow: 
        0 calc(var(--shadow-offset) + 5px) var(--shadow-color),
        0 calc(var(--shadow-offset) * 2 + 5px) var(--shadow-color),
        0 calc(var(--shadow-offset) * 3 + 5px) var(--shadow-color);
}

#vs-counter-theme-7 .counter .counter-icon i {
    transform: rotateZ(-25deg) skew(20deg);
    display: inline-block;
    transition: transform 0.3s ease;
}

#vs-counter-theme-7 .counter:hover .counter-icon i {
    transform: rotateZ(-15deg) skew(10deg);
}

#vs-counter-theme-7 .counter .counter-value {
    color: var(--primary-color);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 10px;
    display: block;
    transition: color 0.3s ease;
}

#vs-counter-theme-7 .counter h3 {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    padding: 0 10px;
    line-height: 1.4;
}

/* Color Variations */
#vs-counter-theme-7 .counter.yellow {
    --primary-color: #e88700;
}

#vs-counter-theme-7 .counter.red {
    --primary-color: #F94552;
}

#vs-counter-theme-7 .counter.blue {
    --primary-color: #00AEC3;
}

/* Responsive Design */
@media screen and (max-width: 990px) {
    #vs-counter-theme-7 .counter {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 576px) {
    #vs-counter-theme-7 .counter {
        padding: 20px 15px;
    }
    
    #vs-counter-theme-7 .counter .counter-icon {
        --icon-size: 80px;
        font-size: 32px;
        line-height: 80px;
        margin-bottom: 30px;
        --shadow-offset: 8px;
    }
    
    #vs-counter-theme-7 .counter .counter-value {
        font-size: 26px;
    }
    
    #vs-counter-theme-7 .counter h3 {
        font-size: 13px;
    }
}

/*-------counter 8----*/
#vs-counter-theme-8 .counter {
    --primary-color: #0DB646;
    --text-color: #fff;
    --border-width: 25px;
    --corner-radius: 20px;
    
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 30px 30px 60px;
    border-top: var(--border-width) solid var(--primary-color);
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2) inset;
    border-radius: var(--corner-radius) var(--corner-radius) 0 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

#vs-counter-theme-8 .counter:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.2), 
                0 5px 5px -3px rgba(0, 0, 0, 0.2) inset;
}

#vs-counter-theme-8 .counter::before {
    content: '';
    background-color: var(--primary-color);
    height: 100%;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2) inset;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 0;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
    transition: inherit;
}

#vs-counter-theme-8 .counter .counter-icon {
    color: var(--text-color);
    font-size: 40px;
    line-height: 1;
    margin: 0 0 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

#vs-counter-theme-8 .counter:hover .counter-icon {
    transform: scale(1.1) translateY(-5px);
}

#vs-counter-theme-8 .counter .counter-value {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 15px;
    display: block;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

#vs-counter-theme-8 .counter h3 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    margin: 0;
    padding: 0 10px;
    line-height: 1.4;
}

/* Color Variations */
#vs-counter-theme-8 .counter.magenta {
    --primary-color: #B0112D;
}

#vs-counter-theme-8 .counter.yellow {
    --primary-color: #f49c04;
}

#vs-counter-theme-8 .counter.purple {
    --primary-color: #A00DB1;
}

/* Responsive Design */
@media screen and (max-width: 990px) {
    #vs-counter-theme-8 .counter {
        width: 220px;
        margin: 0 auto 40px;
        padding: 25px 25px 50px;
    }
}

@media screen and (max-width: 576px) {
    #vs-counter-theme-8 .counter {
        --border-width: 20px;
        --corner-radius: 15px;
        
        width: 200px;
        padding: 20px 20px 45px;
    }
    
    #vs-counter-theme-8 .counter::before {
        left: 15px;
        right: 15px;
    }
    
    #vs-counter-theme-8 .counter .counter-icon {
        font-size: 35px;
        margin-bottom: 15px;
    }
    
    #vs-counter-theme-8 .counter .counter-value {
        font-size: 28px;
    }
    
    #vs-counter-theme-8 .counter h3 {
        font-size: 14px;
    }
}
/*-------counter 9----*/
#vs-counter-theme-9 .counter {
    --primary-color: #6C4DF6;
    --secondary-color: #FFD166;
    --text-color: #333;
    --bg-color: #fff;
    
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
    width: 220px;
    padding: 30px 20px;
    margin: 0 auto;
    background: var(--bg-color);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

#vs-counter-theme-9 .counter::before {
    content: '';
    background: var(--primary-color);
    height: 5px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.4s ease;
}

#vs-counter-theme-9 .counter:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

#vs-counter-theme-9 .counter:hover::before {
    height: 8px;
}

#vs-counter-theme-9 .counter-icon {
    color: var(--primary-color);
    font-size: 42px;
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

#vs-counter-theme-9 .counter:hover .counter-icon {
    transform: rotate(15deg) scale(1.1);
}

#vs-counter-theme-9 .counter-value {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    display: block;
    position: relative;
}

#vs-counter-theme-9 .counter-value::after {
    content: '';
    background: var(--secondary-color);
    width: 50px;
    height: 3px;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

#vs-counter-theme-9 .counter h3 {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0 0;
    padding: 0 10px;
}

/* Color Variations */
#vs-counter-theme-9 .counter.blue {
    --primary-color: #3A86FF;
    --secondary-color: #8338EC;
}

#vs-counter-theme-9 .counter.green {
    --primary-color: #06D6A0;
    --secondary-color: #118AB2;
}

#vs-counter-theme-9 .counter.red {
    --primary-color: #EF476F;
    --secondary-color: #FFD166;
}

/* Responsive Design */
@media screen and (max-width: 990px) {
    #vs-counter-theme-9 .counter {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 576px) {
    #vs-counter-theme-9 .counter {
        width: 200px;
        padding: 25px 15px;
    }
    
    #vs-counter-theme-9 .counter-icon {
        font-size: 38px;
    }
    
    #vs-counter-theme-9 .counter-value {
        font-size: 32px;
    }
    
    #vs-counter-theme-9 .counter h3 {
        font-size: 14px;
    }
}
/*-------counter 10----*/
#vs-counter-theme-10 .counter {
    --primary-color: #f83600;
    --secondary-color: #fe8c00;
    --text-color: #fff;
    --bg-color: linear-gradient(to right, #eff0f2, #fefefe);
    
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    width: 210px;
    min-height: 246px;
    padding: 25px 0 0;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

#vs-counter-theme-10 .counter:hover {
    transform: translateY(-8px);
}

#vs-counter-theme-10 .counter::after {
    content: '';
    background: var(--bg-color);
    height: 152px;
    width: 152px;
    border-radius: 15px;
    border: 3px solid #fff;
    box-shadow: 5px 0 8px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    top: 25px;
    left: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

#vs-counter-theme-10 .counter:hover::after {
    transform: translateX(-50%) rotate(50deg);
    box-shadow: 8px 0 12px rgba(0, 0, 0, 0.25);
}

#vs-counter-theme-10 .counter .counter-value {
    background: var(--secondary-color);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    width: 100%;
    padding: 12px 0 8px;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6), 0 0 0 2px #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: all 0.3s ease;
}

#vs-counter-theme-10 .counter:hover .counter-value {
    padding: 15px 0 10px;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.7), 0 0 0 3px #fff;
}

#vs-counter-theme-10 .counter .counter-icon {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    font-size: 30px;
    line-height: 60px;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

#vs-counter-theme-10 .counter:hover .counter-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.5);
}

#vs-counter-theme-10 .counter h3 {
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.4;
    padding: 0 30px;
    margin: 0 0 15px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Color Variations */
#vs-counter-theme-10 .counter.green {
    --primary-color: #019b01;
    --secondary-color: #01c700;
}

#vs-counter-theme-10 .counter.blue {
    --primary-color: #0057c5;
    --secondary-color: #28a9e2;
}

#vs-counter-theme-10 .counter.gray {
    --primary-color: #0d0e10;
    --secondary-color: #36474f;
}

/* Responsive Design */
@media screen and (max-width: 990px) {
    #vs-counter-theme-10 .counter {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 576px) {
    #vs-counter-theme-10 .counter {
        width: 180px;
        min-height: 220px;
    }
    
    #vs-counter-theme-10 .counter::after {
        height: 130px;
        width: 130px;
    }
    
    #vs-counter-theme-10 .counter .counter-value {
        font-size: 22px;
        padding: 10px 0 6px;
    }
    
    #vs-counter-theme-10 .counter .counter-icon {
        width: 50px;
        height: 50px;
        font-size: 25px;
        line-height: 50px;
    }
    
    #vs-counter-theme-10 .counter h3 {
        font-size: 15px;
        padding: 0 20px;
    }
}
/*-------counter 11----*/
#vs-counter-theme-11 .counter {
    --primary-color: #1C6E87;
    --text-color: #1C6E87;
    --bg-color: #fff;
    
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 0 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#vs-counter-theme-11 .counter:hover {
    transform: translateY(-8px);
}

#vs-counter-theme-11 .counter .counter-icon {
    color: var(--primary-color);
    font-size: 45px;
    line-height: 80px;
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--bg-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

#vs-counter-theme-11 .counter:hover .counter-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#vs-counter-theme-11 .counter .counter-content {
    background-color: var(--bg-color);
    padding: 15px 15px 15px;
    border: 10px solid var(--primary-color);
    border-left: none;
    border-right: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

#vs-counter-theme-11 .counter:hover .counter-content {
    border-width: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#vs-counter-theme-11 .counter .counter-value {
    color: #fff;
    background: var(--primary-color);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 8px 6px 5px;
    margin: 0 -35px 15px;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

#vs-counter-theme-11 .counter:hover .counter-value {
    padding: 10px 6px 7px;
    letter-spacing: 3px;
}

#vs-counter-theme-11 .counter h3 {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin: 0;
    padding: 0 10px;
    transition: all 0.3s ease;
}

#vs-counter-theme-11 .counter:hover h3 {
    letter-spacing: 1px;
}

/* Color Variations */
#vs-counter-theme-11 .counter.green {
    --primary-color: #3FA599;
    --text-color: #3FA599;
}

#vs-counter-theme-11 .counter.yellow {
    --primary-color: #ed7e2a;
    --text-color: #ed7e2a;
}

#vs-counter-theme-11 .counter.red {
    --primary-color: #DE5644;
    --text-color: #DE5644;
}

/* Responsive Design */
@media screen and (max-width: 990px) {
    #vs-counter-theme-11 .counter {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 576px) {
    #vs-counter-theme-11 .counter {
        padding: 0 15px;
    }
    
    #vs-counter-theme-11 .counter .counter-icon {
        width: 70px;
        height: 70px;
        font-size: 38px;
        line-height: 70px;
    }
    
    #vs-counter-theme-11 .counter .counter-content {
        padding: 12px 12px 12px;
        border-width: 8px;
    }
    
    #vs-counter-theme-11 .counter .counter-value {
        font-size: 24px;
        margin: 0 -25px 12px;
        padding: 6px 6px 3px;
    }
    
    #vs-counter-theme-11 .counter h3 {
        font-size: 15px;
    }
}
/*-------counter 12----*/
#vs-counter-theme-12 .counter {
    --primary-color: #39AE82;
    --text-color: #555;
    --icon-color: #fff;
    --border-width: 3px;
    
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 0 20px 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#vs-counter-theme-12 .counter:hover {
    transform: translateY(-5px);
}

#vs-counter-theme-12 .counter::before {
    content: '';
    border: var(--border-width) solid var(--primary-color);
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 30px;
    bottom: 0;
    right: 0;
    z-index: -1;
    clip-path: polygon(0 0, 50% 0, 50% 50%, 100% 50%, 100% 100%, 0 100%);
    transition: all 0.3s ease;
}

#vs-counter-theme-12 .counter:hover::before {
    border-width: calc(var(--border-width) + 1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#vs-counter-theme-12 .counter .counter-icon {
    color: var(--icon-color);
    background-color: var(--primary-color);
    font-size: 33px;
    line-height: 65px;
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 2px solid var(--icon-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

#vs-counter-theme-12 .counter:hover .counter-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#vs-counter-theme-12 .counter .counter-value {
    color: var(--primary-color);
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 8px;
    display: block;
    transition: all 0.3s ease;
}

#vs-counter-theme-12 .counter:hover .counter-value {
    letter-spacing: 1px;
}

#vs-counter-theme-12 .counter h3 {
    color: var(--text-color);
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0 15px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

/* Color Variations */
#vs-counter-theme-12 .counter.green {
    --primary-color: #4AB912;
}

#vs-counter-theme-12 .counter.blue {
    --primary-color: #2F4F91;
}

#vs-counter-theme-12 .counter.red {
    --primary-color: #e01123;
}

/* Responsive Design */
@media screen and (max-width: 990px) {
    #vs-counter-theme-12 .counter {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 576px) {
    #vs-counter-theme-12 .counter {
        padding: 0 15px 20px;
    }
    
    #vs-counter-theme-12 .counter::before {
        top: 25px;
    }
    
    #vs-counter-theme-12 .counter .counter-icon {
        width: 55px;
        height: 55px;
        font-size: 28px;
        line-height: 55px;
        margin-bottom: 12px;
    }
    
    #vs-counter-theme-12 .counter .counter-value {
        font-size: 32px;
    }
    
    #vs-counter-theme-12 .counter h3 {
        font-size: 15px;
    }
}
/*-------counter 13----*/
#vs-counter-theme-13 .counter {
    --primary-color: #c60505;
    --secondary-color: #510101;
    --highlight-color: #780304;
    --text-color: #fff;
    --value-size: 130px;
    --border-width: 8px;
    
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    width: 210px;
    margin: 0 auto;
    perspective: 1000px;
    transition: all 0.4s ease;
}

#vs-counter-theme-13 .counter:hover {
    transform: translateY(-8px);
}

#vs-counter-theme-13 .counter .counter-value {
    font-size: 32px;
    font-weight: 700;
    line-height: var(--value-size);
    width: var(--value-size);
    height: var(--value-size);
    margin: 0 auto 25px;
    border: var(--border-width) solid var(--primary-color);
    border-radius: 50%;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#vs-counter-theme-13 .counter:hover .counter-value {
    transform: rotateY(20deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#vs-counter-theme-13 .counter .counter-value::before,
#vs-counter-theme-13 .counter .counter-value::after {
    content: "";
    background: linear-gradient(to top left, var(--primary-color), var(--secondary-color));
    width: 85%;
    height: 85%;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transition: inherit;
}

#vs-counter-theme-13 .counter .counter-value::after {
    transform: translateX(-50%) translateY(-50%) rotate(180deg);
    width: 75%;
    height: 75%;
    opacity: 0.8;
}

#vs-counter-theme-13 .counter:hover .counter-value::before {
    transform: translateX(-50%) translateY(-50%) rotate(10deg);
}

#vs-counter-theme-13 .counter:hover .counter-value::after {
    transform: translateX(-50%) translateY(-50%) rotate(190deg);
}

#vs-counter-theme-13 .counter .counter-content {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 35px 10px 25px;
    border-radius: 0 0 50px 50px;
    position: relative;
    transition: inherit;
}

#vs-counter-theme-13 .counter:hover .counter-content {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#vs-counter-theme-13 .counter .counter-content::before {
    content: "";
    background: var(--highlight-color);
    width: 100%;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    top: -15px;
    left: 0;
    transition: inherit;
}

#vs-counter-theme-13 .counter .counter-icon {
    font-size: 42px;
    line-height: 1;
    margin: 0 0 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

#vs-counter-theme-13 .counter:hover .counter-icon {
    transform: scale(1.1) rotate(-10deg);
}

#vs-counter-theme-13 .counter h3 {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0 15px;
    line-height: 1.4;
    transition: inherit;
}

/* Color Variations */
#vs-counter-theme-13 .counter.orange {
    --primary-color: #f75700;
    --secondary-color: #ec3305;
    --highlight-color: #ec3305;
}

#vs-counter-theme-13 .counter.green {
    --primary-color: #b7d952;
    --secondary-color: #429a13;
    --highlight-color: #429a13;
}

#vs-counter-theme-13 .counter.blue {
    --primary-color: #3dd9f2;
    --secondary-color: #0d70ce;
    --highlight-color: #0d70ce;
}

/* Responsive Design */
@media screen and (max-width: 990px) {
    #vs-counter-theme-13 .counter {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 576px) {
    #vs-counter-theme-13 .counter {
        width: 180px;
    }
    
    #vs-counter-theme-13 .counter .counter-value {
        --value-size: 110px;
        --border-width: 6px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    #vs-counter-theme-13 .counter .counter-content {
        padding: 30px 10px 20px;
    }
    
    #vs-counter-theme-13 .counter .counter-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    #vs-counter-theme-13 .counter h3 {
        font-size: 14px;
    }
}
/*-------counter 14----*/
#vs-counter-theme-14 .counter {
  /* -- Default Color Variables (Green Theme) -- */
  --counter-text-color: #54840c;
  --counter-gradient-start: #54840c;
  --counter-gradient-end: #b9eb72;
  --counter-title-color: #fff;
  --pseudo-bg-color: #fff;
  --pseudo-shadow-color: rgba(0, 0, 0, 0.4);
  --pseudo-shadow-hover-color: rgba(0, 0, 0, 0.5); /* Slightly darker shadow on hover */

  color: var(--counter-text-color);
  background: linear-gradient(to top left, var(--counter-gradient-start), var(--counter-gradient-end));
  font-family: 'Poppins', sans-serif;
  text-align: center;
  width: 200px;
  height: 200px;
  padding: 26px 35px 30px;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  /* -- Added Transition -- */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* -- Hover Effect: Scale, Lift, Shadow -- */
#vs-counter-theme-14 .counter:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#vs-counter-theme-14 .counter:before,
#vs-counter-theme-14 .counter:after {
  content: "";
  background: var(--pseudo-bg-color);
  width: 95px;
  height: 95px;
  /* Leaf / Teardrop shape */
  border-radius: 0 100% 0 100% / 0 100% 0 100%;
  box-shadow: inset 3px 3px 5px var(--pseudo-shadow-color);
  transform: translateX(-50%) rotate(-45deg);
  position: absolute;
  top: -5px;
  left: 50%;
  z-index: -1;
  /* -- Added Transition for shadow change -- */
  transition: box-shadow 0.3s ease;
}

#vs-counter-theme-14 .counter:after {
  top: auto;
  bottom: -5px;
}

/* -- Hover Effect: Deeper shadow on pseudo-elements -- */
#vs-counter-theme-14 .counter:hover:before,
#vs-counter-theme-14 .counter:hover:after {
    box-shadow: inset 4px 4px 7px var(--pseudo-shadow-hover-color);
}

#vs-counter-theme-14 .counter .counter-icon {
  font-size: 32px;
  line-height: 32px;
  margin: 0 auto 23px;
  /* Inherits color from .counter */
}

#vs-counter-theme-14 .counter h3 {
  color: var(--counter-title-color); /* Use variable */
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 22px 0;
}

#vs-counter-theme-14 .counter .counter-value {
  font-size: 27px;
  font-weight: 600;
   /* Inherits color from .counter */
}

/* -- Color Variations using CSS Variables -- */
/* Note: Title color and pseudo-element colors are kept consistent unless overridden here */
#vs-counter-theme-14 .counter.blue {
  --counter-text-color: #026793;
  --counter-gradient-start: #026793;
  --counter-gradient-end: #54bfee;
}

#vs-counter-theme-14 .counter.gray {
  --counter-text-color: #1b282e;
  --counter-gradient-start: #1b282e;
  --counter-gradient-end: #688799;
}

#vs-counter-theme-14 .counter.magenta {
  --counter-text-color: #ba2f8d;
  --counter-gradient-start: #ba2f8d;
  --counter-gradient-end: #d4529c;
}

/* -- Responsive Design -- */
@media screen and (max-width: 990px) {
  #vs-counter-theme-14 .counter {
    margin-bottom: 40px;
  }
}
/*-------counter 15----*/
#vs-counter-15 .counter{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 0 20px 20px;
    position: relative;
    z-index: 1;
}

#vs-counter-15 .counter:before,
#vs-counter-15 .counter:after{
    content: "";
    border: 5px solid #0E88FE;
    border-radius: 100px 100px 0 0/50px 50px 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 30px;
    bottom: 0;
    z-index: -1;
}

#vs-counter-15 .counter:after{
    background-color: #fff;
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    left: 10px;
    right: 10px;
    top: 6px;
    bottom: 10px;
}

#vs-counter-15 .counter .counter-icon{
    color: #fff;
    background-color: #0E88FE;
    font-size: 32px;
    line-height: 32px;
    line-height: 85px;
    width: 60px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 40px 40px 50px 50px/ 15px 15px 50px 50px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4) inset;
}

#vs-counter-15 .counter h3{
    color: #666;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    margin: 0 0 13px;
}

#vs-counter-15 .counter .counter-value{
    font-size: 33px;
    font-weight: 800;
}

#vs-counter-15 .counter.darkgreen:before{ border-color: #096C7F; }
#vs-counter-15 .counter.darkgreen .counter-icon{ background-color: #096C7F; }

#vs-counter-15 .counter.green:before{ border-color: #5EB05E; }
#vs-counter-15 .counter.green .counter-icon{ background-color: #5EB05E; }

#vs-counter-15 .counter.purple:before{ border-color: #770C80; }
#vs-counter-15 .counter.purple .counter-icon{ background-color: #770C80; }

@media screen and (max-width:990px){
    #vs-counter-15 .counter{ margin-bottom: 40px; }
}