:root {
  --dl-layout-size-large: 144px;
  --dl-layout-size-small: 48px;
  --dl-layout-space-unit: 16px;
  --dl-layout-size-medium: 96px;
  --dl-layout-size-xlarge: 192px;
  --dl-layout-size-xsmall: 16px;
  --dl-color-theme-accent1: #FFFFFF;
  --dl-color-theme-accent2: #F5D1B0;
  --dl-layout-radius-round: 50%;
  --dl-layout-size-xxlarge: 288px;
  --dl-color-theme-primary1: #BF4408;
  --dl-color-theme-primary2: #E65103;
  --dl-layout-size-maxwidth: 1400px;
  --dl-layout-radius-radius2: 2px;
  --dl-layout-radius-radius4: 4px;
  --dl-layout-radius-radius8: 8px;
  --dl-layout-space-halfunit: 8px;
  --dl-layout-space-sixunits: 96px;
  --dl-layout-space-twounits: 32px;
  --dl-color-theme-secondary1: #FFFFFF;
  --dl-color-theme-secondary2: #FBF1EB;
  --dl-layout-space-fiveunits: 80px;
  --dl-layout-space-fourunits: 64px;
  --dl-layout-space-threeunits: 48px;
  --dl-color-theme-neutral-dark: #191818;
  --dl-layout-radius-cardradius: 8px;
  --dl-color-theme-neutral-light: #FBFAF9;
  --dl-layout-radius-imageradius: 8px;
  --dl-layout-radius-inputradius: 24px;
  --dl-layout-radius-buttonradius: 24px;
  --dl-layout-space-oneandhalfunits: 24px;
}
 
.button {
  color: var(--dl-color-theme-neutral-dark);
  display: inline-block;
  padding: 0.5rem 1rem;
  border-color: var(--dl-color-theme-neutral-dark);
  border-width: 1px;
  border-radius: 4px;
  background-color: var(--dl-color-theme-neutral-light);
}
 
.input {
  color: var(--dl-color-theme-neutral-dark);
  cursor: auto;
  padding: 0.5rem 1rem;
  border-color: var(--dl-color-theme-neutral-dark);
  border-width: 1px;
  border-radius: 4px;
  background-color: var(--dl-color-theme-neutral-light);
}
 
.textarea {
  color: var(--dl-color-theme-neutral-dark);
  cursor: auto;
  padding: 0.5rem;
  border-color: var(--dl-color-theme-neutral-dark);
  border-width: 1px;
  border-radius: 4px;
  background-color: var(--dl-color-theme-neutral-light);
}
 
.list {
  width: 100%;
  margin: 1em 0px 1em 0px;
  display: block;
  padding: 0px 0px 0px 1.5rem;
  list-style-type: none;
  list-style-position: outside;
}
 
.list-item {
  display: list-item;
}
 
.teleport-show {
  display: flex !important;
  transform: none !important;
}
 
.thq-input {
  color: var(--dl-color-theme-neutral-dark);
  cursor: auto;
  outline: none;
  padding: 0.5rem 1rem;
  align-self: stretch;
  text-align: center;
  border-color: var(--dl-color-theme-neutral-dark);
  border-width: 1px;
  border-radius: var(--dl-layout-radius-inputradius);
  background-color: var(--dl-color-theme-neutral-light);
}
 
.thq-input:focus {
  outline: 1px solid var(--dl-color-theme-primary1);
}
 
.thq-button-filled {
  gap: var(--dl-layout-space-halfunit);
  fill: var(--dl-color-theme-secondary1);
  color: var(--dl-color-theme-secondary1);
  cursor: pointer;
  display: flex;
  transition: 0.3s;
  align-items: center;
  font-weight: bold;
  padding-top: var(--dl-layout-space-halfunit);
  white-space: nowrap;
  border-color: var(--dl-color-theme-primary1);
  border-width: 1px;
  padding-left: var(--dl-layout-space-oneandhalfunits);
  border-radius: var(--dl-layout-radius-buttonradius);
  padding-right: var(--dl-layout-space-oneandhalfunits);
  padding-bottom: var(--dl-layout-space-halfunit);
  justify-content: center;
  background-color: var(--dl-color-theme-primary1);
}
 
