:root {
  /* =======================
     Colors
  ======================= */
  --color-primary: #113c7c; /* Deep blue */
  --color-primary-80: #347ce4;
  --color-primary-60: #5a9cff;
  --color-primary-40: #9fc4fc;
  --color-primary-20: #e6f3ff;
  --color-orange: #ff6b35; /* Orange */
  --color-orange-20: #ffe2d7;
  --color-accent-light: #ff8a55;
  --color-green: #00b04f; /* Green */

  /* Text Colors */
  --color-text-primary: #222222;
  --color-text-secondary: #555555;
  --color-charcoal: #1c1c1e;
  --color-grey-80: #4a4a4d;
  --color-grey-60: #7a7a7c;
  --color-grey-40: #b4b4b4;
  --color-grey-20: #dddddd;
  --color-text-btn: var(--color-text-primary);

  /* Backgrounds */
  --color-bg-white: #ffffff;
  --color-bg-secondary: #f9f9f9;
  --color-bg-dark: #0f1b2b;

  /* =======================
     Typography
  ======================= */
  --font-family-base: "Roboto", sans-serif;
  --font-family-heading: "Montserrat", sans-serif;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;

  --font-size-h1: 3.75rem;
  --font-size-case-study-title: 2rem;
  --font-size-h2: 1.875rem;
  --font-size-h2-mobile: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h3-mobile: 1.25rem;
  --font-size-h4: 1.25rem;
  --font-size-h4-mobile: 1.125rem;
  --font-size-h5: 1.125rem;
  --font-size-h6: 0.875rem;
  --font-size-hero: 2.5rem; /* Hero section big title */

  --font-size-innerpage-banner-title: 3rem;

  --font-size-h1-tablet: 48px;
  --font-size-h1-mobile: 30px;

  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Headings */
  --heading-color-primary: var(--color-primary);
  --heading-color-accent: var(--color-accent);
  --heading-font: var(--font-family-heading);
  --heading-weight: var(--font-weight-bold);

  /* =======================
     Spacing
  ======================= */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-btn: 6px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-medium: 0.4s ease-in-out;

  --container-main: 77rem;
  --container-small: 56.25rem;

  --header-h: 0px;
}

/* =======================
   RESET CSS
   Based on modern-normalize + improvements
======================= */

/* 1. Remove default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold.woff2') format('woff2'),
    url('../fonts/Roboto-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Medium.woff2') format('woff2'),
    url('../fonts/Roboto-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
    url('../fonts/Roboto-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
    url('../fonts/Montserrat-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
    url('../fonts/Montserrat-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-SemiBold.woff2') format('woff2'),
    url('../fonts/Roboto-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
    url('../fonts/Montserrat-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
    url('../fonts/Montserrat-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


/* 2. Set core body defaults */
html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  color: var(--color-grey-80);
  background-color: var(--color-bg-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  /* For WebKit browsers */
  -moz-osx-font-smoothing: grayscale;
  /* For Firefox on macOS */
  text-rendering: optimizeLegibility;
  /* Standard property for legibility */
}

/* 3. Remove list styles (ol, ul) */
ol,
ul {
  padding-left: 17px;
}
ul li,
ol li {
  padding-bottom: 6px;
}

/* 4. Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* 5. Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* 6. Remove default button styles */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

button {
  cursor: pointer;
}

/* 7. Remove animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =======================
   Headings
======================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  color: var(--heading-color-primary);
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: var(--font-size-h1);
}
h2 {
  font-size: var(--font-size-h3);
}
h3 {
  font-size: var(--font-size-h2);
}
h4 {
  font-size: var(--font-size-h4);
}
h5 {
  font-size: var(--font-size-h5);
}
h6 {
  font-size: var(--font-size-h6);
}

/* Hero Heading Special */
.hero-heading {
  font-size: var(--font-size-hero);
  color: var(--heading-color-accent);
  line-height: 1.2;
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.material-symbols-rounded.filled {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots li {
  width: 14px;
  height: 14px;
  margin: 0 5px;
}
.slick-dots li button::before {
  width: 14px;
  height: 14px;
  border-radius: 14px;
  content: "";
  background-color: #000;
}
/* =======================
   Buttons
======================= */
.btn {
  color: var(--color-text-btn);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  font-size: var(--font-size-h6);
  transition: transform var(--transition-medium),
    background-color var(--transition-medium), color var(--transition-medium);
}

.btn:hover {
  background-color: var(--color-accent-light);
  transition: transform var(--transition-medium),
    background-color var(--transition-medium);
}

.btn-white {
  background-color: var(--color-bg-white);
  color: var(--color-primary-80);
  border-radius: 2px;
  font-weight: var(--font-weight-medium);
  display: inline-flex;
  align-items: center;
  .arrow {
    font-size: 1rem;
    margin-left: 3px;
  }
}
.btn-only-text {
  align-items: center;
  display: inline-flex !important;
  justify-content: flex-start;
  color: var(--color-primary-80);
  
  span.arrow {
    margin-right: 8px;
  } 
  &:hover{
    background-color: transparent;
    color: gray;  
  }
}
.blog-back  {
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 6px;
}
.btn-white-wo-bg {
  background-color: transparent;
  color: var(--color-primary-80);
  font-weight: var(--font-weight-medium);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  border-radius: 2px;
  .arrow {
    font-size: 1.25rem;
    margin-left: 3px;
  }
  &:hover {
    background-color: var(--color-bg-white);
    color: var(--color-primary-80);
    border-color: var(--color-primary-80);
    transition: transform var(--transition-medium),
      background-color var(--transition-medium);
  }
}

.btn-white-outline {
  background-color: transparent;
  color: var(--color-primary-80);
  border: 1px solid var(--color-primary-80);
  font-weight: var(--font-weight-medium);
  display: inline-flex;
  align-items: center;
  border-radius: 2px;
  .arrow {
    font-size: 1rem;
    margin-left: 3px;
  }
  &:hover {
    background-color: var(--color-primary-80);
    color: var(--color-bg-white);
    transition: transform var(--transition-medium),
      background-color var(--transition-medium);
  }
}

.btn-white:hover {
  background-color: var(--color-primary-80);
  color: var(--color-bg-white);
  transition: transform var(--transition-medium),
    background-color var(--transition-medium);
}

.btn-blue {
  background-color: var(--color-primary-80);
  color: var(--color-bg-white);
  border-radius: 2px;
  font-weight: var(--font-weight-medium);
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-primary-80);

  .arrow {
    font-size: 1rem;
    margin-left: 3px;
  }
}

.btn-blue:hover {
  color: var(--color-primary-80);
  background-color: var(--color-bg-white);
  transition: transform var(--transition-medium),
    background-color var(--transition-medium);
}

.btn-orange {
  background-color: var(--color-orange);
  color: var(--color-bg-white);
  font-weight: var(--font-weight-medium);
}

.container {
  margin: 0 auto;
  max-width: var(--container-main);
  padding: 0 1rem;
  &.container-sm {
    max-width: var(--container-small);
  }
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.75rem 0rem;
  background-color: var(--color-bg-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  @media (width < 768px) {
    padding: 0;
  }
}

.navbar {
  max-width: var(--container-main);
  margin: auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
}
.nav-left {
  margin-right: 50px;
}

.nav-left img {
  height: 40px;
}

.nav-center {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-center.active {
  animation: slideIn 0.4s forwards;
  pointer-events: auto;
}

.nav-center.closing {
  animation: slideOut 0.4s forwards;
}

.nav-center a {
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--font-size-h6);
  position: relative;
  vertical-align: top;
  padding: 5px 0;
  @media (width < 768px) {
    width: 100%;
  }
  &::before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--color-orange);
    transition: 0.5s transform ease;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 50%;
    @media (width < 768px) {
      display: none;
    }
  }
}
/* .nav-center a.nav-active {
  color: var(--color-orange);@media (width < 768px) {
      font-weight: var(--font-weight-medium);
    }
} */
.nav-center a:hover::before {
  transform: scale3d(1, 1, 1);
}

.nav-right {
  margin-left: auto;
  .btn {
    @media (width < 768px) {
      font-size: 14px;
    }
    @media (width < 480px) {
      font-size: 12px;
    }
  }
}

/* Dropdown container */
.dropdown {
  position: relative;
  vertical-align: top;
  @media (width > 767px) {
    display: flex;
  }

@media (width < 768px) {
  /* display: flex; */
  align-items: center;
  width: 100%;

}
  > a {
    @media (width < 768px) {
      display: flex;
      align-items: center;
    }
    .bi {
      @media (width > 767px) {
        /* margin-top: 4px; */
        &:before{
          vertical-align: -0.25rem;
        }
      }
      
    }
    span:not(.dropdown-toggle) {
      display: none;  
      @media (width > 767px) {
        display: inline-block;
      }
    }
    &:hover{
      &:before{
        display: none;
      }
    }
  }
}

