/* Fonts */
:root {
  --default-font: "Open Sans",  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: "Montserrat",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* 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: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #333; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #32353a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff8c24; /* 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: #3a3939;  /* The default color of the main navmenu links */
  --nav-hover-color: #ff8c24; /* 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: #3a3939; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff8c24; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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;
  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);
}

/* PHP Email Form Messages
------------------------------*/

h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}


@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# 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;
  margin-left: 60px; /* Adjust this value to control how far right the logo moves */
}

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

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

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

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

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@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;
  }
}

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

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.5);
  --nav-hover-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #32353a;
  --nav-color: #3a3939;
  --nav-hover-color: #ff8c24;
}


/*--------------------------------------------------------------
# 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: 4px;
    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: -90%;
    visibility: hidden;
  }

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

/* Navmenu - Mobile */

@media (max-width: 768px) {
  .mobile-nav-toggle {
    position: absolute;
    top: 35px !important; /* Adjust the distance from the top */
    right: 15px; /* Adjust the distance from the right */
    font-size: 28px; /* Icon size */
    color: var(--nav-color); /* Match the navigation color */
    z-index: 9999; /* Ensure it appears above other elements */
    cursor: pointer;
    transition: color 0.3s ease-in-out;
  }

  .mobile-nav-toggle:hover {
    color: var(--nav-hover-color); /* On hover, change to the hover color */
  }
}

@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 auto 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), 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);
    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 .logo .sitename::after {
  content: ".";
  color: #ff8c24; /* Orange from the logo */
}

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

.footer .footer-top {
  padding-top: 50px;
}

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

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

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

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

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

.footer .social-links a:hover {
  color: var(--accent-color);
  border-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 {
  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: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

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

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

.footer .copyright {
  padding-top: 10px;
  padding-bottom: 10px;
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  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;
  font-size: 16px;
  font-weight: 600;
}

.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: 98px;
  overflow: clip;
}


@media (max-width: 1199px) {

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

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

.section-title h1 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h1:before,
.section-title h1:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}
.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h1:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title-dot {
  color: var(--accent-color);
}

.section-title h1:after {
  margin: 0 0 10px 15px;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Service Hero Section
--------------------------------------------------------------*/

#header {
  display: none; /* Hides the header but keeps it in the DOM */
}

.servicehero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

    opacity: 1 !important;
    visibility: visible !important;
  
  
}

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

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

.servicehero h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
}

.servicehero h1 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
}

.servicehero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 5px 0 0 0;
  font-size: 20px;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 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 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
}

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

.hero .sign-up-form {
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--default-color) 5%, white 90%);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  display: flex;
}

.hero .sign-up-form input[type=email] {
  background-color: transparent;
  border: 0;
  padding: 4px 10px;
  width: 100%;
}

.hero .sign-up-form input[type=email]:focus-visible {
  outline: none;
}

.hero .sign-up-form input[type=submit] {
  border: 0;
  box-shadow: none;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 8px 20px 10px 20px;
  border-radius: 7px;
  color: var(--contrast-color);
  transition: 0.3s;
}

.hero .sign-up-form input[type=submit]:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

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

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

/*--------------------------------------------------------------
# partners Section
--------------------------------------------------------------*/
.slider{
  width: 100%;
  height: var(--height);
  overflow: hidden;
  mask-image: linear-gradient(
      to right,
      transparent,
      #000 10% 90%,
      transparent
  );
  display: flex;
  align-items: center;
}
.slider .list{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: max-content;
  gap:40px;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}
.slider .list .item{
  width: var(--width);
  height: var(--height);
  position: absolute;
  justify-content: center;
  padding: 5px;
  left: 100%;
  animation: autoRun 30s linear infinite;
  transition: filter 0.5s;
  animation-delay: calc( (30s / var(--quantity)) * (var(--position) - 1) - 30s)!important;
}
.slider .list .item img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes autoRun{
  from{
      left: 100%;
  }to{
      left: calc(var(--width) * -1);
  }
}
.slider:hover .item{
  animation-play-state: paused!important;
  filter: grayscale(1);
}
.slider .item:hover{
  filter: grayscale(0);
}
.slider[reverse="true"] .item{
  animation: reversePlay 10s linear infinite;
}
@keyframes reversePlay{
  from{
      left: calc(var(--width) * -1);
  }to{
      left: 100%;
  }
}

/*--------------------------------------------------------------
# Approach / Stages Section
--------------------------------------------------------------*/


#approach {
  padding-top: 10px; /* Reduce space above */

}


#approach{
  height:550px;
}

.line-wrapper {
  position: relative;
  width: 100%;
  height: 320px; /* Allows more spacing */
}

.stages {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 30px; /* Controls gap - reduce if needed */
}

.stage {
  flex: 1;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s ease-out, transform 0.2s ease-out;
  opacity: 1; /* Ensure all are visible */
  padding-right:30px ;
}

/* Title & Text Container */
.stage-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

/* Stage Titles */
.stage-title {
  font-size: 18px;
  font-weight: bold;
  color: #999; /* Default black */
  transition: color 0.3s ease-out;
  display: inline-block;
}

/* Active and Hover Effects */
.stage.active .stage-title,
.stage:hover .stage-title {
  color: #ff8c24 !important; /* Orange */
}

.stage-number {
  color: white;
  font-size: 14px;
  font-weight: bold;
  margin-top: 15px;
}

