:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #444444;
  /*-------------------------------- Default color used for the majority of the text content across the entire website --------------------------------*/
  --heading-color: #151515;
  /*-------------------------------- Color for headings, subheadings and title throughout the website --------------------------------*/
  --accent-color: #0ea5e9;
  /*-------------------------------- Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out --------------------------------*/
  --surface-color: #ffffff;
  /*-------------------------------- The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. --------------------------------*/
  --contrast-color: #312f2f;
  /*-------------------------------- Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. --------------------------------*/
}

:root {
  --nav-color: rgba(255, 255, 255, 0.905);
  /*-------------------------------- The default color of the main navmenu links --------------------------------*/
  --nav-hover-color: #0ea5e9;
  /*-------------------------------- Applied to main navmenu links when they are hovered over or active --------------------------------*/
  --nav-mobile-background-color: #ffffff;
  /*-------------------------------- Used as the background color for mobile navigation menu --------------------------------*/
  --nav-dropdown-background-color: #ffffff;
  /*-------------------------------- Used as the background color for dropdown items that appear when hovering over primary navigation items --------------------------------*/
  --nav-dropdown-color: #212529;
  /*-------------------------------- Used for navigation links of the dropdown items in the navigation menu. --------------------------------*/
  --nav-dropdown-hover-color: #00eaff;
  /*-------------------------------- Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. --------------------------------*/
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}


/*-------------------------------- 
 *Smooth scroll 
 --------------------------------*/
:root {
  scroll-behavior: smooth;
}


/*-------------------------------------
 * General Styling & Shared Classes
--------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*---------------
 * Global Header
----------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}


/*------------------
 * Index Page Header
------------------*/
.index-page .header {
  --background-color: rgba(0, 0, 0, 0);
}


/*----------------------------
 * Index Page Header on Scroll
-----------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
}


/*-----------------
 * Navigation Menu
------------------*/
/*------------------
 * Navmenu - Desktop 
--------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}


/*------------------- 
 * Navmenu - Mobile 
--------------------*/
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


/*-----------------
 * Global Footer
------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding: 50px 0;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 10%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 10px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--default-color) 5%, white 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 4px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}


/*-----------
 * Preloader
------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*-------------------
 * Scroll Top Button
--------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*-----------------------------------------------
 * Disable aos animation delay on mobile devices
------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*----------------------------------
 * Global Page Titles & Breadcrumbs
------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}


/*-=---------------
 * Global Sections
------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 80px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 58px;
  }
}

/*-----------------------
 * Global Section Titles
------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

/*---------------
 * Hero Section
----------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 70%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  font-family: var(--nav-font);
  -webkit-text-stroke: 1px var(--accent-color);
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
}

.hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

.hero .icon-box h3 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
  border-color: var(--accent-color);
}

.hero .icon-box:hover h3 a {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}


/*----------------
 * About Section
------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.bullet-points {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  list-style-type: none;
  margin: 0;
}

.bullet-points li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.bullet-points li i {
  margin-right: 10px;
}

.bullet-points li:last-child {
  margin-bottom: 0;
}


/*-------------------
 * Carousel Section
--------------------*/
.latest-update-carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
  /* Adjust this value as needed */
  margin: 0 auto;
  /* Center the carousel */
  overflow: hidden;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  /* Maintain aspect ratio */
  max-height: 400px;
  /* Adjust this value as needed */
  object-fit: cover;
  /* Ensure images cover the slide area */
  display: block;
}

.carousel-caption {
  position: absolute;
  bottom: 10px;
  /* Adjust as needed */
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  /* Text color */
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  padding: 10px;
  /* Padding for the caption */
  box-sizing: border-box;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 100;
}

.prev-button {
  left: 10px;
}

.next-button {
  right: 10px;
}


/*-----------------
 * Clients Section
-------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.swiper-button-next,
.swiper-button-prev {
  color: #0ea5e9;
  width: 40px;
  height: 40px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}


/*------------------
 * Partners Section
-------------------*/
.partners .swiper-slide img {
  opacity: 0.5;
  transition: 0.5s;
  filter: grayscale(100);
}

.partners .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.partners .swiper-wrapper {
  height: auto;
}

.partners .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.partners .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.partners .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.swiper-button-next,
.swiper-button-prev {
  color: #0ea5e9;
  width: 40px;
  height: 40px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}


/*-------------------
 * Services Section
--------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  height: 100%;
  transition: all ease-in-out 0.3s;
}

.services .service-item .icon {
  background: white;
  color: var(--contrast-color);
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}


/*------------------
 * Contact Section
-------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact {
  padding: 60px 0;
  background-color: #f8f9fa;
}


/*---------------------------
 * Service Details Section
-----------------------------*/
.service-details {
  padding: 40px 0;
  /* Adjust padding as needed */
}

/* Service Box Styling */
.service-box {
  padding: 20px;
  border-radius: 8px;
  background-color: #f9f9f9;
}

/* Header Styling */
.service-box h4 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

/* Category Headings Styling */
.services-list h5 {
  margin-top: 20px;
  font-size: 1.25rem;
  color: #007bff;
  /* Optional: color for category headings */
}

/* Solution Card Styling */
.solution-card {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  text-decoration: none;
  color: #333;
}

.solution-card:hover {
  transform: scale(1.02);
  text-decoration: none;
}

.solution-card span {
  font-size: 18px;
}