/* Hide dropdown menu */
.dropdown-menu {
position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 160px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 1000;

  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  /* prevent clicks when hidden */
  transition: all 0.3s ease;
  border-radius: 2px;
}


/* Show when open on mobile */
.dropdown.open .dropdown-menu {
  max-height: 500px;
  /* big enough for content */
  opacity: 1;
  transform: translateY(0);
}

/* Show when hovered on desktop */
@media (min-width: 768px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Dropdown items */
.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

/* Hover effects */
.dropdown-menu li a:hover {
  background: #f2f2f2;
  &:before {
    display: none;
  }
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  @media (width > 767px) {
    display: block;
  }
}

/* HAMBURGER */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 18px;
  cursor: pointer;
  margin-right: 0.75rem;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}
/* Animate into X when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px) translateX(5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px) translateX(5px);
}
/* HERO SLIDER */
/* SLIDE STYLE */
.slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: white;
}

.slide-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

/* LEFT CONTENT */
.text-section {
  flex: 1;
  position: absolute;
  z-index: 2;
  top: 0px;
  max-width: var(--container-main);
  margin: 0 auto;
  left: 0;
  right: 0;
  padding-top: 11vh;
  display: flex;
  align-items: flex-start;
  height: calc(90vh - var(--header-h));
}
.text-section-container {
  max-width: 700px;
  padding: 0 1rem;
}
.text-section h2 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  color: var(--color-orange);
  line-height: 1.1;
}
.text-section h4 {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-base);
  color: var(--color-orange);
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}
.text-section p {
  margin-top: 0.25rem;
  line-height: 1.4;
  color: #fff;
  max-width: 500px;
  font-weight: normal;
  
}

/* ICON BOXES */
.icon-boxes {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  max-width: 340px;
  @media (width < 768px) {
    margin-top: 1rem;
    gap: 1rem;
    justify-content: space-between;
    
  }
}
.icon-box {
  text-align: center;
    max-width: 100px;
    @media (width < 768px) {
      max-width: 100px;
    }
}
.icon-box-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
   background: rgba(255, 255, 255, 0.06);  
  border-radius: 10px;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);

  
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.05) 30%,
    rgba(255, 255, 255, 0) 100%
  );

  /* border: 1px solid rgba(255, 255, 255, 0.35);  */
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2), 
    0 4px 20px rgba(0, 0, 0, 0.15);

  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.05) 30%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
   /* border: 1px solid rgba(255, 255, 255, 0.72); icon */
  margin: 0 auto;
  position: relative;
}
.icon-box-img::before,
.icon-box-img::after {
  content: "";
  position: absolute;
  background: transparent;
  transition: all 0.3s ease;
}
.icon-box-img:after {
  content: "";
  position: absolute;
  background: transparent;
  border-bottom: 1px solid var(--color-primary-80);
  border-right: 1px solid var(--color-primary-80);
  right: 0px;
  bottom: 0px;
  width: 48px;
  height: 48px;
  border-radius: 0px 0px 10px 0px;
}
.icon-box-img:before {
  content: "";
  position: absolute;
  background: transparent;
  border-top: 1px solid var(--color-primary-80);
  border-left: 1px solid var(--color-primary-80);
  left: 0px;
  top: 0px;
  width: 40px;
  height: 48px;
  border-radius: 10px 0px 0px 0px;
}

/* Hover → merge into full border */
/* .icon-box-img:hover::before {
  width: 60px;
  height: 60px;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.icon-box-img:hover::after {
  width: 60px;
  height: 60px;
  right: 0;
  bottom: 0;
  border-radius: 10px;
} */

/* main border */
/* .icon-box img {
  max-width: 32px;
  height: auto;
} */
.icon-box p {
  font-weight: var(--font-weight-medium);
  font-size: 0.95rem;
  color: var(--color-orange);
}
.icon-box.orange {
  color: #ff5722;
}
.icon-box.blue {
  color: #4da6ff;
}

/* RIGHT IMAGE */
.image-section {
  /* width: 100%;
  height: calc(700px - var(--header-h)); */
  /* background-position: right 0;
  background-repeat: no-repeat;
  background-size: contain; */
  
  position: relative;
  width: 100%;
    height: calc(90vh - var(--header-h));
    background-position: 75% 77%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: relative;
    @media (width < 1441px) {
          background-size: 137% auto;
    }
}
.hero-image {
  /* Fallback for all browsers */
  /* background-image: url('./images/hero-image2.jpg'); */
  background-size: 100% auto;
  background-position: center 90%;
  background-image: url('../images/hero-image.jpg');

  @media (width < 1025px) {
    background-image: url('../images/hero-image-mob.png');
    background-size: cover;
    background-position: 77% 90%;
  }
}
.hero-image2 {
  /* Fallback for all browsers */
    /* background-image: url('./images/hero-image2.jpg'); */
    background-size: 100% auto;
    background-position: center 90%;
  background-image: image-set(url("../images/hero-image2.avif") type("image/avif"),
        url("../images/hero-image2.webp") type("image/webp"),
        url("../images/hero-image2.png") type("image/png"),
        url("../images/hero-image2.jpg") type("image/jpeg"));
  
    background-image: -webkit-image-set(url("../images/hero-image2.avif") type("image/avif"),
        url("../images/hero-image2.webp") type("image/webp"),
        url("../images/hero-image2.png") type("image/png"),
        url("../images/hero-image2.jpg") type("image/jpeg"));
    @media (width < 1025px) {
      background-image: url('../images/hero-image2-mob.png');
          background-size: cover;
          background-position: 77% 90%;
    }
}
.image-section img {
  width: 100%;
  border-radius: 10px;
  height: 100vh;
  object-fit: cover;
  @media (width < 768px) {
    height: 60vh;
  }
}

/* BACKGROUND GRADIENT */
.hero-slider-sec {
  position: relative;
  margin-top: var(--header-h);
}
.hero-slider .slick-arrow {
  width: 35px;
  height: 46px;
  background: rgba(255, 255, 255, 0.06); /* light frosted transparency */
  background: rgba(255, 255, 255, 0.06);
  /* light frosted transparency */
  border-radius: 10px;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);

  /* 
    background-image: linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0.05) 30%,
      rgba(255, 255, 255, 0) 100%
    );
  
    border: 1px solid rgba(255, 255, 255, 0.35); */
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2),
    0 4px 20px rgba(0, 0, 0, 0.15);

  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.05) 30%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* border: 1px solid rgba(255, 255, 255, 0.72); */

  display: flex;
  justify-content: center;
  align-items: center;
  &::before {
    font-size: 30px;
    font-family: "Material Symbols Rounded";
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    opacity: 1;
    padding-left: 8px;
    padding-top: 6px;
    color: #fff;
  }
}
.hero-slider .slick-arrow::before,
.hero-slider .slick-arrow::after {
  content: "";
  position: absolute;
  background: transparent;
  transition: all 0.3s ease;
}
.hero-slider .slick-dots {
  bottom: 25px;
  @media (width > 1024px) {
    bottom: 90px;
  }
  .slick-active {
    button {
      &:before {
        color: var(--color-orange);
        background-color: var(--color-orange);
      }
    }
  }
}

.hero-slider .slick-arrow:after {
  content: "";
  position: absolute;
  background: transparent;
  border-bottom: 1px solid var(--color-primary-80);
  border-right: 1px solid var(--color-primary-80);
  right: 0px;
  bottom: 0px;
  width: 20px;
  height: 32px;
  border-radius: 0px 0px 10px 0px;
}

.hero-slider .slick-arrow:before {
  content: "";
  position: absolute;
  background: transparent;
  border-top: 1px solid var(--color-primary-80);
  border-left: 1px solid var(--color-primary-80);
  left: 0px;
  top: 0px;
  width: 20px;
  height: 32px;
  border-radius: 10px 0px 0px 0px;
  color: #fff;
}

/* Hover → merge into full border */
/* .hero-slider .slick-arrow:hover::before {
  width: 96%;
  height: 96%;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.hero-slider .slick-arrow:hover::after {
  width: 96%;
  height: 96%;
  right: 0;
  bottom: 0;
  border-radius: 10px;

} */
.hero-slider .slick-prev {
  left: 20px;
  z-index: 10;
  &.slick-disabled {
    opacity: 0.5;
  }
  @media (width < 768px) {
    left: 10px;
  }
  &::before {
    content: "arrow_back_ios"; /* Icon name as text */
  }
}
.hero-slider .slick-next {
  right: 20px;
  left: auto;
  z-index: 10;
  @media (width < 768px) {
    right: 10px;
  }
  &::before {
    content: "arrow_forward_ios"; /* Icon name as text */
    padding-right: 0px;
    padding-top: 6px;
    padding-left: 4px;
  }
  &.slick-disabled {
    opacity: 0.5;
  }
}
.slide-content:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    -90deg,
    rgba(255, 107, 53, 0.2) 0%,
    rgba(255, 107, 53, 0.1) 10%,
    #113c7c 74%,
    rgba(17, 60, 124, 1) 100%
  );
  @media (width < 768px) {
    background: rgba(17, 60, 124, 0.85);
  }
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  margin-top: -70px;
  /* margin-top: calc(-1 * var(--header-h)); */
  z-index: 1;
  position: relative;
  padding: 0 1rem;
  margin-bottom: 40px;
  @media (width < 1025px) {
    margin-top: 40px;
    gap: 0rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  padding: 1.25rem 1rem 1.5rem;
  color: white;
  font-size: var(--font-size-base);
}