/* Stage Descriptions */
.stage-description {
  font-size: 14px;
  color: black;
  margin-top: 5px;
  text-align: left;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.stage:hover .stage-description {
  opacity: 1;
  transform: translateY(0);
}

/* Progress Bar */
.progress-container {
  position: relative;
  width: 100%;
  height: 24px;
}

.progress-track {
  width: 100%;
  height: 24px;
  background-color: #61605F;
  border-radius: 12px;
  position: absolute;
}

.progress-bar {
  position: absolute;
  height: 100%;
  background-color: #ff8c24;
  border-radius: 12px;
  transition: left 0.4s ease-out, width 0.4s ease-out;
}

.progress-bar {
  background: linear-gradient(90deg, #ff8c24, #e65100);
  animation: fillProgress 2s ease-in-out forwards;
}

/* Default: Hide Titles & Descriptions */
.stage .stage-title,
.stage .stage-description {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s;
}

.stage .stage-title, 
.stage .stage-description {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0px) !important;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}



/* Progress Bar Hover - Keep Active Title Visible */
.progress-container:hover ~ .stages .stage.active .stage-title {
  opacity: 1 !important;
  transform: translateY(0) !important;
  display: block !important;
}

/* Ensure Only Active Stage is Orange */
.stage:not(.active) .stage-title {
  color: black !important;
}

.stages:hover .stage {
  color: #a02727; /* Light black color */
}

.stages:hover .stage:hover {
  color: black !important; /* Fully black on hover */
}


.stages:hover .stage:hover {
  opacity: 1; /* Keep the hovered stage fully visible */
}

/*--------------------------------------------------------------
# Interactive bar Section
--------------------------------------------------------------*/

.bar-graph-section {
  max-width: 90%;
  margin: auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.graph-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.bar-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.icon {
  font-size: 24px;
  color: #ff8c24;
  min-width: 30px;
}

.bar-label {
  flex: 1;
  font-size: 16px;
  color: #333;
}


.bar {
  position: relative;
  flex-grow: 1;
  height: 30px;
  background: #ddd;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.bar-fill {
  position: absolute;
  height: 100%;
  background: linear-gradient(90deg, #f57c00, #e65100);
  transition: width 1.5s ease-in-out;
  width: 0; /* Start at 0% width */
  display: block;
}

.bar-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  color: white;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.5s ease-in-out;
}


.bar-link {
  display: block;
  width: 40%; /* Ensures the bar doesn't stretch wider than intended */
  text-decoration: none; /* Removes default link underline */
}



.bar:hover {
  transform: scale(1.02); /* Slight zoom effect on hover */
}



/* Hover Effect */
.bar-container:hover .bar-fill {
  background: linear-gradient(90deg, #ff5e00, #ff2a00);
}

.bar-container:hover::after {
  content: attr(title);
  position: absolute;
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 5px;
  border-radius: 5px;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  white-space: nowrap;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .icon-box p, 
.about .icon-box h3, 
.about .icon-box h5 {
  color: var(--default-color) !important; /* Ensures the text retains default color */
}

.about .icon-box:hover p, 
.about .icon-box:hover h3, 
.about .icon-box:hover h5 {
  color: var(--default-color) !important; /* Prevents color change on hover */
}


.about .icon-box {
  transition: border 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border: 2px solid transparent; /* Default no border */
  padding: 30px;
  border-radius: 10px;
}

.about .icon-box:hover {
  border: 2px solid var(--accent-color); /* Orange border on hover */
  box-shadow: 0 0 10px rgba(255, 140, 36, 0.4); /* Subtle shadow effect */
}


.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}


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

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding:50px 30px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  margin-bottom: -50px;
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .container {
  padding: 20px; /* Example: Adjust top-bottom and left-right padding */
}

.about .row {
  padding: 5px 0; /* Top and bottom padding */
}

.about .icon-box h5 {
  font-size: 14px; /* Smaller font size */
  font-weight: 400; /* Light font weight */
  color: #a0a0a0; /* Light gray color */
  margin-bottom: 10px; /* Spacing between h5 and icon */
  margin-top: -30px;
  display: block; /* Ensure it spans the full width above the icon */
  text-transform: uppercase; /* Optional: Add uppercase for better visibility */
  text-align: center; /* Center-align the text */
}

.about .icon-box i {
  
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  width: 40px; /* Smaller icon size */
  height: 40px; /* Smaller icon size */
  margin-right: 10px; /* Space between icon and h3 */
  margin-bottom: 0; /* Align with h3 */
  font-size: 20px; /* Adjust font size */
  line-height: 1; /* Align with text */
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  display: inline-flex; /* Align h3 and icon horizontally */
  align-items: center; /* Center align h3 with the icon */
  margin-bottom: 10px; /* Keep existing spacing below */
  font-size: 20px; /* Reduce h3 font size */
  font-weight: 700; /* Retain current font weight */
}

.about .icon-box p {
  margin-bottom: -20px;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  position: relative;
  padding: 120px 0;
}

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

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

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

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--default-color);
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.research .service-item {
  position: relative;
  padding-top: 40px;
}

.research .service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}


.research .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-right: 50px;
  line-height: 0;
}

.research .service-item .icon i {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.research .service-item .icon:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50px;
  z-index: 1;
  bottom: -15px;
  right: -15px;
  transition: 0.3s;
}

.research .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.research .service-item .title a {
  color: var(--heading-color);
}

.research .service-item .title a:hover {
  color: var(--accent-color);
}

.research .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

.custom-list div {
  display: flex;
  align-items: flex-start; /* Align icon with text */
  margin-bottom: 10px; /* Space between lines */
}

.custom-list i {
  margin-right: 8px; /* Space between icon and text */
  color: green; /* Optional: Set color for check mark */
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/

.case_studies-item .read-more {
  background-color: #ff8c24; /* Red background color */
  color: #ffffff; /* White text */
  padding: 10px 20px; /* Balanced padding */
  border: none; /* Remove any border */
  border-radius: 5px; /* Smooth edges */
  text-transform: uppercase; /* Capitalize text */
  font-size: 14px; /* Set font size */
  font-weight: 600; /* Bold text */
  display: inline-block; /* Proper button behavior */
  text-align: center; /* Align text */
  text-decoration: none; /* Remove underline */
  transition: background-color 0.3s ease; /* Smooth hover */
}

.case_studies-item .read-more:hover {
  background-color: #c73434; /* Darker red on hover */
  color: #ffffff; /* Keep white text */
}

.case_studies-item .image-stack img {
  max-width: 100%; /* Prevent overflow */
  height: auto; /* Maintain aspect ratio */
  max-height: 300px; /* Limit the image height */
  object-fit: cover; /* Crop image if necessary to fit within the dimensions */
}


.case_studies .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.case_studies .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.case_studies .nav-item:last-child {
  padding-right: 0;
}

.case_studies .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .case_studies .nav-link {
    padding: 8px 20px;
  }
}

.case_studies .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.case_studies .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.case_studies .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.case_studies .nav-link:hover h4 {
  color: var(--accent-color);
}

.case_studies .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.case_studies .nav-link.active h4 {
  color: var(--contrast-color);
}

.case_studies .tab-content {
  margin-top: 30px;
}

.case_studies .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.case_studies .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.case_studies .tab-pane ul {
  list-style: none;
  padding: 0;
}

.case_studies .tab-pane ul li {
  padding-top: 10px;
}

.case_studies .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.case_studies .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/

/* Move images to right and add padding/border */
.case_studies-img-wrapper {
  border: 1px solid #fff; /* White border around images */
  padding: 5px; /* Inner padding */
  background-color: #fff; /* Ensure background stays white */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  max-width: 80%; /* Prevent overflow */
}

