 .service-entry-content h2 {
     font-size: 50px;
     font-weight: 300;
     line-height: 1.1em;
     color: var(--primary-color);
     margin-bottom: 20px;
 }

 .service-entry-content h2 span {
     font-weight: 700;
     background-image: linear-gradient(267.43deg, var(--orange-color) 4.95%, var(--yellow-color) 97.92%);
     background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .service-entry-img img {
     aspect-ratio: 0 / 0.5 !important;
 }

 .service-entry-doc ul li::before {
     content: "\f00c";
     font-family: "FontAwesome";
     position: absolute;
     top: 0;
     left: 0;
     font-size: 20px;
     background-image: linear-gradient(267.43deg, var(--orange-color) 4.95%, var(--yellow-color) 97.92%);
     background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .service-entry-doc ul li {
     position: relative;
     color: var(--primary-color);
     text-transform: capitalize;
     padding-left: 30px;
     margin-bottom: 20px;
 }

 .service-entry-doc ul {
     margin-bottom: 20px;
     padding: 0;
     list-style: none;
 }

 .inner-content-img {
     border-bottom: 1px solid var(--divider-color);
     margin-bottom: 40px;
     padding-bottom: 40px;
 }

 .seo-process {
     padding: 50px 0px;
 }


 .seo-process-2 {
     padding: 50px 0px;
     background: var(--white-color);
 }

 /* for carsoul css  */
 .carousel-frame {
     background: #fff;
     /* border: 8px solid #f1f1f1; */
     /* frame effect */
     border-radius: 15px;
     overflow: hidden;
     position: relative;
 }

 .carousel-indicators {
     position: relative;
     margin-top: 0.5rem;
     margin-bottom: 0.5rem;
 }

 .carousel-frame img {
     border-radius: 10px;
     /* soft corners inside the frame */
     object-fit: cover;
     aspect-ratio: auto;
 }

 .carousel-control-prev-icon,
 .carousel-control-next-icon {
     background-color: rgba(0, 0, 0, 0.6);
     /* make controls visible */
     border-radius: 50%;
     padding: 10px;
 }

 .carousel-indicators [data-bs-target] {
     /* background-color: #f57d20ff;
     width: 12px;
     height: 12px;
     border-radius: 50%; */
     background-color: #f57d20ff;
     width: 12px;
     height: 12px;
     margin-top: 5px;
     border: solid #ddd;
     border-radius: 50%;
 }


 /* Custom marquee   */
 .marquee-container {
     position: relative;
     height: 600px;
     /* Adjust height */
     overflow: hidden;
     border-radius: 12px;
     /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
 }

 .marquee-content {
     display: flex;
     flex-direction: column;
     animation: scrollUp 12s linear infinite;
 }

 .marquee-container:hover .marquee-content {
     animation-play-state: paused;
     /* Pause on hover */
 }

 .marquee-content figure {
     margin: 0;
     padding: 0;
 }

 .marquee-content img {
     width: 100%;
     height: auto;
     border-radius: 12px;
     margin-bottom: 15px;
     object-fit: cover;
 }

 /* Animation keyframes */
 @keyframes scrollUp {
     0% {
         transform: translateY(0);
     }

     100% {
         transform: translateY(-50%);
     }

     /* scroll effect */
 }

 /* Responsive tweaks */
 @media (max-width: 768px) {
     .marquee-container {
         height: 250px;
     }
 }

 /* tab css  */
 .service-entry {
     display: none;
 }

 .service-entry.active {
     display: block;
 }

 .service-catagery-list ul li.active {
     font-weight: bold;
     color: #1a56db;
     border-bottom: 1px solid var(--navy-color);
     box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
         rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
         rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
 }

 #loader i {
     animation: spin 1s linear infinite;
 }

 .reveal {
     justify-content: center;
 }

 .section-btn {
     text-align: center;
 }

 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }