.rs-services-item .rs-services-icon .svg-icon{
    width: 30%;
}
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
  min-width: 220px; /* prevent shrinking */
  height: 1.2em; /* adjust for line-height */
  vertical-align: top;
}

.cd-words-wrapper b {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s;
}

.cd-words-wrapper b.is-visible {
  opacity: 1;
  position: relative;
}

.hecss
{
	    font-weight: bold;
    font-size: 31px;
	
}
.service-item
				{
				text-align:center;
				}
/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
	    background-color: #fff8eb;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #f8f3fd;
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/
.bg-primary
{
	background-color:#a156fa !important;
}


.toggle-container {
    width: 251px;
    padding: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: var(--background-color-2);
    border-radius: 6px;
    transition: background-color 0.3s ease-in-out 0.1s;
  }
  
  .fa-sun,.fa-moon {
    font-size: 1.5rem;
    color: #828FA3;
  }
  
  .text {
    color: #828FA3;
  }
  
  /* TOGGLE SWITCH STYLES */
  .switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 32px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #635FC7;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 5px;
    bottom: 5px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
  }
  
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  
  /* CIRCLE STYLES AND ANIMATION */
  
  .darkCircle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2B2C37;
    clip-path: circle(0% at 50% 0%);
    z-index: -1;
  }
  
  .lightCircle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    clip-path: circle(0% at 50% 0%);
    z-index: -1;
  }
  
  .darkCircle.grow {
    animation-name: circle-grow;
    animation-duration: 0.7s;
    animation-timing-function: ease-in-out;
  }
  
  .lightCircle.grow {
    animation-name: circle-grow;
    animation-duration: 0.7s;
    animation-timing-function: ease-in-out;
  }
  
  .dark {
    --background-color: #2B2C37;
    --background-color-2: #20212C;
    --text-color: #fff;
    transition: background-color 0.3s ease-in-out 0.4s, color 0.7s ease-in-out;
  }
  
  .light {
    --background-color: #FFFFFF;
    --background-color-2: #F4F7FD;
    --text-color: #000000;
    transition: background-color 0.3s ease-in-out 0.4s, color 0.7s ease-in-out;
  }
  
  @keyframes circle-grow {
    0% {
      clip-path: circle(0% at 50% 0%);
    }
    
    100% {
      clip-path: circle(150% at 50% 0%);
    }
  }
  