.thq-button-filled:hover {
  fill: var(--dl-color-theme-secondary2);
  color: var(--dl-color-theme-secondary2);
  border-color: var(--dl-color-theme-primary2);
  background-color: var(--dl-color-theme-primary2);
}
 
.thq-button-outline {
  gap: var(--dl-layout-space-halfunit);
  fill: var(--dl-color-theme-primary1);
  color: var(--dl-color-theme-primary1);
  border: 1px solid;
  cursor: pointer;
  display: flex;
  transition: 0.3s;
  align-items: center;
  font-weight: bold;
  padding-top: var(--dl-layout-space-halfunit);
  white-space: nowrap;
  border-color: var(--dl-color-theme-primary1);
  padding-left: var(--dl-layout-space-oneandhalfunits);
  border-radius: var(--dl-layout-radius-buttonradius);
  padding-right: var(--dl-layout-space-oneandhalfunits);
  padding-bottom: var(--dl-layout-space-halfunit);
  justify-content: center;
}
 
.thq-button-outline:hover {
  fill: var(--dl-color-theme-secondary2);
  color: var(--dl-color-theme-secondary2);
  border-color: var(--dl-color-theme-primary2);
  background-color: var(--dl-color-theme-primary2);
}
 
.thq-button-flat {
  gap: var(--dl-layout-space-halfunit);
  fill: var(--dl-color-theme-primary1);
  color: var(--dl-color-theme-primary1);
  cursor: pointer;
  display: flex;
  transition: 0.3s;
  align-items: center;
  font-weight: bold;
  padding-top: var(--dl-layout-space-halfunit);
  white-space: nowrap;
  border-color: transparent;
  border-width: 1px;
  padding-left: var(--dl-layout-space-oneandhalfunits);
  border-radius: var(--dl-layout-radius-buttonradius);
  padding-right: var(--dl-layout-space-oneandhalfunits);
  padding-bottom: var(--dl-layout-space-halfunit);
  justify-content: center;
}
 
.thq-button-flat:hover {
  fill: var(--dl-color-theme-secondary1);
  color: var(--dl-color-theme-secondary1);
  border-color: var(--dl-color-theme-primary2);
  background-color: var(--dl-color-theme-primary2);
}
 
.thq-heading-1 {
  font-size: 48px;
  font-family: STIX Two Text;
  font-weight: 700;
  line-height: 1.5;
}
 
.thq-heading-2 {
  font-size: 35px;
  font-family: STIX Two Text;
  font-weight: 600;
  line-height: 1.5;
}
 
.thq-heading-3 {
  font-size: 26px;
  font-family: STIX Two Text;
  font-weight: 600;
  line-height: 1.5;
}
 
.thq-body-large {
  font-size: 18px;
  font-family: Noto Sans;
  line-height: 1.5;
}
 
.thq-body-small {
  font-size: 16px;
  font-family: Noto Sans;
  line-height: 1.5;
}
 
.thq-team-image-round {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}
 
.thq-section-padding {
  width: 100%;
  display: flex;
  padding: var(--dl-layout-space-fiveunits);
  position: relative;
  align-items: center;
  flex-direction: column;
}
 
.thq-section-max-width {
  width: 100%;
  max-width: var(--dl-layout-size-maxwidth);
}
 
.thq-img-ratio-1-1 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: var(--dl-layout-radius-imageradius);
}
 
.thq-img-ratio-16-9 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: var(--dl-layout-radius-imageradius);
}
 
.thq-img-ratio-4-3 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: var(--dl-layout-radius-imageradius);
}
 
.thq-img-ratio-4-6 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/6;
  border-radius: var(--dl-layout-radius-imageradius);
}
 
.thq-img-round {
  width: 100%;
  border-radius: var(--dl-layout-radius-round);
}
 