.case_studies-img-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover; /* Maintain proportions */
}

/* Adjust layout for spacing */
.case_studies-item {
  margin-bottom: 40px; /* Add spacing between case study items */
}

.case_studies-cards {
  --default-color: #555;
  --heading-color: #333;
}

.case_studies-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.case_studies-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.case_studies-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.case_studies-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.case_studies-cards .feature-box.orange {
  background-color: #fff3e2;
}

.case_studies-cards .feature-box.orange i {
  color: #edb86e;
}

.case_studies-cards .feature-box.blue {
  background-color: #deedfd;
}

.case_studies-cards .feature-box.blue i {
  color: #20a5f8;
}

.case_studies-cards .case_study-box.green {
  background-color: #d5f1e4;
}

.case_studies-cards .case_study-box.green i {
  color: #48c88a;
}

.case_studies-cards .case_study-box.red {
  background-color: #fdeded;
}

.case_studies-cards .case_study-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.case_studies-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.case_studies-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.case_studies-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.case_studies-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.case_studies-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.case_studies-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .case_studies-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .case_studies-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .case_studies-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/* Make the dot in 'Intellimark.' in the hero section orange */
#hero h2::after {
  content: ".";
  color: #F58025; /* Replace with the exact orange from your logo */
}

#hero h1::after {
  content: ".";
  color: #F58025; /* Replace with the exact orange from your logo */
}


/*--------------------------------------------------------------
# Statistics  Section
--------------------------------------------------------------*/
.statistics.section {
  padding-top: 20px; /* Reduced from default */
  margin-bottom: -60px; /* Reduced from default */
}

.statistics .row {
  display: flex;
  justify-content: space-between; /* Evenly distribute the items */
  flex-wrap: nowrap; /* Prevent wrapping */
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
  gap: 20px;
}

.statistics .statistics-item {
  flex: 1 1 22%;
  text-align: left;
  margin: 20px 0;
}

.statistics .title {
  position: relative;
  margin-bottom: 15px;
  padding-top: 5px;
}

.statistics .title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color, #d32f2f);
}

.statistics .title h4 {
  font-size: 2.5rem; /* Updated from 3rem */
  font-weight: bold;
  margin: 10px 0;
  color: #1a1a1a;
}

.statistics .description {
  font-size: 1rem; /* Updated from 1.2rem */
  color: #555;
  line-height: 1.5;
  max-width: 90%;
}

/* Make it responsive on smaller screens */
@media (max-width: 992px) {
  .statistics .row {
    flex-wrap: wrap;
  }

  .statistics .statistics-item {
    flex: 1 1 45%; /* Two per row on medium devices */
  }
}

@media (max-width: 576px) {
  .statistics .statistics-item {
    flex: 1 1 100%; /* Stack on small devices */
  }
}



/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.analytics .analytics-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.analytics .analytics-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}



.analytics-item .content {
  display: flex;
  flex-direction: column; /* Stack title and description */
}

.analytics .analytics-filters li:hover,
.analytics .analytics-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.analytics .analytics-filters li:first-child {
  margin-left: 0;
}

.analytics .analytics-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .analytics .analytics-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.analytics-item {
  background-color: #ffffff; /* Keep the box white */
  padding: 20px; /* Add padding for a clean layout */
  border-radius: 10px; /* Smooth corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: all 0.3s ease; /* Smooth transition */
  border: 1px solid transparent; /* Invisible border initially */
}

.analytics-item .top-row {
  display: flex;
  align-items: center;
  gap: 15px; /* Space between icon and title */
}

.analytics-item .icon {
  font-size: 36px; /* Size of the icon */
  color: var(--accent-color); /* Your accent color */
  display: flex;
  align-items: center; /* Ensure the icon aligns vertically */
  justify-content: center;
  transition: color 0.3s ease; /* Smooth transition for icon color */
}

.analytics-item:hover .title,
.analytics-item:hover .icon,
.analytics-item:hover .icon i {
    color: var(--accent-color);
    transition: color 0.2s ease-in-out;
}



.analytics-item .description {
  font-size: 14px;
  color: var(--default-color); /* Define your default text color */
  line-height: 1.5; /* Improve readability */
  margin-top: 10px; /* Space between title and description */
}



.analytics-item .content {
    display: flex;
    flex-direction: column; /* Stack title and description */
}



.analytics-item .description {
    font-size: 14px; /* Description font size */
    color: var(--default-color); /* Use default text color */
    margin-top: 5px; /* Add spacing above description */
    line-height: 1.5; /* Improve readability */
}
  
 
    .analytics .analytics-item .icon i {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 26px;
        transition: ease-in-out 0.3s;
        z-index: 2;
        position: relative;
    }

  

    .analytics-item .title {
      color: var(--heading-color); /* Keep title consistent */
      font-weight: 700; /* Bold text for title */
      transition: color 0.3s ease; /* Smooth transition for color */
  }

  .analytics-item:hover .title {
    color: var(--accent-color); /* Change title color on hover */
}

.analytics-item:hover .description {
  color: var(--default-color); /* Make text fully visible on hover */
}

.analytics-item .content {
    display: flex;
    flex-direction: column; /* Stack title and description */
}

.analytics-item:hover .icon {
  color: #ff8c24; /* Change icon color to red on hover */
  transition: color 0.3s ease; /* Smooth transition for icon color change */
}

.analytics-item:hover .icon i {
  color: var(--accent-color); /* Make the icon red (uses the defined accent color) */
}

.analytics-item .icon {
  color: var(--default-color); /* Default icon color */
  font-size: 36px; /* Icon size */
  display: flex;
  align-items: center; /* Align vertically */
  justify-content: center;
  transition: color 0.3s ease; /* Smooth transition for hover effect */
}

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

.image-container img {
  display: block;  /* Ensures the image fills the container */
  width: 100%;     /* Makes the image responsive */
}

.image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(128, 128, 128, 0.5); /* Gray overlay with 50% transparency */
  pointer-events: none;  /* Allows interaction with the image beneath */
}


.analytics .analytics-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold; /* Bold title */
  margin: 0; /* Remove extra spacing */
}

.analytics .analytics-item .title a {
  color: var(--heading-color);
}

.analytics .analytics-item .title a:hover {
  color: var(--accent-color);
}

.analytics .analytics-item .description {
  line-height: 24px;
  font-size: 14px;
}