.feature-card:nth-child(1) {
  background-color: #074d88;
  border-radius: 8px 0 0 8px;
  @media (width < 1025px) {
    border-radius: 8px 0px 0 0px;
  }
}
.feature-card:nth-child(2) {
  background-color: #5bb0ff;
  @media (width < 1025px) {
    border-radius: 0px 8px 0 0px;
  }
}
.feature-card:nth-child(3) {
  background-color: #2787eb;
  @media (width < 1025px) {
    border-radius: 0px 0px 0 8px;
  }
}
.feature-card:nth-child(4) {
  background-color: #074d88;
  border-radius: 0 8px 8px 0;
  @media (width < 1025px) {
    border-radius: 0 0px 8px 0;
  }
}

.feature-card-img-box {
  height: 50px;
}

.feature-card-img {
  margin-bottom: 10px;
  display: block;
}

.feature-card h3 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.75rem;
  color: #fff;
  font-family: var(--font-family-base);
  line-height: 1.3;
}

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

/* Services section */
.services {
  padding: 50px 0px;
  padding-bottom: 120px;
  text-align: center;
  background: #fff;
  .heading {
    padding-bottom: 50px;
  }
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--color-orange);
  color: var(--color-bg-white);

  text-align: left;
  display: flex;
  flex-direction: column;
  max-height: 450px;
  padding: 0 1.25rem;
  align-items: flex-start;
  @media (width < 768px) {
    max-height: inherit;
  }
}

.service-card .icon-box {
  background: var(--color-primary);
  padding: 10px;
  width: 71px;
  height: 71px;
  min-height: 71px;
  border-bottom-right-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 6px;
  margin-bottom: 1rem;
}

.service-card .icon-box img {
  margin: 0 auto;
}

.service-card h3 {
  color: var(--color-bg-white);
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.5rem;
}

.service-card p {
  margin-bottom: 1rem;
  font-weight: normal;
  font-family: var(--font-family-base);
  min-height: 65px;
  max-width: 100%;
  @media (width < 768px) {
      min-height: inherit;
  }

}

.service-card .btn {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.service-card > img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: auto;
  margin-bottom: -30px;
}

.heading {
  font-weight: var(--font-weight-light);
  span {
    font-weight: var(--font-weight-semibold);
  }
}
.heading-blue {
  color: var(--color-text-primary);

  span {
    color: var(--color-primary-80);
  }
}

.experts-section {
  background-color: var(--color-primary);
  /* Dark Blue */
  color: var(--color-bg-white);
  padding: 3.75rem 0rem 5rem;
  text-align: center;
}

.experts-section .container {
  max-width: 1000px;
  padding: 0 1rem;
}
.experts-section h3 {
  padding-bottom: 1.875rem;
}
.experts-section h2 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-medium);
  color: var(--color-charcoal);
  font-family: var(--font-family-base);
  margin-bottom: 0;
}

.experts-section h2 span {
  color: #f15a29;
  /* Orange */
  font-weight: bold;
}

.experts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.875rem;
  max-width: 1000px;
  margin: 0 auto;
  .expert-card:nth-of-type(2) {
    img {
      filter: brightness(120%) contrast(110%);
    }
  }
}

.expert-card {
  background-color: white;
  color: black;
  border-radius: 2px;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}


.expert-card img {
  width: 100%;
  height: auto;
}

.expert-content {
  padding: 2.25rem;
}

.expert-role {
  color: var(--color-orange);
  font-weight: var(--font-weight-medium);
  margin-bottom: 1rem;
  display: block;
}

.expert-desc {
  line-height: 1.5;
  color: var(--color-grey-80);
}

.heading-white {
  color: var(--color-bg-white);
  span {
    color: var(--color-orange);
  }
}

/* CASE STUDIES */
.case-studies {
  padding: 40px 0px;
  text-align: center;
}

.case-studies h2 {
  margin-bottom: 1.875rem;
  font-weight: normal;
}

.case-studies h2 span {
  color: #007bff;
  font-weight: var(--font-weight-semibold);
}

.case-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.case-study-slider {
  width: 100%;
  display: flex;
  &.slick-dotted.slick-slider {
      margin-bottom: 20px;
  }
}

.case-card {
  background-color: var(--color-orange-20);
  border-radius: 2px;
  overflow: hidden;
  flex: 1 1 300px;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 1rem;
  @media (width < 1025px) {
    margin-bottom: 30px;
  }
}

.case-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.75rem;
  max-height: 185px;
  object-fit: cover;
}

.case-card-content {
}

.case-card-content h3 {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
  font-family: var(--font-family-base);
  line-height: 1.3;
}

.case-card-content p {
  color: #555;
  margin-bottom: 1.25rem;
}

.read-more {
  display: inline-block;
  padding: 8px 14px;
  background-color: #e6f0ff;
  color: #007bff;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.read-more:hover {
  background-color: #007bff;
  color: #fff;
}

.blog-section {
  padding: 3.75rem 0;
  margin: auto;
  background-color: var(--color-charcoal);
  .heading {
    text-align: center;
    padding-bottom: 1.875rem;
  }
}

.blog-title span {
  color: #ff6b2c;
  /* Orange highlight */
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.blog-card {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 2px 2px 0 0;
}

.blog-content {
  padding: 1rem 1rem 1.5rem;
}

.blog-content h3 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
  color: #333;
  font-family: var(--font-size-base);
  font-size: var(--font-size-h5);
  font-weight: normal;
  line-height: 1.3;
}
.blog-banner {
  height: auto;
  .container {
  gap: 2rem;
}
}
.blog-img {
  flex: 0 0 40%;
  @media (width < 768px) {

    width: 100%;
    flex: 1;
  
  }
  
}

.blog-text {
  flex: 0 0 60%;
  order: -1;
  @media (width < 768px) {
  order: 1;
  }
  h1 {
    font-size: var(--font-size-case-study-title);
      color: var(--color-charcoal);
      font-weight: var(--font-weight-medium);
      font-family: var(--font-family-base);
      margin-bottom: 0;
      line-height: 1.3;
  }
}

.blog-date {
  font-size: 0.85rem;
  color: #777;
}

/* MOBILE MENU */
@media (max-width: 767px) {
  .nav-left {
    margin-right: 20px;
  }
  .nav-center {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: white;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
  }

  .nav-center.active {
    display: flex;
    border-top: 1px solid #eee;
  }

  .hamburger {
    display: flex;
    order: -1;
  }
}

