@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

/* Fonts */
:root {
  --default-font: "Inter";
  --heading-font: "Inter";
  --nav-font: "Inter";
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #F8F5FC; /* Background color for the entire website, including individual sections */
  --default-color:#000000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #B45EFF; /* 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: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #000000;  /* The default color of the main navmenu links */
  --nav-hover-color: #B45EFF; /* 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: #000000; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #B45EFF; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  --background-color: black;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4f6171;
  --contrast-color: #ffffff;
}

/* 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 !important;
  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: black;
  font-family: var(--heading-font);
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 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;
  font-weight: 300;
  margin: 0;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-weight: 400;
  font-size: 34px;
  margin-left: 2px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--heading-color);
  font-size: 16px;
  padding: 15px 26px;
  font-weight: bold;
  margin: 0;
  transition: 0.3s;
  position: relative;
  border-radius: 8px; /* Ensure button and border match */
  z-index: 1;
  display: inline-block;
  text-align: center;
}

.header .btn-getstarted::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* Border thickness */
  border-radius: 30px; /* Must match button's border-radius */
  background: linear-gradient(90deg, #713FC6, #FE7866);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}



.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #B45EFF;
}

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

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

  .header .navmenu {
    order: 3;
  }
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

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

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

   .header-nav>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: transparent !important;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
     .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible !important;
    width: 100%;
  }

  .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;
    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 {
    color: var(--nav-dropdown-hover-color);
  }

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

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

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}
/* Ensure nested dropdown has enough space and doesn't flicker */
.navmenu .dropdown .dropdown {
  position: relative;
}

.navmenu .dropdown .dropdown ul {
  pointer-events: none; /* Prevent accidental hover gaps */
}

.navmenu .dropdown .dropdown:hover > ul {
  visibility: visible;
  pointer-events: auto;
}


/* Smooth rotation */
.navmenu a i {
  transition: transform 0.3s ease;
}




/* Mobile Navigation */
@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;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color) !important;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 600;
    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;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

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

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    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: black;
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer {
  background-image: url('../img/solveximg/services/footer.webp');
  background-repeat: no-repeat;
  background-size: cover;
}

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

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

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

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

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

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.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: black;
  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;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--contrast-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# 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: 50%;
  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 {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 300;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

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

.page-title .breadcrumbs 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: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  background: url("../img/hero-bg.webp") center center;
  background-size: cover;
}
.services-banner{
  font-size: 75px;
  font-weight: 700;
}

.services-ui-ux{
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: 600;
}
.color-white{
  color: white;
}





/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 0;
}

.call-to-action .container {
  padding: 80px;
  background: black;
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 60px;
  }
}

.call-to-action .content h3 {
  font-size: 48px;
  font-weight: 700;
}

.call-to-action .content h3 em {
  font-style: normal;
  position: relative;
  z-index: 1;
}

.call-to-action .content h3 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 30%);
  z-index: -1;
}



.call-to-action .content .cta-btn {
  color: black;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid transparent;
  border-image: linear-gradient(90deg, #713FC6, #FE7866);
  border-image-slice: 1;
  border-radius: 8px;
}

.call-to-action .content .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

.call-to-action .img {
  position: relative;
}



.call-to-action .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 15px;
  transform: rotate(12deg);
  z-index: 1;
}

.call-to-action .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
  z-index: 3;
}




/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 400;
  font-size: 30px;
  line-height: 24px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}



/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member .member-img {
  border-radius: 8px;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  top: -18px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s;
}

.team .team-member .social a i {
  line-height: 0;
  font-size: 16px;
}

.team .team-member .social a:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  background-color: var(--surface-color);
  padding: 30px 15px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: var(--surface-color);
  margin: -270px 77px 0 20px;
  position: relative;
  border-radius: 8px;
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 28px;
  overflow: hidden;
}



.recent-posts .post-category {
  font-size: 16px;
  color: white;
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: white;
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}



/*------------------------
services page section
-----------------------------------------------------*/

.paragraph-stylings {
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
}

.paragraph-stylings1 {

  font-size: 24px;
  font-weight: 400;
  line-height: 32px;

}

.heading-stylings {
  font-size: 45px;
  font-weight: 800;
}

.heading-stylings2 {
  font-size: 48px;
  font-weight: 800;
}

.links-stylings {
  font-size: 16px;
  font-weight: 400;
}

.services-stylings {
  font-size: 24px;
  font-weight: 800;
}