.analytics .analytics-item .analytics-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.analytics .analytics-item .analytics-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.analytics .analytics-item .analytics-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.analytics .analytics-item .analytics-info .preview-link,
.analytics .analytics-item .analytics-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.analytics .analytics-item .analytics-info .preview-link:hover,
.analytics .analytics-item .analytics-info .details-link:hover {
  color: var(--accent-color);
}

.analytics .analytics-item .analytics-info .details-link {
  right: 14px;
  font-size: 28px;
}

.analytics .analytics-item:hover .analytics-info {
  opacity: 1;
  bottom: 0;
}
.analytics-item:hover .icon {
  color: var(--accent-color); /* Make the icon red (accent color) on hover */
}

.analytics-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* More pronounced shadow on hover */
  border: 1px solid var(--accent-color); /* Accent-colored border on hover */
  transform: translateY(-5px); /* Slight lift effect */
}
#preloader {
  display: none !important;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: #fff;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.pricing.section {
  margin-top: -80px;
}


/* Icon now positioned to the left of title */
.offer-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-align: left;
  padding-left: 10px;
}

.offer-header .icon-left {
  font-size: 24px; 
  color: var(--accent-color);
}

/* Description styling */
.pricing .offer-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* Offer Table */
.offer-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin-top: 15px;
}

.offer-table tr {
  border-bottom: 1px solid #ddd;
}

.offer-table td {
  padding: 12px;
  vertical-align: middle;
}

/* Icons inside the table */
.offer-table td i {
  color: var(--accent-color);
  font-size: 18px;
}

/* Links */
.offer-table td a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.offer-table td {
  font-size: 14px; /* Make content more compact */
}

.offer-table td a:hover {
  color: var(--accent-color);
}

/* Reduce Orange Overload */
.offer-table td:first-child i {
  color: var(--accent-color); /* Only icons in first column get color */
}

.offer-table td:nth-child(2) a {
  color: #333; /* Keeps titles neutral */
}

.offer-table td:nth-child(3) {
  color: #666; /* Keeps descriptions soft */
}


@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

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

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

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  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-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 .member {
  position: relative;
}

.team .member .member-img {
  width: 150px; /* Adjust to desired size */
  height: 150px; /* Ensure the aspect ratio is maintained */
  margin: 0 auto; /* Center the image */
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 4px solid var(--background-color);
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--accent-color);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Service - overlaying title
--------------------------------------------------------------*/
.overlay-content {
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
}
.overlay-content h1 {
  font-size: 36px;
  font-weight: 700;
}
.overlay-content p {
  font-size: 18px;
  line-height: 1.5;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .info h3 {
  font-weight: 700;
  font-size: 32px;
}

.testimonials .swiper {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--surface-color);
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin: 30px;
}


.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  margin-right: 10px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
  border: none;
}

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

@media (max-width: 767px) {

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    margin: 15px;
  }
}


/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 50px;
  margin-bottom: -40px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

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

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

.recent-posts .title a {
  color: var(--heading-color);
  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;
}

/*--------------------------------------------------------------
# Case Study Hover 
--------------------------------------------------------------*/
/* Case Study Hover Effect */
.case-study-item {
  transition: transform 0.3s ease-in-out, border 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border: 2px solid transparent;
  border-radius: 10px;
  background: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block;
  text-decoration: none;
}

/* Hover Effect */
.case-study-item:hover {
  transform: scale(1.05);
  border: 2px solid var(--accent-color);
  box-shadow: 0 0 15px rgba(255, 140, 36, 0.4);
}

/* Ensures the text inside is not affected */
.case-study-item h2, 
.case-study-item p {
  color: var(--default-color);
}

/* Prevent title links from changing color on hover */
.case-study-item h2 a {
  color: inherit;
  text-decoration: none;
}

/* Slight color change on hover for the title */
.case-study-item h2 a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Case Study Results 
--------------------------------------------------------------*/


.results-container {
  max-width: 1200px;
  width: 100%;
}

.results {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 20px 0;
  gap: 20px;
}

.results .column {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  background: white;
}

/* Divider line between columns */
.results .column:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 2px;
  background-color: black;
}

.results .column h3 {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 8px;
}

.results .column p {
  font-size: 0.9em;
  color: #444;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .results {
      flex-wrap: wrap;
  }
  .results .column {
      flex: 50%;
      padding-bottom: 15px;
  }
  .results .column:not(:last-child)::after {
      display: none;
  }
}

@media (max-width: 768px) {
  .results {
      flex-direction: column;
      border-top: none;
      border-bottom: none;
  }
  .results .column {
      flex: 100%;
      padding: 15px 0;
  }
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.info-item {
  min-height: 200px; /* Adjust based on content */
  padding: 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

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

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
#Project Information Grid
--------------------------------------------------------------*/

/* Ensure the Grid Container Uses Flexbox for Proper Alignment */
.grid-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 20px;
  border-radius: 10px;
}

/* Left Column for Axis Titles */
.axis-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin-right: -100px;
  margin-left: 60px;
}


/* Axis Titles */
.axis-title {
  writing-mode: vertical-rl;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  transform: rotate(180deg);
}

.axis-title:first-child {
  margin-top: 40px; /* Push it down */
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Adjusted from 5 to 4 for proper spacing */
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: auto;
}

/* Grid Items */
.grid-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 180px; /* Slightly reduced height */
  padding: 15px;
  border: 1px solid black;
  position: relative;
  overflow: hidden;
}

/* Titles inside grid items */
.grid-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Descriptions inside grid items */
.grid-item p {
  font-size: 14px;
  position: absolute;
  bottom: -30%;
  left: 50%;
  width: 80%;
  text-align: center;
  transform: translate(-50%, 0);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  z-index: 1;
}

/* Fix Borders for a Proper Grid */
.grid-item:nth-child(-n+4) {
  border-top: none;
}

.grid-item:nth-child(4n+1) {
  border-left: none;
}

.grid-item:nth-child(4n) {
  border-right: none;
}

.grid-item:nth-last-child(-n+4) {
  border-bottom: none;
}

/* Hover Effect */
.grid-item:hover h3 {
  transform: translateY(-60px); /* Moves title up */
  color: #ff8c24; /* Change text color on hover */
}

.grid-item:hover p {
  transform: translate(-50%, -50px); /* Moves paragraph up */
  opacity: 1;
}

/* Smooth Return */
.grid-item:not(:hover) h3,
.grid-item:not(:hover) p {
  transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
}