/* Text and arrow default states */
.btn-text,
.arrow {
  display: inline-block;
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover effect */
.btn:hover .btn-text {
  transform: translateX(-5px);
  /* text moves left */
}

.btn:hover .arrow {
  transform: translateX(5px);
  /* arrow moves right */
}

.footer {
  background-color: var(--color-primary);
  color: white;
  padding: 40px 0px;
}

.footer-container {
  display: grid;
  grid-template-columns: 500px 1fr 1fr 1fr;
  gap: 20px;
  margin: auto;
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  max-width: 125px;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1rem;
  margin-bottom: 1.875rem;
  color: var(--color-primary-60);
  font-weight: var(--font-weight-medium);
}
.footer-container .footer-column:first-of-type {
  grid-area: 500px;
}
.footer-column ul li {
  display: flex;
  align-items: flex-start;
}
.footer-column .footer-column-address-row li {
  margin-bottom: 0.75rem;
}

.footer-column ul li i {
  padding-right: 0.5rem;
  font-size: 1.25rem;
}

.footer-column h4 {
  font-size: 1rem;
  color: var(--color-primary-60);
  margin-bottom: 20px;
  font-family: var(--font-size-base);
  font-weight: normal;
  padding-top: 52px;
}
.footer-column ul li address,
.footer-column a {
  font-size: var(--font-size-h6);
  color: white;
  text-decoration: none;
  font-style: normal;
}

.footer-column a:hover {
  text-decoration: underline;
}

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

.footer-column ul li {
  margin-bottom: 4px;
  padding-bottom: 0;
}

.address i,
.footer-column p i {
  margin-right: 8px;
}

.social-links a {
  font-size: 1.25rem;
  margin-right: 0.75rem;
  color: var(--color-orange);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  &:last-child {
    font-size: 1.5rem;
  }
}

.social-links a:hover {
  color: var(--color-bg-white);
  /* Accent color on hover */
}

/* ABOUT PAGE */
.main-content-sec {
  padding-top: var(--header-h);
}

.innerpage-banner {
  height: 378px;
  width: 100%;
  position: relative;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  @media (width < 768px) {
    height: 15.625rem;
  }
  &::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(17, 60, 124, 1) 24%,
      rgba(255, 107, 53, 0.1) 61%
    );
    @media (width < 768px) {
      background: rgba(17, 60, 124, 0.8);
    }
    z-index: 0;
  }
  &.faq-banner {
    height: 330px;
  }
  &.contact-banner {
      
    
  }
  &.blog-banner {
    width: 100%;
    height: auto;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-color: var(--color-orange-20);
    img {
      width: auto; height: auto;
      @media (width < 768px) {
        width: 100%;
      }
      
    }
    &:after{
      display: none;
    }
        .container {
          align-items: center;
          display: flex;
          height: 100%;
          @media (width < 768px) {
            flex-direction: column;
            align-items: flex-start;
          }
        }
  }

  .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px 0px 10px 10px;
  }
  .container {
    position: relative;
  }
  .banner-content {
    /* position: absolute;
    top: 50%;
    left: 0%;
    right: 0%;
    transform: translateY(-50%); */
    max-width: 1200px;
    margin: auto;
    color: white;
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;

    z-index: 1;
    text-align: left;
    @media (width < 768px) {
      padding-top: 2rem;
      padding-bottom: 2rem;
    }

    
    &.about-page {
    .sub-text {
        font-size: 18px;
        color: var(--color-orange);
      }
      .banner-title {
        line-height: 1;
      }
    }
    h1 {
      font-size: var(--font-size-innerpage-banner-title);
      color: var(--color-orange);
      font-weight: var(--font-weight-semibold);
      margin-bottom: 2rem;
      @media (width < 768px) {
        font-size: calc(var(--font-size-innerpage-banner-title) - 0.75rem);
        margin-bottom: 0;
      }
    }
    .banner-subtitle {
      font-size: var(--font-size-h4);
      color: var(--color-orange);
      font-family: var(--font-size-base);
      font-weight: var(--font-weight-medium);
      @media (width < 768px) {
        font-size: calc(var(--font-size-h4) - 0.125rem);
      }
    }
    p {
      font-size: var(--font-size-h4);
      @media (width < 768px) {
        font-size: calc(var(--font-size-h4) - 0.25rem);
      }
    }
  }
}
.banner-text {
  max-width: 500px;
}

.punchline-sec {
  background-color: var(--color-bg-white);
  padding-top: 3.75rem;
  padding-bottom: 2rem;
}
.punchline-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  text-align: center;
}

.punchline-card {
  flex: 1 1 calc(50% - 2.5rem);
  max-width: 50%;
  padding-bottom: 30px;
}

.punchline-card-icon {
  font-size: 40px;
  color: #ff6b35;
  margin-bottom: 10px;
  width: 64px;
  height: 64px;
  background-color: var(--color-orange);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
}

.punchline-card h3 {
  font-size: 22px;
  margin: 0 0 10px;
}

.punchline-card p {
  line-height: 26px;
  strong,
  b {
    font-weight: var(--font-weight-medium);
  }
}

.vicon-section {
  position: relative;
  color: #fff;
  text-align: left;
  overflow: hidden;
}

.vicon-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vicon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.lab-highlight-slide {
  background-size: cover;
  background-position: center center;
  background-position: no-repeat;
  height: 730px;

  @media (width < 768px) {
      height: auto;
  }
  /* &.lab-highlight-slide-last-slide { */
  /* } */
}

.vicon-content {
  margin-top: 100px;
  max-width: fit-content;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1.25rem;
  @media (width < 1025px) {
    margin-top: 100px;
  }
  &.glass-effect {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
}

.vicon-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--color-charcoal);
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}
/* .lab-highlight-slide:nth-of-type(2) .vicon-content {
  h2, p {
  color: #fff;
    @media (width < 768px) {
      color: var(--color-charcoal);
    }
  }

} */

.vicon-content p {
  color: var(--color-grey-80);
  font-weight: var(--font-weight-medium);
}

.vicon-stats {
  padding-top: 240px;
  width: 100%;
  z-index: 2;
}

.stats-slider {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  gap: 1rem;
}

.stat-card {
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 20px 18px;
  border-radius: 8px;
  margin: 0 5px;
  color: #fff;
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 3rem;
  min-height: 140px;
  @media (width < 768px) {
    flex-direction: row;
    align-items: center;
  }
  img {
    max-width: 40px;
    margin: 0 auto 10px;
    @media (width < 768px) {
      margin: 0 10px 0 0;
      max-width: 20px;
    }
    .lab-highlight-slide-blk-text & {
      filter: brightness(0%);
    }
  }
}
.stat-card::before,
.stat-card::after {
  content: "";
  position: absolute;
  background: transparent;
  transition: all 0.3s ease;
}

.stat-card:after {
  content: "";
  position: absolute;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  right: 0px;
  bottom: 0px;
  width: 90%;
  height: 90%;
  border-radius: 0px 0px 10px 0px;
}

.stat-card:before {
  content: "";
  position: absolute;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  left: 0px;
  top: 0px;
  width: 90%;
  height: 90%;
  border-radius: 10px 0px 0px 0px;
}

/* Hover → merge into full border */
.stat-card:hover::before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.stat-card:hover::after {
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  border-radius: 10px;
}

.stat-card h3 {
  font-size: var(--font-size-h5);
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-bg-white);
  margin: 0;
  line-height: 1.3;
  .lab-highlight-slide-blk-text & {
    color: var(--color-charcoal);
  }
}

.stat-card p {
  margin: 5px 0 0;
  color: #f6f6f6;
  font-family: var(--font-family-base);
  .lab-highlight-slide-blk-text & {
    color: var(--color-grey-80);
  }
}

/* Slick Slider fixes for flex */
.stats-slider .slick-track {
  display: flex !important;
}

.stats-slider .slick-slide {
  height: inherit !important;
  display: flex !important;
}

@media (max-width: 767px) {
  .vicon-content h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 5px;
  }

  .vicon-content p {
    font-size: 16px;
    br {
      display: none;
    }
  }
}

.team-section {
  padding: 60px 20px 40px;
  margin: auto;
  background-color: var(--color-primary);
}

.team-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.team-members {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0rem;
  &.touch-device-view {
    flex-direction: column;
  }
}

.member {
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  flex: 1;
}
.member-image-inner {
  height: 320px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.member-img {
  /* position: absolute; */
}
@media (width > 1230px) {
  .visible-desktop {
    display: flex;
  }
  .hidden-desktop {
    display: none;
  }
}
@media (width <= 1230px) {
  .visible-desktop {
    display: none;
  }
  .hidden-desktop {
    display: flex;
  }
}
.team-members .member:nth-of-type(1) .member-image {
  img {
    max-width: 150%;
    width: 100%;
  }
}
.team-members .member:nth-of-type(2) .member-image {
  .member-image-normal {
    width: 96%;
    margin-top: 10px;
  }
  img {
    filter: brightness(100%) contrast(110%);
  }
}
.team-members .member.active:nth-of-type(2) {
  &:hover {
    img {
      margin-top: 5px;
      width: 96%;
    }
  }
}

.member-image {
  position: relative;
  /* &::before {
    position: absolute;
      content: "";
      clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
      width: 100%;
      height: 100%;
      border: 2px solid var(--color-primary-80);
      bottom: -2px;
      left: 0;
      @media (width < 1230px) {

      }
  }
  &::after {
  position: absolute;
    content: "";
    width: calc(100% - -0px);
    height: 126px;
    border-top: 2px solid var(--color-primary-80);
    top: 22px;
    left: 0px;
    z-index: 0;
    transform: skewY(-10deg) rotate(0);
    border-right: 2px solid var(--color-primary-80);
    @media (width < 1230px) {
      height: calc(100% - 42px);
    }
  } */
}
.team-members .member:nth-child(1) .member-image:before {
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
  border-right: 2px solid var(--color-primary-80);
}
.team-members .member:nth-child(1) .member-image:after {
  transform: skewY(10deg) rotate(0);
  border-left: 2px solid var(--color-primary-80);
}
.team-members .member:nth-child(2) .member-image:before {
}

.team-members .member:nth-child(2) .member-image:after {
  left: 2px;
}

.member-image img {
  width: 100%;
  max-width: 100%;
  border-radius: 0px;
  margin: 0 auto;
}

.member-name {
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-heading);
  margin-top: 8px;
  transition: opacity 0.3s;
  color: var(--color-bg-white);
  font-size: var(--font-size-h4);
  margin-bottom: 0;
}
.member-image-hover.member-img {
  opacity: 0;
}