.thq-flex-column {
  gap: var(--dl-layout-space-twounits);
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  flex-direction: column;
}
 
.thq-flex-row {
  gap: var(--dl-layout-space-twounits);
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
}
 
.thq-grid-6 {
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
 
.thq-grid-5 {
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
 
.thq-card {
  gap: var(--dl-layout-space-oneandhalfunits);
  display: flex;
  padding: var(--dl-layout-space-twounits);
  align-items: stretch;
  border-radius: var(--dl-layout-radius-cardradius);
  flex-direction: column;
}
 
.thq-box-shadow {
  box-shadow: 0px 0px 5px -2px var(--dl-color-theme-neutral-dark);
}
 
.thq-grid-3 {
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: 1fr 1fr 1fr;
}
 
.thq-grid-4 {
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
 
.thq-grid-2 {
  width: 100%;
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: 1fr 1fr;
}
 
.thq-checkbox {
  width: var(--dl-layout-size-xsmall);
  height: var(--dl-layout-size-xsmall);
}
 
.thq-select {
  cursor: pointer;
  appearance: none;
  padding-top: var(--dl-layout-space-halfunit);
  padding-left: var(--dl-layout-space-unit);
  border-radius: var(--dl-layout-radius-inputradius);
  padding-right: var(--dl-layout-space-twounits);
  padding-bottom: var(--dl-layout-space-halfunit);
  background-color: var(--dl-color-theme-neutral-light);
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg width%3D%2220%22 height%3D%2220%22 xmlns%3D%22http%3A//www.w3.org/2000/svg%22 viewBox%3D%220 0 20 20%22 fill%3D%22%23000%22%3E%3Cpath d%3D%22M4.293 7.293a1 1 0 011.414 0L10 11.586l4.293-4.293a1 1 0 111.414 1.414l-5 5a1 1 0 01-1.414 0l-5-5a1 1 0 010-1.414z%22/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 8px center;
}
 
.thq-divider-horizontal {
  width: 100%;
  height: 1px;
  background-color: var(--dl-color-theme-neutral-dark);
}
 
.thq-icon-small {
  width: 24px;
  height: 24px;
}
 
.thq-button-icon {
  fill: var(--dl-color-theme-secondary1);
  padding: 3px;
  transition: 0.3s;
  border-radius: var(--dl-layout-radius-round);
}
 
.thq-button-icon:hover {
  fill: var(--dl-color-theme-secondary2);
}
 
.thq-icon-medium {
  width: var(--dl-layout-size-small);
  height: var(--dl-layout-size-small);
}
 
.thq-icon-x-small {
  width: var(--dl-layout-size-xsmall);
  height: var(--dl-layout-size-xsmall);
}
 
.thq-link {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  background: linear-gradient(to right, var(--dl-color-theme-primary1) 50%, var(--dl-color-theme-neutral-dark) 50%);
  transition: background-position 300ms ease;
  font-weight: 600;
  background-clip: text;
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-text-fill-color: transparent;
}
 
.thq-link:hover {
  background-position: 0 100%;
}
 
.thq-grid-auto-300 {
  display: grid;
  grid-gap: var(--dl-layout-space-oneandhalfunits);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
 
.thq-animated-group-vertical-reverse {
  gap: var(--dl-layout-space-unit);
  width: 100%;
  display: flex;
  animation: scroll-y 20s linear infinite;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-around;
  animation-direction: reverse;
}
 
.thq-animated-group-horizontal-reverse {
  gap: var(--dl-layout-space-unit);
  display: flex;
  animation: scroll-x 20s linear infinite;
  min-width: 100%;
  align-items: center;
  flex-shrink: 0;
  justify-content: space-around;
  animation-direction: reverse;
}
 
.thq-animated-group-vertical {
  gap: var(--dl-layout-space-unit);
  width: 100%;
  display: flex;
  animation: scroll-y 20s linear infinite;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-around;
}
 
.thq-animated-group-horizontal {
  gap: var(--dl-layout-space-unit);
  display: flex;
  animation: scroll-x 20s linear infinite;
  min-width: 100%;
  align-items: center;
  flex-shrink: 0;
  justify-content: space-around;
}
 
.thq-animated-group-container-vertical {
  gap: var(--dl-layout-space-unit);
  display: flex;
  overflow: hidden;
  flex-direction: column;
}
 
.thq-animated-group-container-horizontal {
  gap: var(--dl-layout-space-unit);
  display: flex;
  overflow: hidden;
}
 
.thq-mask-image-vertical {
  mask-image: linear-gradient(to bottom, transparent, black 1%, black 99%, transparent);
}
 
.thq-mask-image-horizontal {
  mask-image: linear-gradient(to right, transparent, black 1%, black 99%, transparent);
}
 
.thq-img-scale {
  transition: 0.3s;
}
 
.thq-img-scale:hover {
  scale: 1.05;
}
 
.thq-animated-card-bg-1 {
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
  border-radius: var(--dl-layout-radius-cardradius);
  background-color: var(--dl-color-theme-accent1);
}
 
.thq-animated-card-bg-2 {
  transition: transform 0.3s;
  border-radius: var(--dl-layout-radius-cardradius);
  background-color: var(--dl-color-theme-accent2);
}
 
.thq-button-animated {
  outline: none;
  z-index: 1;
  overflow: hidden;
  position: relative;
  border-width: 2px;
}
 
.thq-input::placeholder {
  text-align: center;
  vertical-align: middle;
}
 
.thq-animated-group-container-vertical:hover div {
  animation-play-state: paused;
}
 
.thq-animated-group-container-horizontal:hover div {
  animation-play-state: paused;
}
 
.thq-animated-card-bg-2:has([data-animated="true"]:hover) {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(3deg) skew(0deg, 0deg);
}
 
.thq-animated-card-bg-1:has([data-animated="true"]:hover) {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-6deg) skew(0deg, 0deg);
}
 
.thq-button-animated:before {
  top: 0;
  left: -20%;
  color: var(--dl-color-theme-neutral-light);
  width: 200%;
  height: 101%;
  content: "";
  z-index: 1;
  position: absolute;
  transform: scaleX(0);
  transition: transform 0.5s;
  border-radius: var(--dl-layout-radius-buttonradius);
  background-color: var(--dl-color-theme-neutral-dark);
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
}
 
.thq-button-animated:hover::before {
  color: var(--dl-color-theme-neutral-light);
  z-index: -1;
  transform: scaleX(1);
}
 
.hero-container {
  width: 100%;
  display: flex;
  padding: 2rem;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 50%, #f0f4f8 100%);
  min-height: 100vh;
  align-items: center;
  justify-content: center;
}
 
.hero-content {
  width: 100%;
  display: flex;
  z-index: 3;
  position: relative;
  max-width: 800px;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
 
.hero-decorative-elements {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  pointer-events: none;
}
 
.hero-logo {
  transform: scale(0.5) translateY(-100px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  margin-bottom: 2rem;
}
 
.hero-title {
  color: #1a1a2e;
  margin: 0 0 1.5rem 0;
  font-size: 4rem;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  will-change: transform, opacity;
  letter-spacing: -0.02em;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.hero-description {
  color: #4a5568;
  margin: 0 0 2.5rem 0;
  font-size: 1.25rem;
  max-width: 600px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  will-change: transform, opacity;
}
 
.hero-button-wrapper {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}
 
.floating-orb {
  position: absolute;
  animation: float 8s ease-in-out infinite;
  background: linear-gradient(
      135deg,
      rgba(52, 152, 219, 0.1) 0%,
      rgba(41, 128, 185, 0.15) 100%
    );
  border-radius: 50%;
  backdrop-filter: blur(20px);
}
 
.orb-1 {
  top: 10%;
  left: 10%;
  width: 300px;
  height: 300px;
  animation-delay: 0s;
  animation-duration: 10s;
}
 
.orb-2 {
  right: 15%;
  width: 200px;
  bottom: 15%;
  height: 200px;
  animation-delay: 2s;
  animation-duration: 12s;
}
 
.orb-3 {
  top: 60%;
  left: 5%;
  width: 150px;
  height: 150px;
  animation-delay: 4s;
  animation-duration: 14s;
}
 
.logo-image {
  width: 200px;
  border: 4px solid rgba(255, 255, 255, 0.9);
  height: 200px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
      0 10px 30px rgba(52, 152, 219, 0.2);
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
}
 
.navbar4-action22 {
  color: #3498db;
  border: 2px solid #3498db;
  cursor: pointer;
  padding: 1rem 2.5rem;
  z-index: 1;
  overflow: hidden;
  position: relative;
  font-size: 1.125rem;
  background: transparent;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  border-radius: 50px;
}
 
.navbar4-action22::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  position: absolute;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  transition: left 0.4s ease;
}
 
.navbar4-action22:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
  border-color: #3498db;
}
 
.navbar4-action22:hover::before {
  left: 0;
}
 
.navbar4-action22  span {
  z-index: 2;
  position: relative;
}
 
.hero-logo.scrolling {
  animation: shrinkLogo 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
 
.hero-title.scrolling {
  animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.1s;
}
 
.hero-description.scrolling {
  animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.15s;
}
 
.hero-button-wrapper.scrolling {
  animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.2s;
}
 
.navbar4-container1 {
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  padding: 16px 24px;
  z-index: 1000;
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  min-height: 80px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  will-change: transform, opacity;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
 
.home-hero-container {
  position: relative;
  padding-top: 80px;
}
 
.home-hero-logo {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  transform-origin: center top;
}
 
.home-hero-title {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  transform-origin: center top;
}
 
.home-hero-description {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}
 
.home-hero-button-wrapper {
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  transform-origin: center;
}
 
.smooth-transition {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
 
.home-hero-content {
  transition: padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
 
.home-hero-decorative-elements {
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
 
.home-floating-orb {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
 
.home-navbar4-action22 {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
 
.navbar4-container1  .logo-image {
  width: 48px;
  height: 48px;
  display: flex;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  justify-content: center;
}
 
.navbar4-container1  .hero-logo {
  width: 48px;
  height: 48px;
  display: flex;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  justify-content: center;
}
 
.navbar4-container1.scrolled {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  min-height: 70px;
}
 
.navbar4-container1::before {
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  content: "";
  opacity: 0;
  position: absolute;
  background: linear-gradient(
      90deg,
      transparent,
      rgba(0, 0, 0, 0.1),
      transparent
    );
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
 
.navbar4-container1.scrolled::before {
  opacity: 1;
}
 
.hero-content.scrolling {
  padding-top: 40px;
}
 
.hero-decorative-elements.scrolling {
  opacity: 0.3;
}
 
.floating-orb.scrolling {
  opacity: 0.4;
  transform: scale(0.7) translateY(-40px);
}
 
.navbar4-wrapper {
  display: contents;
}
 
.navbar4-navbar4-container1 {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  z-index: 1000;
  position: fixed;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
 
.navbar4-navbar-interactive {
  width: 100%;
  display: flex;
  padding: 1rem 2rem;
  max-width: 1200px;
  align-items: center;
  justify-content: space-between;
}
 
.navbar4-logo-section {
  gap: 1rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
 
.navbar4-container2 {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  display: flex;
  align-items: space-between;
  flex-direction: column;
}
 
.navbar4-burger-menu {
  cursor: pointer;
  display: none;
}
 
.navbar4-mobile-menu {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  padding: 2rem;
  z-index: 1001;
  position: fixed;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  flex-direction: column;
  background-color: #ffffff;
}
 
.navbar4-navbar4-action22 {
  color: #3498db;
  border: 2px solid #3498db;
  cursor: pointer;
  padding: 0.75rem 2rem;
  z-index: 1;
  overflow: hidden;
  position: relative;
  font-size: 1rem;
  background: transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 50px;
}
 
.navbar4-logo-image {
  width: 48px;
  border: 2px solid #3498db;
  height: 48px;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 50%;
}
 
.navbar4-company-name {
  color: #2c3e50;
  font-size: 1.25rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
 
.navbar4-desktop-menu {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
 
.navbar4-burger-icon {
  fill: #2c3e50;
  width: 32px;
  height: 32px;
}
 
.navbar4-nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
 
.navbar4-buttons2 {
  gap: 2rem;
  display: flex;
  margin-top: 2rem;
  align-items: center;
}
 
.navbar4-buttons1 {
  gap: 2rem;
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
 
.navbar4-top {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  justify-content: space-between;
}
 
.navbar4-links {
  gap: 1rem;
  flex: 0 0 auto;
  display: flex;
  align-self: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
 
.navbar4-logo {
  width: 48px;
  border: 2px solid #3498db;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}
 
.navbar4-close-menu {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.navbar4-icon1 {
  fill: #2c3e50;
  width: 32px;
  height: 32px;
}
 
.navbar4-logo-image:hover {
  transform: scale(1.05);
}
 
.navbar4-mobile-menu[data-open="true"] {
  display: flex;
  transform: translateX(0);
}
 
.Content {
  font-size: 16px;
  font-family: Inter;
  font-weight: 400;
  line-height: 1.15;
  text-transform: none;
  text-decoration: none;
}
 


/* Hero Contact Button - Critical Styles */
.hero-contact-btn {
  color: #3498db;
  border: 2px solid #3498db;
  cursor: pointer;
  padding: 1rem 2.5rem;
  z-index: 1;
  overflow: hidden;
  position: relative;
  font-size: 1.125rem;
  background: transparent;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
}

.hero-contact-btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  position: absolute;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  transition: left 0.4s ease;
}

.hero-contact-btn:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.hero-contact-btn:hover::before {
  left: 0;
}

.hero-contact-btn:active {
  transform: translateY(0);
}

@media(max-width: 991px) {
  .thq-grid-4 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-description {
    font-size: 1.125rem;
  }
  .orb-1 {
    width: 250px;
    height: 250px;
  }
  .orb-2 {
    width: 180px;
    height: 180px;
  }
  .logo-image {
    width: 180px;
    height: 180px;
  }
  .navbar4-container1 {
    padding: 12px 20px;
    min-height: 70px;
  }
  .home-hero-container {
    padding-top: 70px;
  }
  .navbar4-navbar-interactive {
    padding: 1rem 1.5rem;
  }
  .navbar4-navbar4-action22 {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
  }
  .navbar4-logo-image {
    width: 44px;
    height: 44px;
  }
  .navbar4-company-name {
    font-size: 1.125rem;
  }
}
 
@media(max-width: 767px) {
  .thq-section-padding {
    padding: var(--dl-layout-space-threeunits);
  }
  .thq-flex-column {
    gap: var(--dl-layout-space-oneandhalfunits);
  }
  .thq-flex-row {
    gap: var(--dl-layout-space-oneandhalfunits);
  }
  .thq-grid-6 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    grid-template-columns: 1fr 1fr 1fr;
  }
  .thq-grid-5 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    grid-template-columns: 1fr 1fr 1fr;
  }
  .thq-card {
    padding: var(--dl-layout-space-oneandhalfunits);
  }
  .thq-grid-3 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    grid-template-columns: 1fr 1fr;
  }
  .thq-grid-4 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    flex-direction: row;
    grid-template-columns: 1fr 1fr;
  }
  .thq-grid-2 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    grid-template-columns: 1fr;
  }
  .thq-img-scale {
    width: 100%;
  }
  .hero-container {
    padding: 1.5rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .orb-1 {
    width: 150px;
    height: 150px;
  }
  .orb-2 {
    width: 150px;
    height: 150px;
  }
  .orb-3 {
    display: none;
  }
  .logo-image {
    width: 100px;
    height: 100px;
  }
  .navbar4-action22 {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
  .navbar4-container1 {
    padding: 10px 16px;
    min-height: 60px;
  }
  .home-hero-container {
    padding-top: 60px;
  }
  .navbar4-navbar-interactive {
    padding: 0.875rem 1rem;
  }
  .navbar4-burger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navbar4-logo-image {
    width: 40px;
    height: 40px;
  }
  .navbar4-company-name {
    font-size: 1rem;
  }
}
 
@media(max-width: 479px) {
  .thq-section-padding {
    padding: var(--dl-layout-space-oneandhalfunits);
  }
  .thq-flex-column {
    gap: var(--dl-layout-space-unit);
  }
  .thq-flex-row {
    gap: var(--dl-layout-space-unit);
  }
  .thq-grid-6 {
    grid-gap: var(--dl-layout-space-unit);
    grid-template-columns: 1fr 1fr;
  }
  .thq-grid-5 {
    grid-gap: var(--dl-layout-space-unit);
    grid-template-columns: 1fr 1fr;
  }
  .thq-grid-3 {
    grid-gap: var(--dl-layout-space-unit);
    align-items: center;
    grid-template-columns: 1fr;
  }
  .thq-grid-4 {
    grid-gap: var(--dl-layout-space-unit);
    align-items: center;
    flex-direction: column;
    grid-template-columns: 1fr;
  }
  .thq-grid-2 {
    grid-gap: var(--dl-layout-space-unit);
  }
  .thq-grid-auto-300 {
    grid-template-columns: 1fr;
  }
  .hero-container {
    padding: 1rem;
    min-height: 100vh;
  }
  .hero-logo {
    margin-bottom: 1.5rem;
  }
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .hero-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .orb-1 {
    width: 120px;
    height: 120px;
    opacity: 0.5;
  }
  .orb-2 {
    width: 120px;
    height: 120px;
    opacity: 0.5;
  }
  .logo-image {
    width: 120px;
    height: 120px;
  }
  .navbar4-action22 {
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
  }
  .navbar4-container1 {
    padding: 8px 12px;
    min-height: 56px;
  }
  .home-hero-container {
    padding-top: 56px;
  }
  .navbar4-navbar-interactive {
    padding: 0.75rem 1rem;
  }
  .navbar4-burger-menu {
    display: flex;
  }
  .navbar4-mobile-menu {
    padding: 1rem;
  }
  .navbar4-navbar4-action22 {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  .navbar4-logo-image {
    width: 36px;
    height: 36px;
  }
  .navbar4-company-name {
    font-size: 0.9375rem;
  }
  .navbar4-desktop-menu {
    display: none;
  }
}
/* Making the logo image smaller on mobile */
@media (max-width: 768px) {
    .home-logo-image {
        max-width: 200px !important; /* Smaller size for mobile */
        height: auto !important;
    }
}

/* Removing the fade-out effect for mobile devices */
@media (max-width: 768px) {
    /* Target the element itself */
    .hero-content.fade-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
    /* Also target its children if they inherit or have their own fade effects */
    .hero-content.fade-on-scroll .hero-left,
    .hero-content.fade-on-scroll .hero-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}
@media (max-width: 768px) { /* Adjust max-width to your mobile breakpoint */
    .clean-header-content.ai-style-change-1 {
        padding-left: 10px; /* Reduce left padding further if needed */
        padding-right: 10px; /* Reduce right padding further if needed */
        gap: 10px; /* Reduce gap between children */
        /* If you want to move everything to the left, you might change justify-content */
        /* justify-content: flex-start; */
    }

    .clean-header-content.ai-style-change-1 .clean-header-left {
        /* Reduce font sizes for elements within the left part of the header */
        font-size: 0.8em; /* Example: adjust as needed */
        /* You might need to target specific text elements inside .clean-header-left */
        /* .clean-header-left p { font-size: 0.8em; } */
    }

    .clean-header-content.ai-style-change-1 a.clean-whatsapp-btn {
        padding: 5px 10px; /* Reduce padding to make the button smaller */
        font-size: 0.8em; /* Reduce font size of button text */
    }
}