/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

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

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 16px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 30px 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}
.custom-check-list i.bi-check-circle {
  color: green; /* Apply green color to check icons */
  margin-right: 8px; /* Space between icon and text */
}

.custom-check-list {
  margin: 0; /* Remove list-level margins */
  padding: 0; /* Remove padding */
}

.custom-check-list div {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.custom-check-list i {
  margin-right: 8px; /* Space between icon and text */
  color: green; /* Green color for check marks */
}

.custom-check-list span {
  margin: 0; /* Align text properly */
}



/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .research-list {
  background-color: var(--surface-color);
}

.service-details .research-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .research-list a:first-child {
  margin-top: 0;
}

.service-details .research-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .research-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .research-list a.active i {
  color: var(--contrast-color);
}

.service-details .research-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .research-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

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

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

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

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

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

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

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
}


.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}


/*--------------------------------------------------------------
# Mobile & tables
--------------------------------------------------------------*/

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

@media (max-width: 1199px) {
  .navmenu {
    display: flex;
    justify-content: flex-end; /* Aligns the nav items to the far right */
    width: 100%;
  }

  .navmenu li {
    margin-left: 15px; /* Space between menu items */
  }
}

@media (max-width: 1199px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
  }

  .navmenu {
    order: 3;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    position: absolute;
    top: 50%; /* Centers it vertically */
    right: 15px; /* Adjust distance from the right */
    transform: translateY(-50%); /* Ensures perfect centering */
    font-size: 28px; /* Icon size */
    color: var(--nav-color);
    z-index: 9999;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
  }
}

@media (max-width: 768px) {
  .service-item, .card {
    margin-bottom: 55px; /* Adds space between each card */
    padding: 25px; /* Ensures internal spacing */
  }
}
@media (max-width: 768px) {
  .icon-box {
    margin: 60px auto; /* Adds vertical spacing and centers */
    text-align: center; /* Ensures all content is centered */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .icon-box p {
    margin-bottom: 15px; /* Adds spacing below text */
  }

  .icon-title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .icon-box i {
    font-size: 32px; /* Makes the icons more prominent */
    margin-bottom: 10px; /* Adds spacing below the icon */
  }

  .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px; /* Space between text and lines */
    position: relative;
  }

  .section-title h2:before,
  .section-title h2:after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    flex-shrink: 0;
    position: relative;
    top: 2px; /* Lower the lines slightly */
  }
}

@media (max-width: 768px) {
  .member {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers everything inside */
    text-align: center; /* Ensures text is centered */
  }

}

@media (min-width: 768px) {
  .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start; /* Ensures alignment to the top */
      width: 100%;
  }

  .footer-about {
      flex: 2; /* Makes this section larger */
      max-width: 40%;
  }

  .footer-links-wrapper {
      flex: 1;
      display: flex;
      justify-content: space-around;
      gap: 20px; /* Adds spacing between sections */
      max-width: 60%;
  }

  .footer-links {
      flex: 1;
      min-width: 150px; /* Prevents them from collapsing */
  }
}


@media (min-width: 769px) {
  .toggle-btn {
      display: none !important; /* Hide button on tablets and larger screens */
  }
}


.cookie-success-banner {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #198754;
  color: white;
  padding: 18px 32px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  font-weight: 600;
  font-size: 16px;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
}


.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 920px;
  width: calc(100% - 40px);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-family: var(--default-font);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cookie-banner p {
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--accent-color);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
  font-family: var(--default-font);
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.btn-outline-secondary {
  border: 1px solid #ccc;
  background-color: transparent;
  color: var(--default-color);
}

.btn-outline-secondary:hover {
  background-color: #f1f1f1;
}


.btn-orange {
  background-color: #f97316; /* Tailwind orange-500 */
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-orange:hover:not(:disabled) {
  background-color: #ea580c; /* Darker orange */
}

.btn-orange:disabled {
  background-color: #fde7d4; /* light faded orange */
  color: #b45309; /* muted text */
  cursor: not-allowed;
}


.careers-intro {
  max-width: 800px;
  margin: 60px auto 40px;
  text-align: center;
}

.open-roles {
  max-width: 800px;
  margin: auto;
  padding: 0 20px 60px;
}

.job-listing {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.job-listing h3 {
  margin-top: 0;
  color: var(--accent-color);
}

.job-listing p {
  margin-bottom: 10px;
}

.careers-page #header {
  display: block;
}

.careers-page .navmenu a {
  color: #ffffff !important;
}

.careers-page .navmenu a:hover {
  color: #f97316; /* your orange accent */
}


#about .section-title {
  margin-top: -40px;
  margin-bottom: 40px;
}

#privacy-policy {
  font-size: 16px;
  line-height: 1.5;
}

#privacy-policy ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

#privacy-policy li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
  list-style-type: disc;
}

#privacy-policy h3,
#privacy-policy h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

#privacy-policy p {
  margin-bottom: 1rem;
}

#mission {
  margin-top: -50px;
}

#mission .section-title h2 {
  font-weight: 700;
  margin-bottom: 30px;
}

#mission .mission-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

#mission .mission-content p {
  margin-bottom: 1.5rem;
}

#mission .mission-content .lead {
  font-size: 1.25rem;
  color: #111;
}


/* Keep sections consistent */
.impact, .execution-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  background: none;
}


.card-wrapper {
  flex: 1 1 25%;
  max-width: 300px;
  position: relative;
  width: 300px;
  height: 240px;
  clip-path: polygon(
    0% 0%,
    calc(100% - 30px) 0%,
    100% 30px,
    100% 100%,
    0% 100%
  );
  border-radius: 16px;

}

.card-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(
    260px circle at var(--mouse-x) var(--mouse-y),
    var(--accent-color),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card-wrapper.active-glow::after {
  opacity: 1;
}



.card {
  font-family: var(--default-font); /* Uses Open Sans, matching the rest */
  font-size: 16px;
  line-height: 1.6;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  color: black;
  padding: 24px;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid var(--accent-color);
}


.card::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(
    260px circle at var(--mouse-x) var(--mouse-y),
    var(--accent-color),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 3px;
  box-sizing: border-box;
}

.card.active-glow::after {
  opacity: 1;
}

.card h2, .card h3 {
  font-family: var(--heading-font); /* Matches other headings */
}

.card h2 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 1rem;
}

.divider {
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
  margin: 10px 0 20px 0;
}

.border-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.border-svg path {
  stroke: rgba(255, 255, 255, 0.2);
  fill: none;
  stroke-width: 1.5;
}