.member-role {
  color: var(--color-orange);
  font-size: 14px;
  padding-right: 1rem;
  font-weight: var(--font-weight-medium);
}
.member.active .member-image:before,
.member.active .member-image:after {
  border-color: var(--color-orange) !important;
}
.member.active .member-image-normal {
  opacity: 0;
  height: 0;
  visibility: hidden;
}
.member.active .member-image-hover {
  opacity: 1;
  height: auto;
  visibility: visible;
}
.member.active .member-name {
  opacity: 0.6;
  margin-bottom: 0;
}
.member.active .member-role,
.member.notactive .member-role,
.member.active .member-name,
.member.notactive .member-name {
  opacity: 0;
}
.member.notactive .member-image img {
  filter: grayscale(1);
}

.member-details {
  flex: 1;
  min-width: 280px;
  align-self: center;
  &.touch-device-view {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
}
.member-details.active h3 {
  margin-bottom: 0;
  color: var(--color-bg-white);
}
.member-details.active .member-designation {
  padding-bottom: 1rem;
  color: var(--color-orange);
  display: block;
  font-weight: var(--font-weight-medium);
}
.member-details h3 {
  font-size: 22px;
  color: var(--color-orange);
  margin-bottom: 10px;
}
.member-details p {
  font-size: var(--font-size-base);
  color: var(--color-bg-white);
  line-height: 1.5rem;
}

/* MOBILE view */
.team-members-mobile.touch-device-view .member {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.team-members-mobile.touch-device-view {
  gap: 4rem;
  display: flex;
  flex-direction: column;
  .member-mobile {
    display: flex;
    align-items: center;
    gap: 2rem;
    @media (width < 768px) {
      flex-direction: column;
      gap: 0;
    }
    &:nth-of-type(2) {
      .member-image {
        order: 1;
        @media (width < 768px) {
          order: -1;
        }
      }
    }
  }
  .member-image {
    flex: 0 0 300px;
  }
  .member-image-inner {
    height: auto;
  }
  .member-description {
    color: #fff;
  }
}

.team-members-mobile.touch-device-view .member-description {
  flex: 1;
  padding-top: 3rem;
  @media (width < 768px) {
    padding-top: 1rem;
  }
  .member-desc {
    padding-top: 10px;
  }
}
.member-details.member-details-mobile {
  flex-flow: column;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-section {
  padding: 3.125rem 1.25rem 6.25rem;
  text-align: center;
}

.testimonial-section h3 {
  margin-bottom: 0;
}

.testimonial-section .testimonial-subheading {
  font-size: var(--font-size-h4);
  color: var(--color-grey-60);
  font-weight: var(--font-weight-medium);
  margin-bottom: 40px;
  display: block;
}
.testimonial-slider {
}
.testimonial-card {
  background: #ffe6e0;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 10px;
}

.testimonial-slider .slick-track {
  display: flex !important;
}

.testimonial-slider .slick-slide {
  height: inherit !important;
}

.testimonial-card {
  background: #ffe6e0;
  padding: 20px;
  border-radius: 2px;
  text-align: left;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.testimonial-card .testimonial-quote {
  font-size: 30px;
  color: #ff5722;
  margin-bottom: 10px;
  position: absolute;
}

.testimonial-card p.testimonial-text {
  line-height: 1.375;
  color: var(--color-grey-80);
  margin-bottom: 1.25rem;
  font-weight: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.author-info {
  font-size: 14px;
}

.author-name {
  color: var(--color-charcoal);
  display: block;
}

.author-role {
  color: var(--color-grey-80);
  font-size: var(--font-size-h6);
}

.testimonial-top-sec {
  display: flex;
  min-height: 35px;
}

.testimonial-image-container {
  margin-left: auto;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  img {
    width: 80px;
    height: 122px;
  }
}

.testimonial-video-btn {
  position: absolute;
  top: calc(100% - 25px);
  height: 100%;
}
.testimonial-video-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 0;
  color: #000;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.testimonial-video-btn span i {
  color: #003d5b;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-video-btn:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 32px;
  height: 32px;
  border: 1.5px solid white;
  z-index: 1;
  border-radius: 50%;
  -webkit-animation: testimonial-bubble 2s infinite forwards linear;
  animation: testimonial-bubble 2s infinite forwards linear;
  z-index: 1;
}
/* .testimonial-video-btn a.vidbtn-white.vid-btn-center {
  position: absolute;
  bottom: 10%;
  left: 15%;
} */
.testimonial-video-btn:after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: 42px;
  height: 42px;
  border: 1.5px solid white;
  z-index: 1;
  border-radius: 50%;
  -webkit-animation: testimonial-bubble 1s infinite forwards linear;
  animation: testimonial-bubble 1s infinite forwards linear;
  z-index: 1;
}

.testimonial-video-btn span i {
  color: var(--color-orange);
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slick-arrow {
  width: 30px;
  height: 30px;
  &::after,
  &::before {
    font-size: 30px;
    font-family: "bootstrap-icons";
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    opacity: 1;
  }
}
.slick-arrow::before,
.slick-arrow::after {
  content: "";
  background: transparent;
  transition: all 0.3s ease;
  z-index: 1;
  color: #000;
}
.slick-prev {
  left: -15px;
}
.slick-prev:before {
  content: "\F284";
}
.slick-next {
  right: -15px;
}
.slick-next:before {
  content: "\F285";
}
.testimonial-slider .slick-prev {
  right: 100%;
  left: auto;
  z-index: 1;
}
.testimonial-slider .slick-next {
  left: 100%;
  right: auto;
  z-index: 1;
}

.lab-highlight-slider {
  .slick-arrow {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    &:hover {
      background-color: var(--color-orange);
    }
    &::before,
    &::after {
      color: #fff;
    }
  }
  .slick-prev {
    left: 20px;
    z-index: 1;
  }

  .slick-next {
    right: 20px;
    z-index: 1;
  }
}

/* Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  background: transparent;
  padding: 0;
  background-color: #fff;
  max-width: 600px;
  max-height: 80%;
  padding: 1rem;
  @media (width < 576px) {
    max-width: 90%;
    max-height: inherit;
  }
}

.video-modal video {
  width: 100%;
  border: none;
  aspect-ratio: 16 / 9;
}

.video-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Loader wrapper */
#loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.loader-logo {
  max-width: 200px;
  margin: 0 auto;
}
.loader-text {
  display: block;
  padding-top: 10px;
  text-align: center;
  font-family: var(--font-size-base);
}
/* Spinner animation */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-top-color: #ff5722;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Navigation Buttons */
.our-services {
  position: relative;
}
.service-nav {
  display: flex;
  gap: 1rem;
  padding: 1.875rem;
  justify-content: center;
  @media (width < 768px) {
    padding: 1rem 0;
    justify-content: flex-start;
  }
  &.disable {
    opacity: 0;
    visibility: hidden;
    height: 0px;
  }
}
.service-filter {
  &.disable {
    opacity: 0;
    visibility: hidden;
    height: 0px;
  }
}
.details-container {
  /* position: absolute;
  top: 132px; */
  max-width: 1200px;
  padding-top: 50px;
}
.details-container {
  display: none;
}

.details-container.active {
  display: block;
}

.details-container .service-details {
  display: none;
}

.details-container .service-details.active {
  display: block;
  padding-bottom: 100px;
}
.filters .filter-btn,
.tabs .tab,
.service-nav button {
  border: none;
  padding: 0.375rem 1.25rem;
  background: var(--color-orange-20);
  border-radius: 16px;
  cursor: pointer;
  font-size: 14px;
  flex: 0 0 auto;
}
.filters .filter-btn:hover,
.filters .filter-btn.active,
.tabs .tab.active,
.tabs .tab:hover,
.service-nav button.active,
.service-nav button:hover {
  background: #ff6f3c;
  color: #fff;
}

/* Section */
.services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  padding-top: 40px;
  padding-bottom: 100px;
  @media (width < 768px) {
    gap: 4rem;
  }
  &.disable {
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    > section {
        height: 0;
        visibility: hidden;
        pointer-events: none;
        display: inline-block;
      }
  }
}
.services-wrapper .service-content:nth-child(2n) .service-image {
  order: -1;
}
.service-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  @media (width < 768px) {
    flex-direction: column;
    gap: 0.75rem;
  }
  .service-image {
    @media (width < 768px) {
      order: -1;
    }
  }
}

.service-content .service-image {
  border-radius: 10px;
  flex: 0 0 calc(50% - 1rem);
  @media (width < 768px) {
    flex: 0 0 100%;
    width: 100%;
  }
  img {
    width: 100%;
  }
}

.section-text {
  flex: 0 0 calc(50% - 1rem);
}

.section-text h2 {
  font-size: 2.25rem;
  margin-bottom: 0px;
  color: var(--color-charcoal);
  font-weight: var(--font-weight-bold);
  @media (width < 768px) {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.section-text p {
  line-height: 28px;
  color: var(--color-text-secondary);
  padding-bottom: 1.25rem;
}

/* Hidden Detail Section */
.service-more-details {
  display: none;
  padding: 1.25rem 0;
  background: #fff6f3;
}

.service-more-details.active {
  display: block;
}

.service-more-details h3 {
  margin-top: 0;
}

.service-more-detail {
  padding: 60px 0;
}

.service-more-detail .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
  padding: 0;
  @media (width< 768px) {
    gap: 1rem;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

.service-more-detail .service-more-info-box {
  flex: 1 1 calc(50% - 1.25rem);
  padding: 2rem 2.5rem;
  background-color: var(--color-orange-20);
  gap: 1.875rem;
  border-radius: 2px;
  &.less-spc {
    padding: 2rem 1.5rem;
  }
  @media (width< 768px) {
    flex: 0 0 100%;
  }
}
.service-more-detail .steps strong {
  flex: 0 0 180px;
  font-weight: var(--font-weight-medium);
  color: var(--color-charcoal);
  @media (width< 768px) {
    flex: 0 0 auto;
  }
}
.service-more-detail .service-more-info-box h3 {
  color: #e44a1d;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.service-more-detail .service-more-info-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  @media (width< 768px) {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.service-more-detail .service-more-info-item {
  text-align: center;
}

.service-more-detail .service-more-info-box img {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
}
.service-more-detail .service-more-info-box h3 {
  font-size: var(--font-size-h3);
  text-align: center;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
}

.service-more-detail .service-more-info-box h4 {
  color: var(--color-charcoal);
  margin-bottom: 0px;
  font-size: var(--font-size-h5);
  font-family: var(--font-size-base);
  font-weight: var(--font-weight-medium);
}

.service-more-detail .service-more-info-box p {
  font-size: var(--font-size-h6);
  color: var(--color-grey-80);
}

.service-more-detail .steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.service-more-detail .steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  @media (width< 768px) {
    flex-direction: column;
  }
  strong,
  p {
    @media (width< 768px) {
      padding-left: 36px;
    }
  }
}

.service-more-detail .steps li::before {
  content: counter(step);
  counter-increment: step;
  background: var(--color-orange);
  color: var(--color-bg-white);
  font-weight: var(--font-weight-medium);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  flex-shrink: 0;
  @media (width < 768px) {
    position: absolute;
  }
}
.service-more-detail .steps li::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 6px;
  height: 100%;
  background-color: rgba(255, 107, 53, 0.2);
  left: 10px;
}
.service-more-detail .steps li:last-of-type:after {
  display: none;
}

.service-detail .steps strong {
  display: block;
  color: var(--color-orange);
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .service-detail .info-box {
    flex: 1 1 100%;
  }

  .service-detail .info-items {
    grid-template-columns: 1fr;
  }
}

/* Tabs */
.faq-section .tabs {
  padding: 2.25rem 0;
  @media (width < 768px) {
    margin-bottom: 0;
  }
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  justify-content: center;
  @media (width < 768px) {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}

.tab {
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 20px;
  cursor: pointer;
  background: #f5f5f5;
  font-size: 14px;
}

.tab.active {
  background: #000;
  color: #fff;
}

/* Accordion */
.accordion {
  max-width: 50rem;
  margin: 0 auto 4rem;
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-header {
  padding: 18px;
  padding-right: 24px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-h5);
  color: var(--color-charcoal);
  font-family: var(--font-size-base);
  &:hover {
    background-color: rgba(241, 241, 241, 0.5);
  }
}

.accordion-header span {
  font-weight: var(--font-weight-bold);
}

.accordion-header:hover {
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 18px;
  /* closed */

  font-size: var(--font-size-h6);
  color: var(--color-grey-80);
  p {
    padding-bottom: 0.375rem;
  }
  ul li {
    list-style-type: disc;
    list-style-position: inside;
  }
}
.accordion-item.active {
  background-color: #f1f1f1;
  border-radius: 2px;
}
.accordion-item.active .accordion-content {
  padding: 18px;
  max-height: inherit !important;
}

.faq-contact {
  background-color: var(--color-charcoal);
  text-align: center;
  padding: 40px 20px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  max-width: var(--container-main);
  margin: 0 auto 4rem;
}

.faq-contact h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-orange);
}

.faq-contact p {
  font-size: 14px;
  color: var(--color-bg-white);
  padding-bottom: 2rem;
}

.faq-contact .contact-btn {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.faq-contact .contact-btn:hover {
  background-color: #333;
}

.articles-container {
  padding-top: 3rem;
}

/* Featured Article */
.featured-article {
  display: flex;
  gap: 1.875rem;
  background: #fff;
  border-radius: 2px;
  margin-bottom: 3.75rem;
  border: 1px solid var(--color-orange);
}
.featured-article .container {
  display: flex;
  gap: 1.875rem;
  padding: 0;
  @media (width < 768px) {
    flex-direction: column;
    gap: 0;
  }
}
.featured-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 2px;
  min-height: 180px;
  img {
    border-radius: 2px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.featured-content {
  flex: 1;
  padding: 2rem;
}

.article-type {
  font-size: 12px;
  text-transform: uppercase;
  color: gray;
}

.article-title {
  font-size: var(--font-size-h3);
  line-height: 1.2;
  padding-bottom: 10px;
  margin-bottom: 0;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-medium);

  a {
    color: var(--color-charcoal);
    &:hover {
      color: var(--color-grey-80);
    }
  }
}

.article-date {
  font-size: 12px;
  color: var(--color-grey-60);
  padding-bottom: 0.5rem;
}
.article-description {
  font-family: var(--font-family-base);
  padding-bottom: 2rem;
}

/* Filters */
.filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.filters .container {
  gap: 1rem;
  display: flex;
  @media (width < 768px) {
    max-width: 100%;
  }
}
.filter-btn {
  padding: 6px 12px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 20px;
  font-size: 14px;
}

.filter-btn.active {
  background: black;
  color: white;
}

.filters .container {
  display: flex;
  align-items: center;
  position: relative;
}

.filter-wrapper {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
  -ms-overflow-style: none;
  /* Hide scrollbar IE/Edge */
  flex: 1;
}

.filter-wrapper::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.filter-btn {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: none;
  border-radius: 20px;
  background: #eee;
  cursor: pointer;
  white-space: nowrap;
}

.filter-btn.active {
  background: #333;
  color: #fff;
}

.scroll-container {
  display: flex;
  align-items: center;
  position: relative;
  gap: 8px;
}

.scroll-wrapper {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  flex: 1;
}

.scroll-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.scroll-btn {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-btn i {
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .scroll-btn {
    display: none;
    /* hide arrows on desktop */
  }
}

.scroll-btn {
  background: #fff;
  border: 1px solid var(--color-grey-20);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  flex: 0 0 auto;
  &:hover {
    background-color: #f2f2f2;
    border-color: var(--color-grey-20);
    i {
      color: var(--color-grey-80);
    }
  }
}

.scroll-btn.left {
  margin-right: 8px;
}

.scroll-btn.right {
  margin-left: 8px;
}

@media (min-width: 768px) {
  .scroll-btn {
    display: none;
    /* hide arrows on desktop */
  }
}
/* Articles Grid */
.latest-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  @media (width < 768px) {
    grid-template-columns: repeat(2, 1fr);
  }
  @media (width < 576px) {
    grid-template-columns: repeat(1, 1fr);
  }
  &.media {
    padding-top: 20px;
    margin-bottom: 80px;
    .article-content {
      flex-direction: column;
      display: flex;
      padding: 1.25rem;
      align-items: flex-start;
      .btn {
        margin-top: 10px;
      }
    }
  }
}

.article-sec-title {
  text-align: center;
  padding-bottom: 20px;
}
.article-card {
  background: var(--color-bg-white);
  border-radius: 8px;
  border: 1px solid var(--color-grey-20);
  transition: box-shadow 0.25s;
  &:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  img {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }
}

.article-card .image-placeholder {
  background: #ccc;
  height: 140px;
  border-radius: 6px 6px 0 0;
}
.article-category {
  text-transform: uppercase;
  font-size: var(--font-size-h6);
  color: gray;
  padding-bottom: 4px;
  display: block;
}
.article-content {
  padding: 1rem;
}
.article-card h3 {
  font-size: var(--font-size-h5);
  line-height: 1.25;
  margin-bottom: 0.5rem;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-medium);
  a {
    color: var(--color-charcoal);
    &:hover {
      color: var(--color-grey-80);
    }
  }
}

.article-card p {
  font-size: var(--font-size-h6);
  color: #555;
  padding-bottom: 0.75rem;
}

.article-card .date {
  font-size: 12px;
  color: gray;
  padding-bottom: 0.75rem;
}

/* Load More */
.load-more {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.blog-date-info-category {
  text-transform: uppercase;
}
/* Blog Content */
.blog-detail-content {
  background: #fff;
  padding-top: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding-bottom: 5rem;
  h1 {
    font-size: var(--font-size-h2);
    margin-bottom: 1.25rem;
    line-height: 1.2;
  }
  h4,
  h1 {
    color: var(--color-charcoal);
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-medium);
  }

  p {
    padding-bottom: 0.75rem;
    strong {
      font-weight: var(--font-weight-medium);
    }
  }
  .blog-date-info {
    font-size: var(--font-size-h6);
    color: gray;
    text-transform: uppercase;
    display: block;
    padding-bottom: 5px;
  }
  ol,
  ul {
    li {
      strong {
        font-weight: var(--font-weight-medium);
      }
    }
  }
  ul {
    margin-bottom: 1rem;
  }
}

.blog-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

.blog-content h2,
.blog-content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.blog-content p {
  margin-bottom: 15px;
}

.blog-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.blog-content li {
  margin-bottom: 5px;
}

.contact-section {
  padding: 40px;
  background: #fff;
  position: relative;
  margin-top: 0px;
  z-index: 1;
  /* box-shadow: 0 13px 29px rgba(0, 0, 0, 0.1); */
  border-radius: 2px;
  margin-bottom: 150px;
  @media (width < 768px) {
    padding: 25px 0px;
    margin-bottom: 50px;
    .container {
      padding: 0;
    }
  }
}

.contact-content {
  display: flex;
  flex-direction: column;
  h1 {
    font-size: var(--font-size-h2);
    color: var(--color-charcoal); 
    @media (width < 768px) {
      font-size: calc(var(--font-size-h2) - 0.25rem);
    }
  }
}
.contact-section .container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  @media (width < 768px) {
    gap: 20px;
  }
}

