/* Hero Section */

.hero-banner .hero-content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.hero-content h5 {
  font-weight: 300;
  font-size: 22px;
}
.hero-content h2 span {
  font-size: 55px;
}
.banner-counter h2 .counter {
  font-size: 70px;
  font-weight: 800;
}
.banner-counter {
  padding-top: 50px;
}
#cursor {
  display: inline-block;
  font-weight: bold;
  color: var(--primary-color); /* Match cursor color with text */
  animation: blink 0.7s step-end infinite;
}
.hero-banner .banner-btns {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-start;
}
.hero-banner .counter-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding-top: 40px;
}
.hero-banner .counter-box h2 {
    text-wrap: nowrap;
}
.hero-banner .counter-box h2 .counter {
  font-size: 55px;
  font-weight: 800;
}

.hero-banner .counter-box .line {
  width: 2px;
  height: 40px;
  background-color: var(--primary-color);
}
@keyframes blink {
  50% {
    opacity: 0;
  }
    
}
  .hero-banner .banner-right-img IMG {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: top;
}
  
/* Testimonials */

.continuous-slider .slide-card {
  background: var(--header-background);
  border-left: 3px solid var(--primary-color);
  padding: 20px;
  text-align: left;
  box-shadow: var(--box-shadow);
  margin: 0px 20px;
  height: 250px;
  display: flex;
  flex-direction: column;
}

.slide-card-img img {
  border-radius: 50%;
}

.slide-ratings i {
  color: #ffd700; /* Gold star color */
}

.slick-dots li button {
    background-color: #aba8a8;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    color: transparent;
    font-size: 0px;
    transition: all .3s ease-in-out;
}

.slick-dots li.slick-active button {
    background-color: var(--primary-color);
}
.slick-dots li button:before{
    content: unset;
}


/* Blogs */

.our-blogs .row:last-child {
    row-gap: 22px;
}

.web-card {
    position: relative;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 20px); /* Responsive width */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Adjust content alignment */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    row-gap: 20px;
    min-height: 300px;
    cursor: pointer;
}
.web-card .web-card-img img {
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
}
.web-card .web-card-date-author {
    background-color: var(--header-background);
    padding: 10px;
    width: 250px;
}

.web-card:hover {
    border-color: var(--primary-color);
}

.web-card .web-card-content {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.web-card:hover .web-card-content a h5 {
    color: var(--primary-color);
}

.web-card .web-card-content a h5 {
    transition: all .3s ease-in;
}
.web-card:hover .web-card-content .web-btn a span i {
    color: var(--white-color);
}

.web-card .web-card-categories span a {
    background-color: var(--primary-color);
    padding: 5px;
}

.web-card .web-card-categories span {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.web-card .web-card-categories {
    position: absolute;
    top: 10px;
    left: 10px;
}

.web-card .web-card-categories span a:hover {
    color: var(--white-color);
}

/* Skill Progress Section */

.circular-progress {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e0e0e0;
  margin: 0 auto;
}

.inner-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.inner-circle img {
  width: 50%;
  height: 50%;
  object-fit: cover;
}

.percentage {
    position: absolute;
    bottom: 2px;
    font-size: 13px;
    font-weight: bold;
    color: var(--white-color);
}

.myskills .row:last-child {
    row-gap: 25px;
    justify-content: center;
    align-items: center;
}

/* Our Services */

.our-services .row:last-child{
    row-gap: 22px;
}

/* Our Projects */

.our-projects .row:last-child{
    row-gap: 22px;
}

.projects.web-card .web-card-img img:hover {
    transform: translateY(calc(-100% + 400px));
}

.projects.web-card .web-card-img {
    height: 400px;
    overflow: hidden;
}

.projects.web-card .web-card-img img {
    width: 100%;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    overflow: hidden;
    aspect-ratio: auto;
    transition: transform 2s ease-in-out;
}