@media (max-width: 1200px) {
  .impact {
    flex-wrap: wrap;
    justify-content: center;
  }

  .card-wrapper {
    flex: 1 1 calc(50% - 24px);
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .card-wrapper {
    flex: 1 1 100%;
  }
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 0 auto;
  max-width: 1300px;
}

.header-section {
  position: relative;
  text-align: center;
  margin: 100px auto 0;
}

#methodology .header-section {
  margin-bottom: 0;
}

#methodology {
  padding-bottom: 0 !important;
  margin-bottom: -250px;
}


#svg-stage {
  max-width: 800px;
  overflow: visible;
  margin: 50px auto 0;
  display: block;
  transform: translateX(-100px);
  margin-bottom: 0;
  height:auto;
}


.ball {
  fill: #ff8c24;
  visibility: hidden;
}

.line {
  fill: none;
  stroke: #ff8c24;
  stroke-width: 2px;
}

.label {
  fill: var(--heading-color); /* dark gray */
  font-size: 16px;
  font-family: var(--heading-font);
  line-height: 1.6;
  font-weight: 700;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.06);

}

.desc {
  fill: var(--default-color); /* black */
  font-family: var(--default-font);
  font-weight: 400;
  visibility: hidden;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 1rem;
}


.analytics-filters li {
  border: 1px solid var(--accent-color);
  border-radius: 30px;
  padding: 8px 20px;
  margin: 5px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--heading-font);
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.analytics-filters li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.analytics-filters li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.pricing.section {
  font-size: 14px;
  padding: 50px 0;
  background-color: #f9f9f9;
}

.pricing.section .container {
  max-width: 92%;
}

.pricing.section .row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.pricing.section .pricing-item {
  min-width: 320px;
}

.pricing.section .col-lg-4 {
  flex: 1;
  max-width: 33%;
  min-width: 350px;
}


@media (max-width: 767px) {
  .header .logo {
    margin-left: 15px !important;
  }
}

@media (max-width: 767px) {
  /* Restructure footer layout */
  .footer .footer-top .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer .footer-about {
    flex: 1 1 100%;
    text-align: left;
    margin-bottom: 20px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    flex: 1 1 45%;
    text-align: left;
  }

  /* Styling for visual grouping */
  .footer .footer-contact {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 15px;
  }

  .footer .footer-links h4,
  .footer .footer-contact h4 {
    font-size: 16px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 6px;
  }

  .footer .footer-links ul li {
    padding: 6px 0;
  }

  .footer .footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .footer .social-links {
    justify-content: center;
    margin-bottom: 20px;
  }

  .footer .social-links a {
    margin: 0 6px;
  }

  .footer .copyright p {
    font-size: 12px;
    text-align: center;
    padding: 12px 0 6px;
    border-top: 1px solid #e0e0e0;
    margin-top: 20px;
  }

  .footer .credits {
    text-align: center;
    font-size: 12px;
    margin-top: 5px;
  }
}

@media (max-width: 767px) {
  /* Center rows and cards */
  .impact .row.justify-content-center,
  .execution-section .row.justify-content-center {
    justify-content: center !important;
  }

  /* Wrapper spacing and alignment */
  .impact .card-wrapper,
  .execution-section .card-wrapper {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -40px;
    max-width: 100%;
  }



  /* Card padding and alignment */
  .impact .card,
  .execution-section .card {
    text-align: center;
    padding: 16px 14px 12px 14px;
  }

  /* Heading-to-row spacing */
  .impact .container > .row:first-child,
  .execution-section .container > .row:first-child {
    margin-bottom: 10px;
  }

  /* Row and column spacing */
  .impact .row.gy-4,
  .execution-section .row.gy-4 {
    row-gap: 12px;
    margin-bottom: 0;
  }

  .impact .col-lg-3.col-md-6,
  .execution-section .col-lg-3.col-md-6 {
    margin-bottom: 10px !important;
  }

  /* Card title styling */
  .impact .card h3,
  .execution-section .card h3 {
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.4px;
    margin-bottom: 0;
  }

  /* Divider styling */
  .impact .card .divider,
  .execution-section .card .divider {
    margin: 8px auto 12px auto;
    display: block;
    width: 40px;
    height: 2px;
    background-color: #ff8c24;
  }

  /* Paragraph spacing inside cards */
  .impact .card p,
  .execution-section .card p {
    text-align: center;
    line-height: 1.6;
    margin-bottom: 0;
  }

  /* Optional: support for h5 if used elsewhere */
  .impact .card h5,
  .execution-section .card h5 {
    margin-bottom: 8px;
  }
}

@media (max-width: 767px) {
  .ball01 {
    transform: translateY(400px); /* Adjust to move it lower */
  }
}

@media (max-width: 767px) {
  #servicehero .container {
    padding: 80px 24px 40px 24px;
  }

  #servicehero h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
  }


  #servicehero p,
  #description p {
    font-size: 16px;
    line-height: 1.6;
  }

  #description .container {
    padding: 60px 24px 40px 24px;
  }

  #description h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: -20px;
    margin-top: -40px;

  }
}

/* Full-width container with responsive padding */
.container {
  max-width: 100% !important;
  padding: 0 2rem !important;
}

/* Impact grid layout */
.impact .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

/* Default: 4 cards per row on large screens */
.impact .col-lg-3.col-md-6 {
  flex: 1 1 calc(25% - 2rem);
  max-width: calc(25% - 2rem);
  box-sizing: border-box;
}

/* Font scaling with clamp */
.impact .card h5 {
  font-size: clamp(1rem, 1.1vw, 1.2rem);
}

.impact .card p {
  font-size: clamp(0.85rem, 1vw, 1rem);
  line-height: 1.5;
}

/* Tablet: 2 cards per row */
@media (max-width: 1199px) {
  .impact .col-lg-3.col-md-6 {
    flex: 1 1 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
}

/* Mobile font tweaks */
@media (max-width: 991px) {
  .impact .card h5 {
    font-size: 1rem;
  }

  .impact .card p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* Mobile: full width per card */
@media (max-width: 767px) {
  .impact .col-lg-3.col-md-6 {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  #svg-stage-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.footer {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}


@media (max-width: 576px) {
  #methodology {
    margin-bottom: 1px; /* or use padding-bottom if needed */
    margin-top: -50px;
  }
}

@media (max-width: 576px) {
  #svg-stage .theLine {
    stroke-width: 2;
    stroke: var(--accent-color, #ff8c24);
  }

  #svg-stage text.label {
    font-size: 20px;
  }

  #svg-stage text.desc {
    font-size: 20px;
  }

  #svg-stage {
    transform: translateX(10px);
    margin-top: -20px;
  }

  .ball {
    r: 16;
  }
}