.contact-form {
  flex: 1 1 500px;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-form p {
  color: #555;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 1.75rem;
  @media (width < 768px) {
    flex-direction: column;
  }
  .form-col {
    flex: 1;
    label {
      display: block;
      margin-bottom: 5px;
      color: var(--color-grey-80);
      font-size: var(--font-size-h6);
    }
  }
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 10px;
  border: 1px solid var(--color-grey-20);
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
}

/* Remove default blue outline */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border: 1px solid var(--color-charcoal);
  box-shadow: none;
}

input.error:focus,
select.error:focus,
textarea.error:focus {
  border-color: red;
}

.contact-form textarea {
  min-height: 80px;
  resize: none;
}

.contact-form .btn {
  cursor: pointer;
  display: block;
}

.contact-info {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

input.error,
select.error,
textarea.error {
  border-color: red;
}

.error-msg {
  color: red;
  font-size: 12px;
  margin-top: 4px;
  height: 14px;
  /* reserve space to prevent layout shift */
}

.contact-info-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-primary-20);
  padding: 0.8rem;
  border-radius: 4px;
  address {
    font-style: normal;
  }
  p strong {
    font-weight: var(--font-weight-medium);
  }
  span {
    font-size: 1.25rem;
    align-self: flex-start;
  }
}

