/* Service widget style */

/* CARD BOX */
.service-card-box {
    position: relative;
    /* background: #ffffff; */
    padding: 40px 35px;
    /* border-radius: 15px; */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
}

/* LEFT COLORED STICK */
.service-card-box::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 30px;
    width: 8px;
    height: 55px;
    background: #ff6f3c; /* Orange */
    border-radius: 8px;
}

/* NUMBER CIRCLE */
.service-number-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #ff6f3c;
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* TITLE */
.service-title {
    margin-bottom: 15px;
}

/* DESCRIPTION */
.service-desc {
    margin-bottom: 25px;
}

.service-top {
  display: flex;
  /* align-items: center; */
  gap: 15px;
  border-radius: 10px;
  flex-wrap: wrap;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #333;
  flex: 1;
}
/* Hover */
/* 
.service-card-box.hover-zoom {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    will-change: transform;
}

.service-card-box.hover-zoom:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
} */

/* circular-counter-widget style */

.counter-box {
    background: #fff;
    padding: 28px 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.10);
    text-align: center;
    transition: all 0.3s ease;
    height: 220px; /* fixed height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.circle {
    position: relative;
    width: 120px;
    margin: 0 auto;
}

.circle svg {
    transform: rotate(-90deg);
}

.circle .bg {
    stroke: #e7ecff;
    stroke-linecap: round;
}

.circle .progress {
    stroke: #0a1b3d;
    stroke-linecap: round;
    transition: stroke-dasharray 0.8s ease;
}

.count-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-family:'poppins';
    font-size: 22px;
    font-weight: 600;
    color: #0a1b3d;
}

/* custom Testimonial style */
.testimonial-layout{
  display:flex;
  gap:10px;
  align-items:center;
}

.testimonial-left{
  width:25%;
}

.testimonial-left h2{
  font-size:40px;
  line-height:1.2;
  font-weight:700;
}

.quote{
  font-size:60px;
  color:#9ca3af;
  display:block;
  margin-bottom:20px;
}

.nav{
  margin-top:30px;
  display:flex;
  gap:15px;
}

.nav span{
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid #e5e7eb;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.3s;
}

.nav span:hover{
  background:#0f172a;
  color:#fff;
}

/* RIGHT */
.testimonial-right{
  width:75%;
  overflow:hidden;
}

.testimonial-track{
  display:flex;
  gap:20px;
  transition:transform .6s ease;
}

.testimonial-card{
  flex:0 0 calc(33.333% - 20px);
  background:#fff;
  padding:25px;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
  position:relative;
}

.testimonial-card:after{
  content:'';
  position:absolute;
  bottom:-15px;
  left:40px;
  border-width:15px 15px 0;
  border-style:solid;
  border-color:#fff transparent;
}

.testimonial-card p{
  font-family: 'poppins';
  font-size:14px;
  line-height:1.7;
  color:#6b7280;
  min-height:120px;
}
.testimonial-text{
  cursor:pointer;
}

/* Hero section */

.hero-box {
    position: relative; /* IMPORTANT */
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 20px;
    padding: 65px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    gap: 40px;
    overflow: visible; /* allow image overflow */
}

.hero-content {
    max-width: 55%;
}

h1.hero-title {
    margin: 0;
    font-size: 32px !important;
}
@media (max-width: 767px) {
    h2.hero-title {
    font-size: 28px !important;
}
}
/* Single Post title */

.single-post h2.hero-title {
    font-size: 26px !important;
}
.elementor-widget-theme-post-content h2 {
    font-size: 24px !important;
    font-weight: 500 !important;
}

.hero-desc {
    margin: 20px 0 50px;
    line-height: 1.8;
}

.hero-breadcrumb span a {
    font-weight: 400;
}

/*  IMAGE POSITION MAGIC */
.hero-image {
    position: absolute;
    right: 0px;   
    top: 70%;
    transform: translateY(-50%);
    max-width: 35%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    border: 5px solid #0a1b3d;
    /* background: #fff; */
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .hero-box {
        flex-direction: column;
        padding: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        position: relative;
        right: 0;
        top: auto;
        transform: none;
        max-width: 100%;
        margin-top: 30px;
    }
}

/* Mission/Vision style */

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.mv-top-icon img {
    width: auto;
}

.mv-bottom-icon img {
    width: 20%;
}

.mv-desc {
    font-size: 15px;
    line-height: 1.7;
}

.mv-wrapper {
    display: flex;
    position: relative;
}

.mv-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

/* CENTER DIVIDERS (2 dividers for 3 items) */
.mv-item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50px;
    right: 0;
    width: 3px;
    height: 20%;
    background: linear-gradient(90deg, rgba(163, 163, 163, 1) 0%, rgb(61 61 61 / 53%) 49%, rgba(163, 163, 163, 1) 99%);
}

.mv-title {
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
    margin-bottom: 18px;
    margin: 0px 0 15px 0;
}

/* LEFT LINE */
.mv-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-65px);
    width: 45px;
    height: 2px;
    background: #f15a29;
}

/* RIGHT LINE */
.mv-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(20px);
    width: 45px;
    height: 2px;
    background: #f15a29;
}

/* CENTER DOT */
.mv-title span.dot {
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #f15a29;
    border-radius: 50%;
}

span.common-title {
    color: #000;
}

/* Responsive */
@media (max-width: 991px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mv-bottom-icon img {
    width: 15%;
    }
}