.services-links {
  font-size: 15px;
  font-weight: 700;
  color: black;
  text-decoration: none !important;
  text-underline-offset: 5px;
  /* Adjust as needed */
}

.services-links:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
  /* Adjust as needed */
  cursor: pointer;
}

.header-stylings1 {
  font-size: 75px;
  font-weight: 700;
  line-height: 90px;
}

.services-newstyling {
  background: linear-gradient(45deg, #713FC6, #FE7866);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-services li a:not(.active) {
  opacity: 0.2;
}

.services-heading-links:hover {
  color: #B45EFF;
  text-decoration: underline;
  text-underline-offset: 5px;
  /* Adjust as needed */
  cursor: pointer;
}

.services-talk {
  color: white !important;
}

.services-para-stylings {
  font-size: 35px;
  font-weight: 400;
  line-height: 45px;
  text-decoration: underline;
  text-underline-offset: 5px;
  /* Adjust as needed */
  color: white;
  cursor: pointer;

}
.contact-button{
  color: white !important;
}

.services-bg-image {
  position: relative;
  width: 100%;
}

.servicesmail-link {
  font-size: 23px;
  font-weight: 400;
}

.mail-bg {
  background-color: white;
  padding: 10px 20px;
  border-radius: 30px;
}

.servicesmail-link {
  display: block;
  margin-bottom: 10px;
  /* Adjust spacing as needed */
  text-align: center;
}




.talk-services {
  color: black;
}



/* Decrease font sizes for mobile devices */
@media (max-width: 768px) {
  .heading-stylings {
    font-size: 32px;
    /* Reduce size on mobile */
  }

  .heading-stylings2 {
    font-size: 35px;
    /* Adjust for better mobile view */
  }

  .header-stylings1 {
    font-size: 50px;
    /* Reduce for smaller screens */
    line-height: 65px;
    /* Adjust line height accordingly */
  }
  .contact-button{
    color: black !important;

  }

  .services-banner {

    font-size: 50px;
    /* Reduce for smaller screens */
    line-height: 65px;
    /* Adjust line height accordingly */

  }

  .servicesmail-link {
    font-size: 22px;
    font-weight: 400;
  }

  .image-handshake {
    display: none !important;
  }

  .header .logo img {
    max-height: 32px;
  }

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    font-size: 11px;
  }

  .services-consultant {
    background-image: none !important;
  }

  .need-help {
    color: black !important;
  }
}



/* Mobile Navigation (Same layout as desktop) */
.navmenu-mobile {
  padding: 10px 0;
}

.navmenu-mobile ul {
  display: flex;
  flex-direction: row;
  /* Keep it horizontal */
  justify-content: center;
  align-items: center;
  gap: 10px;
  /* Adjust spacing */
  width: 100%;
}

.navmenu-mobile ul li {
  padding: 5px 15px;
  list-style: none;
}

.navmenu-mobile ul li a {
  text-decoration: none;
  color: #000;
  /* Adjust as needed */
  font-size: 14px;
}
.hero-text{
  font-size: 24px;
  font-weight: 400;
}

.heading-stylings3 {
  font-size: 16px;
  font-weight: 600;
}
/*home page styling*/

@media (min-width: 325px) and (max-width: 1400px) {
    .solutions-fontsize {
        font-size: 16px !important;
    }

    .solutions-headings {
        font-size: 30px !important;
    }
}

.solutions-fontsize {
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
}

/*slider*/
/* Ensure text resizes properly */
.responsive-text {
    font-size: 2rem;
    /* Large screens */
    color: white;
    /* Ensure visibility */
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 60vh !important;

    }
}

@media (max-width: 768px) {
    .responsive-text {
        font-size: 1.2rem;
        /* Adjust for mobile screens */
    }
}

/* Override Bootstrap hiding behavior */
.carousel-caption {
    display: flex !important;
}

.carousel-indicators {
    position: absolute;
    bottom: -20px;
    /* Adjust position */
    display: flex;
    justify-content: center;
    gap: 8px;
    /* Space between indicators */
}