/* SERVICES DETAIL PAGE */
.service-details {
  background-color: #fff;
}
.details-container {
  display: none;
  .container {
    padding: 0;
  }
}
.details-container.active {
  display: block;
}
.service-header {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.service-text {
  flex: 1 1 500px;
}

.service-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.service-image {
  flex: 1 1 400px;
  position: relative;
  .testimonial-video-btn {
    left: 32px;
    bottom: 0;
    top: auto;
  }
}

.service-image img {
  max-width: 100%;
  border-radius: 8px;
}

.service-detail-info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.service-detail-info-box {
  flex: 1 1 300px;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
}

.service-detail-info-box h3 {
  margin-bottom: 12px;
}

.service-detail-info-box ul {
  list-style: none;
  padding: 0;
}

.service-detail-info-box ul li {
  margin-bottom: 8px;
}

.benefits {
  border: 1px solid #f0a17c;
  padding: 1.875rem;
  background: #fff;

  border-radius: 2px;
  margin-bottom: 2.5rem;
  @media (width < 768px) {
    padding: 1.25rem;
  }
}

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

.benefits h2 {
  text-align: center;
  color: var(--color-primary-80);
  font-size: 1.4rem;
  margin-bottom: 25px;
}

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

.benefits li {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 2rem;
  @media (width < 768px) {
    gap: 00;
    margin-bottom: 10px;
  }
}

.benefits li strong {
  font-weight: 500;

  margin-bottom: 5px;
  text-align: right;
  @media (width < 768px) {
    text-align: left;
  }
}

.benefits li p {
  margin: 0;
  font-size: var(--font-size-h6);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .benefits li {
    flex-direction: row;
  }

  .benefits li strong {
    flex: 0 0 310px;
  }

  .benefits li p {
    flex: 1;
  }
}

.services-detail-case-study {
  display: flex;

  background-color: #ffe5db;
  /* light peach background */
  border-radius: 2px;
  overflow: hidden;
  padding: 1.5rem;

  margin-bottom: 1.25rem;
  gap: 1.875rem;
}

.services-detail-case-study-image {
  flex: 1;
}

.services-detail-case-study-image img {
  width: 100%;
  height: auto;
  display: block;
}

.services-detail-case-study-content {
  flex: 1;
  padding-right: 1.875rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  @media (width < 768px) {
    padding-right: 0;
  }
  h4 {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-medium);
    a {
      color: var(--color-charcoal);
      &:hover {
        color: var(--color-grey-80);
      }
    }
  }
}

.services-detail-case-study-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}

.services-detail-case-study-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 12px;
  text-align: left;
}

.services-detail-case-study-link {
  margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .services-detail-case-study {
    flex-direction: column;
  }

  .services-detail-case-study-image {
    flex: 0 0 auto;
    max-width: 100%;
  }
}

.service-footer {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 100px;
  @media (width < 768px) {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
  }
     a:nth-child(2n),  a:nth-child(3n) {
      @media (width < 768px) {
        padding-top: 9px;
        padding-bottom: 9px;
      }
     }
  a:nth-child(2n) {
    margin-left: auto;
    @media (width < 768px) {
      margin-left: 0;
    }
  }
        a:nth-child(3n) {
          @media (width < 768px) {
          margin-top: -10px;
          }
        }
}

.view-all-services-btn-sec {
  display: flex;
  justify-content: center;

  @media (width < 768px) {
    justify-content: flex-start;
  }
  &.blog-btn {
    margin-top: 50px;
  }

  .btn {
    max-width: 500px;
    width: 100%;
    @media (width < 768px) {
      width: auto;
    }
    display: flex;
    justify-content: center;
    .btn-text {
      text-align: center;
    }
  }
}

@media (max-width: 768px) {
  .service-header,
  .case-study {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .innerpage-banner h1 {
    font-size: 2rem;
  }

  .blog-content {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .tab {
    font-size: 12px;
    padding: 6px 12px;
  }

  .accordion-header {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .video-modal iframe {
    height: 250px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .testimonial-section h2 {
    font-size: 24px;
  }

  .testimonial-card {
    padding: 15px;
  }
}

@media (max-width: --media) {
  .team-container {
    flex-direction: column;
    align-items: center;
  }

  .member-details {
    text-align: center;
  }
}

/* Responsive tweak */

@media (max-width: 768px) {
  .footer {
    text-align: left;
  }
  .footer-container {
    gap: 0.625rem;
  }
  .footer-column {
    h4 {
      padding-top: 1rem;
      margin-bottom: 6px;
    }
  }
  .tagline {
    margin-bottom: 1.25rem;
  }

  .social-links {
    justify-content: center;
  }
}

@-webkit-keyframes testimonial-bubble {
  0% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    opacity: 1;
  }

  25% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.8;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.55;
  }

  75% {
    -webkit-transform: scale(1.32);
    transform: scale(1.32);
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0;
  }
}

@-webkit-keyframes testimonial-bubble {
  0% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    opacity: 1;
  }

  25% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.8;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.55;
  }

  75% {
    -webkit-transform: scale(1.32);
    transform: scale(1.32);
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes testimonial-bubble {
  0% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    opacity: 1;
  }

  25% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.8;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.55;
  }

  75% {
    -webkit-transform: scale(1.32);
    transform: scale(1.32);
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.case-study-banner {
  background-color: var(--color-orange-20);
  margin-bottom: 2rem;
  .container {
    display: flex;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    gap: 2rem;
    @media (width < 768px) {
    }
    @media (width < 768px) {
      flex-direction: column;padding: 2rem 1rem;
      gap: 1rem;
    }
    img {
      border: 1px solid #eee;
      max-width: 55%;
    }
  }
  .banner-text {
    flex: 1;
    display: flex;
    align-items: flex-end;
    order: -1;
    @media (width < 768px) {
      max-width: 100%;
      order: 1;
    }
    h1 {
      font-size: var(--font-size-case-study-title);
      font-family: var(--font-family-base);
      font-weight: var(--font-weight-medium);
      color: var(--color-charcoal);
      margin-bottom: 0;
      line-height: 1.2;
    }
  }
}
.case-study-content {
  padding-bottom: 4rem;
  ul,
  p {
    font-size: var(--font-size-h6);
  }
  h2,
  h3,
  h4 {
    font-family: var(--font-family-base);
  }
  strong {
    font-weight: var(--font-weight-medium);
  }

  ul {
    margin-bottom: 1rem;
  }
  p {
    padding-bottom: 0.5rem;
  }
  h2 {
    font-size: var(--font-size-h4);
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-charcoal);
  }
  h3 {
    font-size: var(--font-size-h5);
    font-weight: var(--font-weight-medium);
    color: var(--color-charcoal);
  }
}

.button {
  pointer-events: auto;
  cursor: pointer;
  background: #e7e7e7;
  border: none;
  padding: 1.5rem 3rem;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  display: inline-block;
}
.btn-outline-hover--dione {
  background: none;
  font-family: obvia, sans-serif;
  font-weight: 500;
  font-style: italic;
  padding: 1.5rem 3rem;
  position: relative;
}

.btn-outline-hover--dione span {
  display: inline-block;
  position: relative;
  color: #fff;
}

.btn-outline-hover--dione::before {
  content: "";
  background: #000;
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.7, 1);
  position: absolute;
}