/* Help Box Styling */
.help-box {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.help-box .help-icon {
  font-size: 40px;
  color: #007bff;
}

.help-box h4 {
  margin: 20px 0;
  font-size: 1.5rem;
}

.help-box p {
  margin: 5px 0;
  font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .service-details .row {
    flex-direction: column;
  }

  .service-box {
    margin-bottom: 20px;
  }
}

.solutions-container {
  padding: 20px;
  /* Adds padding around each category */
  border-radius: 8px;
  /* Rounds the corners */
}

.solutions-category-title {
  text-align: center;
  /* Centers the category title */
  margin-bottom: 20px;
  /* Adds space below the category title */
  color: #333;
  /* Changes title color for better contrast */
  font-weight: bold;
  /* Makes the title bold */
  border-bottom: 2px solid #007bff;
  /* Adds an underline in the accent color */
  display: inline-block;
  /* Aligns underline to text length */
  padding-bottom: 5px;
  /* Adds padding below text and underline */
}

.service-item-link {
  text-decoration: none;
  /* Removes underline from links */
  color: inherit;
  /* Inherits color from parent */
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centers content vertically */
}

.service-item .icon {
  margin-bottom: 10px;
  /* Adds space between icon and text */
}

@media (max-width: 768px) {
  .solution-card {
    margin-bottom: 20px;
    /* Adds spacing between cards on smaller screens */
  }
}

.icon {
  display: inline-block;
  padding: 15px;
  /* Adjust as needed for spacing */
  background-color: lightgray;
  /* White background for the icon */
  border: 2px solid #007bff;
  /* Blue border color */
  border-radius: 5px;
  /* Optional: adds rounded corners */
}

.solution-icon {
  width: 48px;
  /* Fixed width */
  height: auto;
  /* Maintain aspect ratio */
  display: block;
  /* Center the image */
  margin: 0 auto;
  /* Center the image */
}

.service-item-link {
  display: block;
  text-decoration: none;
  /* Remove underline from links */
  color: inherit;
  /* Ensure */
}


/*---------------
 * IMG Position
----------------*/
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.hero-section {
  background: #007BFF;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #FFC107;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.service-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  background: #f5f5f5;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.benefits-list {
  list-style-type: disc;
  margin-top: 20px;
  text-align: left;
  display: inline-block;
}

.testimonial {
  background: #e9ecef;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin-top: 20px;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-section input,
.contact-section textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.contact-section button {
  padding: 10px 20px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.footer-section {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}


/*-------------------------- 
 * Benefits Section Styling
 ---------------------------*/
.benefits-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card .card {
  background: #ffffff;
  border: none;
  padding: 30px;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}

.benefit-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.benefit-card p {
  font-size: 14px;
  color: #777;
}


/*----------------------
 * Product Detail Page
-----------------------*/
.services-list a:hover {
  color: #007bff;
  text-decoration: underline;
}

.service-box {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-box h4 {
  color: #333;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 10px;
}


/*------------- 
 * Page Title 
---------------*/
.page-heading {
  display: inline-block;
  /* Make the heading width fit the text */
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.page-heading::before {
  content: '';
  position: absolute;
  left: 50%;
  /* Start from the center of the text */
  bottom: -10px;
  transform: translateX(-50%);
  /* Center the underline */
  width: 100%;
  /* Extend the underline to match the text width */
  height: 5px;
  background-color: #0ea5e9;
}


/*----------------- 
 * Page Title End 
------------------*/
.col-lg-8 {
  text-align: center;
}

.col-lg-8 img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.col-lg-8 ul {
  display: inline-block;
  text-align: left;
  padding: 0;
  margin: 0 auto;
}


/*-----------------
 * Solution Section
------------------*/
.services {
  padding: 60px 0;
}

.solutions-category-title {
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #333;
}

.solution-card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-item {
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item .icon {
  font-size: 40px;
  color: #f47c3c;
  margin-bottom: 15px;
}

.service-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.service-item p {
  color: #777;
  font-size: 14px;
}

@media (max-width: 768px) {
  .solution-card {
    margin-bottom: 30px;
  }
}

.solution-card.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: 1;
}


/* -----------------
 * UiPath Section
 -----------------*/
.service-box {
  padding: 15px;
  /* Adjust padding as needed */
  border: 1px solid #ddd;
  /* Optional: adds a border for better visibility */
  border-radius: 5px;
  /* Optional: rounds the corners of the box */
}

.service-list h4 {
  margin-bottom: 15px;
  /* Adjusts the space between title and product list */
}

.service-list a {
  display: block;
  /* Ensures each item takes its own line */
  padding: 8px 0;
  /* Adjusts padding around each product link */
  text-decoration: none;
  /* Removes underline from links */
}

.service-list a:hover {
  background-color: #f0f0f0;
  /* Adds a hover effect for better interaction */
  border-radius: 3px;
  /* Optional: rounds the corners of the hover effect */
}

.icon {
  display: inline-block;
  padding: 10px;
  /* Adjust as needed for spacing */
  background-color: white;
  /* White background for the icon */
  border: 2px solid #0ea5e9;
  /* Blue border color */
  border-radius: 5px;
  /* Optional: adds rounded corners */
}

.solution-icon {
  width: 48px;
  /* Fixed width */
  height: auto;
  /* Maintain aspect ratio */
  display: block;
  /* Center the image */
  margin: 0 auto;
  /* Center the image */
}