.carousel-indicators button {
    width: 100px !important;
    /* Increase width to make them bars */
    height: 6px;
    /* Set height to make it a bar */
    background-color: black !important;
    /* Default gray color */
    border: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.carousel-indicators .active {
    background-color: #A259FF !important;
    width: 70px;
}

.carousel-caption {
    position: absolute;
    right: 0% !important;
    bottom: 1.25rem;
    left: 0% !important;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
}

/**/
.font-size {
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    color: white;
}

.paragraph-stylings {
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    color: black;
}

.paragraph-stylings1 {

    font-size: 24px;
    font-weight: 400;
    line-height: 32px;

}

.heading-stylings {
    font-size: 45px;
    font-weight: 800;
    color: #000;
}

.heading-stylings2 {
    font-size: 48px;
    font-weight: 800;
}

.links-stylings {
    font-size: 16px;
    font-weight: 400;
}

.services-stylings {
    font-size: 24px;
    font-weight: 800;
}


.header-stylings1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 90px;
}

.services-newstyling {
    background: linear-gradient(45deg, #713FC6, #FE7866);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-services li a:not(.active) {
    opacity: 0.2;
}

.services-heading-links:hover {
    color: #B45EFF;
    text-decoration: underline;
    text-underline-offset: 5px;
    /* Adjust as needed */
    cursor: pointer;
}

.services-talk {
    color: white !important;
}

.services-para-stylings {
    font-size: 35px;
    font-weight: 400;
    line-height: 45px;
    text-decoration: underline;
    text-underline-offset: 5px;
    /* Adjust as needed */
    color: white;
    cursor: pointer;

}

.services-para-stylings1 {
    font-size: 16px;
    font-weight: 700;
    color: black;

    text-decoration: underline;
    text-underline-offset: 5px;
}
.services-para-stylings1:hover{
  text-decoration: underline;
}

.services-bg-image {
    position: relative;
    width: 100%;
}

.servicesmail-link {
    font-size: 23px;
    font-weight: 400;
}

.mail-bg {
    background-color: white;
    padding: 10px 20px;
    border-radius: 30px;
}

.servicesmail-link {
    display: block;
    margin-bottom: 10px;
    /* Adjust spacing as needed */
    text-align: center;
}

.header-bg {
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #F8F5FC 100%),
        url('./assets/img/solveximg/services/headerbg.webp');
    background-repeat: no-repeat;
    background-size: cover;
}


.talk-services {
    color: black;
}



/* Decrease font sizes for mobile devices */
@media (max-width: 1198px) {

    .paragraph-stylings1 {
        font-size: 18px;
    }

}

@media (max-width: 768px) {
    .heading-stylings {
        font-size: 32px;
        /* Reduce size on mobile */
    }

    .heading-stylings2 {
        font-size: 35px;
        /* Adjust for better mobile view */
    }

    .header-stylings1 {
        font-size: 50px;
        /* Reduce for smaller screens */
        line-height: 65px;
        /* Adjust line height accordingly */
    }

    .services-banner {

        font-size: 50px;
        /* Reduce for smaller screens */
        line-height: 65px;
        /* Adjust line height accordingly */

    }

    .servicesmail-link {
        font-size: 22px;
        font-weight: 400;
    }

    .image-handshake {
        display: none !important;
    }

    .header .logo img {
        max-height: 28px;
    }

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        font-size: 11px;
    }

    .services-consultant {
        background-image: none !important;
        height: 0% !important;
    }

    .need-help {
        color: black !important;
    }

    .faq .faq-container .faq-item h3 {
        font-weight: 400;
        font-size: 20px;
        line-height: 30px;
        transition: 0.3s;
        cursor: pointer;
    }
}



/* Mobile Navigation (Same layout as desktop) */
.navmenu-mobile {
    padding: 10px 0;
}

.navmenu-mobile ul {
    display: flex;
    flex-direction: row;
    /* Keep it horizontal */
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* Adjust spacing */
    width: 100%;
}

.navmenu-mobile ul li {
    padding: 5px 15px;
    list-style: none;
}

.navmenu-mobile ul li a {
    text-decoration: none;
    color: #000;
    /* Adjust as needed */
    font-size: 14px;
}

.heading-stylings3 {
    font-size: 20px;
    font-weight: 600;
}
.heading-stylings3{
  font-size: 16px;
  font-weight: 600;
}

/*--------------------------
home page stylings
-------------------------------*/



.consultant-button-home {
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    border: 2px solid #E54B4B;
    /* Ensures all sides have the same color */
    padding: 10px 18px;
    background-color: #E54B4B;
    color: white;
}

.home-counters {
    font-size: 45px;
    font-weight: 800;
}

.counter-humans {
    color: #00CFBE !important;
}