.btn-outline-hover--dione:hover::before {
  transform: scale3d(0.9, 0.8, 1);
}

.btn-outline-hover--dione::after {
  content: "";
  border: 1px solid #000;
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.7, 1);
  border-radius: 0px;
  transform: scale3d(0.85, 0.65, 1);
  position: absolute;
}

.btn-outline-hover::before,
.btn-outline-hover::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn-outline-hover--dione:hover::after {
  transform: scale3d(1, 1, 1);
}

.our-services section[id] {
  scroll-margin-top: var(--header-height);
}
#formMessage {
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  display: none;
}

#formMessage.success {
  display: block;
  background: #e6ffed;
  border: 1px solid #34d058;
  color: #22863a;
}

#formMessage.error {
  display: block;
  background: #ffeef0;
  border: 1px solid #d73a49;
  color: #86181d;
}

/* STYLE responsive */
@media (width < 1440px) {
  .text-section h2 {
    font-size: var(--font-size-h1-tablet);
    /* Adjusted for smaller screens */
  }
  .image-section {
    background-size: cover;
    height: 75vh;
  }

  .text-section {
    height: 75vh;
  }
}
@media screen and (max-width: 1440px) and (max-height: 770px) {
    .image-section {
        background-size: cover;
        height: calc(100vh - var(--header-h));
      }
    
      .text-section {
        height: calc(100vh - var(--header-h));
      }
}

@media (width < 1230px) {
  .innerpage-banner {
    background-size: cover;
    height: 350px;
  }

  .innerpage-banner .banner-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (width < 1025px) {
  .lab-highlight-slide {
    height: 600px;
  }
  .innerpage-banner {
    height: 300px;
    .banner-content {
      padding-top: 3rem;
      padding-bottom: 3rem;
      h1 {
        margin-bottom: 0;
      }
    }
  }
  .vicon-stats {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .lab-highlight-sec .slick-dots {
    bottom: 20px;
  }
}

@media (width > 767px) {
  .lab-highlight-slide-img {
    display: none;
  }
}
@media (width < 768px) {
  .image-section {
    background-size: cover;
    height: 60vh; 
  }
     .lab-highlight-slide {
       height: auto;
     }

  .text-section {
    height: 60vh;
  }
  .features {
    margin-bottom: 0;
    margin-top: -10px;
  }
  .services {
    padding-bottom: 5.5rem;
    padding-top: 2rem;
    & .heading {
      padding-bottom: 20px;
    }
  }

  .service-cards {
    gap: 3.75rem;
  }
  .expert-content {
    padding: 1.25rem;
  }
  .experts-section {
    padding: 2rem 0rem 3rem;
    h3 {
      padding-bottom: 1.25rem;
      font-size: var(--font-size-h2-mobile);
    }
    h2 {
      font-size: var(--font-size-h3-mobile);
    }
  }
  .experts-container {
    gap: 1.25rem;
  }
  .expert-desc {
    font-size: var(--font-size-h6);
  }

  .expert-role {
    margin-bottom: 0.5rem;
  }

  .case-studies {
    padding-top: 1.5625rem;
    h2 {
      font-size: var(--font-size-h2-mobile);
    }
  }
  .service-card h3 {
    font-size: var(--font-size-h4-mobile);
    margin-bottom: 0.25rem;
  }

  .case-card {
    padding: 1rem;
    margin-bottom: 30px;
  }
  .blog-section {
    padding: 2.5rem 0;
    .heading {
      padding-bottom: 1.125rem;
    }
  }
  .blog-content h2,
  .blog-content h3 {
    margin-top: 0;
  }
  .blog-content p {
    margin-bottom: 0;
  }
  .innerpage-banner {
    background-size: cover;
  }
  .innerpage-banner .banner-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .punchline-sec {
    padding-top: 2rem;
  }

  .punchline-card-container {
    gap: 1rem;
  }

  .punchline-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* .lab-highlight-slide {
          background-image: none !important;
        }
        .lab-highlight-slide-img {
          display: block;
        } */
  .vicon-content {
    margin-top: 20px;
    padding: 0;
    padding-bottom: 20px;
    max-width: 100%;
    h2 {
      font-size: var(--font-size-h4);
      font-weight: var(--font-weight-medium);
    }
  }
  .vicon-stats {
    padding-top: 0px;
    padding-bottom: 40px;
  }
  .lab-highlight-sec .slick-dots {
    bottom: 20px;
  }
  .stats-slider {
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  .stat-card {
    min-height: inherit;
    margin-bottom: 0rem;
    flex: 0 0 44%;
    padding: 10px;
    p {
      font-size: var(--font-size-h6);
      line-height: 1.3;
    }
  }
  .stat-card h3 {
    font-size: var(--font-size-h5);
  }

  .lab-highlight-sec.visible-mobile {
    .stats-slider {
      max-width: 100%;
      gap: 0;
    }

    .stat-card {
      flex: 0 0 100%;
      padding-left: 0;
      margin-left: 0;
      text-align: left;
      background-color: transparent;
      padding: 0;
      padding-bottom: 20px;
      margin-left: 0px;
      
      p {
        margin-top: 0;
      }
      h3, p {
        font-size: var(--font-size-base);
        color: var(--color-grey-80);
      }
      h3 {
        font-weight: var(--font-weight-medium);
      }

      
    }
  }
}
@media (width < 768px) {
  .text-section h2 {
    font-size: var(--font-size-h1-mobile);
    /* Adjusted for smaller screens */
  }
}

/* When menu opens */
@keyframes slideIn {
  from {
    top: -130px;
    opacity: 0;
  }

  to {
    top: 64px;
    opacity: 1;
  }
}

/* When menu closes */
@keyframes slideOut {
  from {
    right: 0;
    opacity: 1;
  }

  to {
    right: -250px;
    opacity: 0;
  }
}
@media (width > 767px) {
  .visible-mobile {
    display: none;
  }

  .hidden-mobile {
    display: block;
  }
}
@media (width < 768px) {
  .visible-mobile {
    display: block;
  }
  .hidden-mobile {
    display: none;
  }
    .text-section {
      padding-top: 5vh;
    }
}
@media (width < 576px) {
  .nav-left {
      margin-right: 10px;
    }
}


/* Mobile landscape */
@media screen and (min-width: 901px) and (orientation: landscape) {
  .visible-mobile-landscape {
    display: none;
  }
}
@media screen and (max-width: 900px) and (orientation: landscape) {
  .image-section {
    background-size: cover;
    /* height: calc(100vh - var(--header-h)); */
    height: auto;
  }

  .text-section {
    padding-top: 5vh;
    /* height: calc(100vh - var(--header-h)); */
    height: auto;
  }
    .visible-mobile-landscape {
      display: block;
    
    }
    .image-section  .visible-mobile-landscape {
       display: block;
       /* height: auto !important;   */
    
     }

}

/* Hide dropdown menus by default on mobile */
@media (max-width: 767px) {
  .dropdown-menu {
    display: none;
    flex-direction: column;
    box-shadow: none;
    padding-top: 10px;
    
  }

  .dropdown.open .dropdown-menu {
    display: flex;
    position: static;
    flex-wrap: nowrap;
    pointer-events: auto;
  }

  .dropdown-toggle {
  cursor: pointer;
    margin-left: auto;
    font-size: 20px;
    line-height: 1;
    width: 30px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 5px;

  }

  /* Rotate + into × when active */
  .dropdown.open .dropdown-toggle {
    transform: rotate(45deg);
  }
  .image-section {
    picture {
      display: none;
    }
  }
}
@media (min-width: 768px) {
  .dropdown-toggle {
    display: none;
  }
}