/* Shift service hero and description text more to the right */
.servicehero .col-lg-10,
#description .row {
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 576px) {
  #description .row,
  .servicehero .col-lg-10 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 576px) {
  .header .logo {
    margin-top: 15% !important;
  }
}

.section-title p {
  margin-top: 20px;
  margin-bottom: 30px;
}

.apple-title .text-content {
  padding-left: 140px;
  padding-right: 140px;
}

@media (max-width: 768px) {
  .apple-title .text-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.outline-button {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.outline-button:hover,
.outline-button:focus {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  outline: none;
  box-shadow: none;
}

/* Fix vertical spacing in About Us section */
#about .section-title {
  margin-bottom: 20px !important;
  padding-bottom: 0 !important;
}

#about .row.align-items-xl-center {
  margin-top: -20px; /* Pull cards closer */
}

#about .icon-box {
  margin-bottom: 0 !important; /* Prevent collapse padding conflict */
}


@media (max-width: 768px) {
  #about .section-title {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
    margin-bottom: 0 !important;
  }



  #about .row.align-items-xl-center.gy-5 {
    margin-top: -10px !important;
  }

  #about .icon-box {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }
}


.contact-us-btn {
  border: 2px solid var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: background-color 0.3s, color 0.3s;
}

.contact-us-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (min-width: 481px) and (max-width: 1024px) {
  .hero h1,
  .hero h2,
  .servicehero h1,
  .servicehero h2 {
    font-size: 36px;
  }

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

  .about .icon-box {
    padding: 40px 20px;
  }

  .about .icon-box h3 {
    font-size: 22px;
  }

  .about .icon-box p {
    font-size: 14px;
  }

  .pricing .pricing-item {
    padding: 30px;
  }

  .statistics .statistics-item {
    flex: 1 1 50%;
  }

  .analytics-item {
    padding: 20px;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 28px;
  }

  .case_studies .tab-pane h3 {
    font-size: 26px;
  }

  .case_studies .nav-link {
    padding: 10px 20px;
  }

  .case_studies .nav-link h4 {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .case-study-item:hover {
    box-shadow: none !important;
    border: none !important;
    transform: none !important;
  }
}

@media (min-width: 992px) {
  .pricing.section .row {
    gap: 4%;
  }

  .pricing.section .col-lg-6 {
    flex: 0 0 48%;
    max-width: 48%;
  }

  .pricing.section .pricing-item {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .pricing .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .pricing .pricing-item {
    min-width: 100%;
  }
}

.offer-title,
.offer-desc {
  text-align: left;
}


.offer-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 12px;
  align-items: start;
  border-bottom: 1px solid #eee;
  padding: 14px 0;
}

.offer-icon {
  grid-row: span 2;
  font-size: 22px;
  color: var(--accent-color);
  padding-top: 2px;
}

/* Fix icon vertical alignment */
.offer-icon i {
  display: block;
  margin-top: 20px;
}

/* Title + Description Block */
.offer-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
  color: #222;
  text-align: left;
}

.offer-title a {
  color: inherit;
  text-decoration: none;
}

.offer-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
  text-align: left;
}
.offer-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--heading-color); /* optional for uniformity */
}

.offer-description{
  text-align: left;
  padding-top:15px
}
::placeholder {
  color: #888;
}

.form-select option[disabled][selected] {
  color: #888;
}

/* Required field asterisk styling for placeholder clarity */
input[required]::placeholder,
textarea[required]::placeholder {
  content: "* ";
}

select[required] > option:disabled {
  color: #888;
}

/* Disabled submit button styling */
button.contact-us-btn:disabled,
button.contact-us-btn.disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

/* Visually indicate disabled state */
button.contact-us-btn:disabled,
button.contact-us-btn.disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

/* Placeholder hinting for required fields */
input[required]::placeholder,
textarea[required]::placeholder {
  color: #888;
}

/* Disabled select placeholder color */
.form-select option[disabled][selected] {
  color: #888;
}

#cookie-banner {
  position: fixed;
  bottom: -100vh; /* start offscreen */
  left: 0;
  width: 100%;
  transition: bottom 0.4s ease-in-out;
  z-index: 9999;
}

/* Show banner when ready */
#cookie-banner.visible {
  bottom: 0; /* slide into view */
}

h1, section h1, article h1 {
  font-size: 44px;
  font-weight: 700;
}

/* Global image settings to reduce layout shifts */
img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Hero background or full-width image */
.hero img,
.stats img,
.servicehero img {
  aspect-ratio: 16 / 9;
}

/* Team photos or cards */
img.img-fluid {
  aspect-ratio: 1 / 1; /* Square image */
  width: 100%;
  height: auto;
}

/* Cookie Banner Styling */
.cookie-banner {
  background-color: #ffffff;
  color: #000000;
  padding: 1rem;
  font-size: 14px;
  text-align: center;
  border-top: 2px solid var(--accent-color);
}

.cookie-banner a {
  color: #000000;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: var(--accent-color);
}

/* Buttons inside cookie banner */
.cookie-banner .btn {
  background-color: #ff8c24 !important;
  color: #ffffff !important;
  border: none !important;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0 0.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: var(--default-font);
}

.cookie-banner .btn:hover {
  background-color: #e67610 !important;
  color: #ffffff !important;
}

.cookie-banner .btn-outline-secondary {
  background-color: transparent !important;
  color: #000000 !important;
  border: none !important;
}

.cookie-banner .btn-outline-secondary:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}

/* Cookie Settings Modal Styling */
.cookie-setting-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  font-family: var(--default-font);
}

.cookie-setting-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-setting-header h6 {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.cookie-setting-description {
  margin: 0;
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.4;
}

/* Ensure cookie toggles are properly styled */
#cookieSettingsModal .form-check-input {
  background-color: #0d6efd !important;
  border-color: #0d6efd !important;
}

#cookieSettingsModal .form-check-input:checked {
  background-color: #0d6efd !important;
  border-color: #0d6efd !important;
}

#cookieSettingsModal .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

/* Success message z-index fix */
.swal-cookie-success {
  z-index: 10000 !important;
}

/* Make strictly necessary toggle look the same but non-interactive */
#cookie-strict {
  pointer-events: none !important;
  opacity: 1 !important;
  background-color: #0d6efd !important;
  border-color: #0d6efd !important;
}