.human-counter-section {
    border-radius: 15px;
    background: linear-gradient(45deg, #5A35BF, #AD2EE8);
    background-size: cover;
    /* Ensure background covers area */
    background-repeat: no-repeat;
    min-height: 200px;
    /* Set minimum height for responsiveness */
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .human-counter-section {
        min-height: 400px;
        /* Adjust for smaller screens */
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .human-counter-section {
        min-height: 350px;
        padding: 10px;
    }
}


.home-counters {
    color: white;
    font-family: "Noto Serif" !important;
}

.our-home-work {
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
}

article {
    display: flex;
    flex-direction: column-reverse;
}

.achieve1 {
    background-color: #2C1155;
}

.achieve2 {
    background-color: #713FC6;
    position: relative;
}

.achieve3 {
    background-color: #000000;
}

.circle-star {
    position: absolute;
    top: 265 !important;
    margin-top: 5%;
}

.second-counter {
    font-size: 70px;
    font-weight: 700;
}

.products-home {
    padding: 5px;
}

.position-relative {
    position: relative;
}

.image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    /* Center & Rotate Text */
    color: white;
    font-size: 24px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 10px;
    white-space: nowrap;
    /* Prevents text wrapping */
    font-size: 40px;
    font-weight: 300;
    color: #000;
}

/**/
.solutions-section {
    position: relative;
    width: 100%;
}

.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.background-image {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.box {
    position: absolute;
    width: 40%;
}

/* Top Left (Design) */
.box:nth-child(1) {
    top: 7%;
    left: 5%;
}

/* Top Right (Technology) */
.box:nth-child(2) {
    top: 7%;
    right: 5%;
}

/* Bottom Left (Marketing) */
.box:nth-child(3) {
    bottom: 7%;
    left: 5%;
}

/* Bottom Right (Schedule Button) */
.box:nth-child(4) {
    bottom: 21%;
    right: -9%;
}

.schedule-btn {
    background: white;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
}

.schedule-btn1 {
    background: white;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
}

.mobile-devices-solutions {
    min-height: 65vh;
}

.schedule-section {
    background-color: #713FC6;
}

.mobile-devices-solutions-design {
    display: block;
    /* Visible by default */
}

.desktop-devices-solutions-design {
    display: none;
    /* Hidden by default */
}

@media (min-width: 1200px) {
    .mobile-devices-solutions-design {
        display: none;
        /* Hide on desktops */
    }

    .desktop-devices-solutions-design {
        display: block;
        /* Show on desktops */
    }
}
.margin-tops1{
    margin-top: 15% !important;
}
.margin-tops2{
    margin-top: 30% !important;
}

/**services landing page*/

.heading-stylings-services-page{
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}
.paragraph-stylings-services-page{
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
}
.heading-stylings-services-page1{
  font-size: 55px;
  font-weight: 600;
}
.paragraph-stylings-services-page1{
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
}
.border-wrapper {
    position: relative;
  }

  /* Apply vertical divider for the first 3 columns */
  .border-wrapper::after {
    content: "";
    position: absolute;
    top: 1%;
    right: 0;
    height: 100%;
    width: 1px;
    background-color: #ccc;
  }
  .industries-work{
    background: black;
  }
  .clients-trusted{
    background: rgb(224, 222, 222);
  }
  .hero-text1{
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
  }
.humberger-links{
  color: gray;
}
.impact-colors{
  color: #713FC6;
}
.heading-stylings-work{
  font-size: 38px;
  font-weight: 800;
}
.industry-paragraph{
  font-size: 38px;
  font-weight: 600;
  padding-top: 15px;
  color: white;
}
.custom-button-wrapper {
  display: inline-flex;
  align-items: center;
  border: 2px solid #E54B4B;
  border-radius: 50px;
  padding: 16px;
  background-color: transparent;
  /* Remove any width stretching */
  width: auto;
}


    .custom-button-text {
      color: white;
      font-weight: 600;
      padding: 0 20px;
      font-size: 1.25rem;
    }

    .custom-button-circle {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: #E54B4B;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 16px;
      text-align: center;
      padding-bottom: 3px;
    }
    @media (max-width: 1200px) and (min-width: 320px) {
  .display-none-inmobile {
    display: none !important;
  }
}
 .header-bg3 {
      background: black;
    }

    .line-height{
      line-height: 50px;
    }
.fs-30{
  font-size: 30px;
  font-weight: 700;
}
.paragraph-stylings5{
  font-size: 30px;
  font-weight: 300;
  line-height: 40px;
}
.fs-purple{
  font-size: 24px;
  font-weight: 600;
}
.navmenu a.active {
  color: var(--accent-color) !important; /* or your highlight color */
}