/* Modal styling */
#cookieSettingsModal .modal-content {
  font-family: var(--default-font);
}

#cookieSettingsModal .modal-title {
  font-family: var(--heading-font);
  font-weight: 600;
}

/* Remove borders from modal buttons */
#cookieSettingsModal .modal-footer .btn {
  border: none !important;
}

#cookieSettingsModal .modal-footer .btn-secondary {
  background-color: #6c757d !important;
  color: #ffffff !important;
}

#cookieSettingsModal .modal-footer .btn-primary {
  background-color: #ff8c24 !important;
  color: #ffffff !important;
}

section h1,
article h1,
nav h1,
aside h1 {
  font-size: 44px;
}

#acceptCookies.btn {
  background-color: #ff8c24; /* brand orange */
  color: #000000; /* black text for contrast */
  font-weight: 600;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#acceptCookies.btn:hover {
  background-color: #e67610;
}

  .framework-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    transition: transform 0.2s ease;
  }

  .framework-card:hover {
    transform: translateY(-4px);
  }

  .framework-label {
    font-size: 13px;
    font-weight: 500;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: -10px;
  }

  .framework-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  .framework-header .icon img {
    width: 36px;
    height: 36px;
  }

  .framework-header .title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin: 0;
  }

  .framework-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: 90%;
    margin: 0 auto;
  }

  .framework-label {
  font-size: 13px;
  font-weight: 500;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: -10px;
  text-align: center;
}

.framework-label {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  transform: translateY(-30px);
  display: inline-block;
}


@media (max-width: 767px) {
  .framework-label {
    margin-top: 10px;
    margin-bottom:-20px !important;
  }
}

@media (max-width: 767px) {
   #recent-posts .col-md-6 {
    margin-bottom: 36px;
  }
}

@media (max-width: 767px) {
  .case-study-item .post-category {
    margin-left: -2rem !important;
  }
  .case-study-item .title {
    margin-left: -2rem !important;
    line-height: 1.5;
    margin-bottom: -30px;
  }
}

@media (min-width: 2560px) {
  html {
    font-size: 18px;
  }

  .container {
    max-width: 2200px;
  }

  .servicehero h1,
  .servicehero p,
  .hero h1,
  .hero h2 {
    font-size: 3.5rem;
  }

  .bar-text,
  .bar-label,
  .impact h3,
  .impact p,
  .card h3,
  .card p,
  .section-title h1 {
    font-size: 1.25rem;
  }

  .bar-fill {
    height: 36px;
  }

  .analytics-item .icon {
    font-size: 42px;
  }

  .analytics-item .description {
    font-size: 1.1rem;
  }

  svg#svg-stage {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .label,
  .desc {
    font-size: 20px;
  }
}

#zsiqchat,
#zsiqwidget,
#zsiq_float,
#zsiqcontainer {
  display: none !important;
}

/*--------------------------------------------------------------
# Hub Section
--------------------------------------------------------------*/
.hub {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hub-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hub-content {
  max-width: 600px;
}

.hub-description {
  margin-bottom: 2.5rem;
}

.hub-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin: 0;
}

.hub-features-header {
  margin-bottom: 2.5rem;
}

.hub-features-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.25rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hub-features-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), rgba(255, 140, 36, 0.6));
  margin-bottom: 1.25rem;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(255, 140, 36, 0.2);
}

.hub-features-subtitle {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.75;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hub-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hub-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.hub-feature-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hub-feature-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.hub-feature-content {
  flex: 1;
  width: 100%;
}

.hub-feature-content strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.hub-feature-content p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--default-color);
  margin: 0;
}

@media (max-width: 991px) {
  .hub-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hub-features-grid {
    grid-template-columns: 1fr;
  }
}

.hub .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--accent-color);
  background: transparent;
  color: var(--heading-color);
  text-decoration: none;
}


.hub .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 36, 0.3);
}

.hub-company {
  font-family: var(--nav-font);
  font-weight: 600;
  letter-spacing: 0;
}

.hub-dot {
  color: var(--accent-color);
  margin: 0 3px 0 2px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.hub .cta-btn:hover .hub-dot {
  color: var(--heading-color);
}

.hub-text {
  font-weight: 600;
  margin-left: 2px;
  letter-spacing: 0;
}


.hub-visual {
  position: relative;
  display: flex;
  align-items: center;
}

.hub-visual-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hub-screenshot-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.hub-screenshot {
  position: relative;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
}

.hub-screenshot:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hub-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.hub-screenshot-1,
.hub-screenshot-2 {
  flex: 1;
  min-width: 0;
  animation: float 6s ease-in-out infinite;
}

.hub-screenshot-2 {
  animation: float 6s ease-in-out infinite 2s;
}

.hub-screenshot-3 {
  width: 100%;
  animation: float 6s ease-in-out infinite 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes grow {
  from {
    height: 0;
  }
}

@media (max-width: 991px) {
  .hub-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hub-title {
    font-size: 2.5rem;
  }

  .hub-subtitle {
    font-size: 1.25rem;
  }

  .hub-screenshot-row {
    flex-direction: column;
  }

  .hub-screenshot {
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hub {
    padding: 80px 0;
  }

  .hub-title {
    font-size: 2rem;
  }

  .hub-subtitle {
    font-size: 1.1rem;
  }

  .hub-description p {
    font-size: 1rem;
  }

  .hub .cta-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
}

/* Feature Split Responsive Styles */
@media (max-width: 991px) {
  .feature-split {
    flex-direction: column;
    gap: 2rem;
  }

  .feature-split-image {
    flex: none;
    position: static;
    width: 100%;
  }

  .feature-split-image img {
    max-width: 100%;
  }

  .feature-split-content {
    width: 100%;
  }

  .feature-split-content ul li {
    font-size: 1rem;
    padding-left: 2rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .feature-split-content h3 {
    font-size: 1.5rem;
  }

  .feature-split-content > p:first-of-type {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .feature-split-content ul li {
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.75rem;
  }
}

@media (max-width: 576px) {
  .feature-split {
    gap: 1.5rem;
  }

  .feature-split-content h3 {
    font-size: 1.35rem;
  }

  .feature-split-content > p:first-of-type {
    font-size: 1rem;
  }

  .feature-split-content ul li {
    font-size: 0.9rem;
    padding-left: 1.5rem;
    margin-bottom: 0.875rem;
  }

  .feature-split-content ul li:before {
    font-size: 1.1rem;
    top: 0.15rem;
  }
}
