:root {
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 86, 179, 0.1);
  --gray-100: #f8f9fa;
  --gray-800: #343a40;
  --dark-blue: #003366;
  --light-blue: #e6f7ff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --accent-cyan: #00f2ff;
  --primary-blue: #0056b3;
  --secondary-blue: #00a8e8;
  --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-section {
  color: var(--white);
  height: 100vh;
  display: flex;
  overflow: hidden;
  position: relative;
  min-height: 700px;
  text-align: center;
  align-items: center;
  background-size: cover;
  justify-content: center;
  background-image: url("https://images.pexels.com/photos/6195290/pexels-photo-6195290.jpeg?auto=compress&cs=tinysrgb&h=1080&w=1920");
  background-position: center;
  background-attachment: fixed;
}
 
.hero-overlay {
  inset: 0;
  z-index: 1;
  position: absolute;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.85) 0%, rgba(0, 86, 179, 0.6) 100%);
}
 
.hero-content {
  padding: 0 20px;
  z-index: 2;
  position: relative;
  animation: fadeInUp 1s ease-out;
  max-width: 900px;
}
 
.hero-scroll-indicator {
  left: 50%;
  bottom: 30px;
  z-index: 2;
  position: absolute;
  transform: translateX(-50%);
}
 
.hero-badge {
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  padding: 8px 20px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  align-items: center;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
 
.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 25px;
}
 
.hero-subtitle {
  opacity: 0.9;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 700px;
  margin-bottom: 40px;
  margin-inline: auto;
}
 
.hero-cta {
  color: var(--primary-blue);
  border: 2px solid transparent;
  display: inline-flex;
  padding: 18px 35px;
  font-size: 1.2rem;
  background: var(--white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  align-items: center;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
}
 
.mouse {
  width: 25px;
  border: 2px solid var(--white);
  height: 45px;
  position: relative;
  border-radius: 15px;
}
 

 

 
.cta-icon {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
 

 

 
.services-section {
  padding: 100px 0;
  background: var(--gray-100);
}
 
.services-container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
}
 
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
 
.services-grid {
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
 
.section-title {
  color: var(--dark-blue);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}
 
.title-underline {
  width: 80px;
  height: 4px;
  margin: 0 auto;
  background: var(--secondary-blue);
  border-radius: 2px;
}
 
.service-card {
  padding: 40px;
  z-index: 1;
  overflow: hidden;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-radius: 20px;
}
 

 
.service-icon-box {
  color: var(--primary-blue);
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  background: var(--light-blue);
  transition: var(--transition);
  align-items: center;
  border-radius: 20px;
  justify-content: center;
}
 
.service-name {
  color: var(--dark-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
 
.service-desc {
  opacity: 0.8;
  font-size: 1rem;
  margin-bottom: 20px;
}
 
.service-hover-content {
  left: 0;
  width: 100%;
  bottom: -60px;
  opacity: 0;
  padding: 20px;
  position: absolute;
  transition: var(--transition);
}
 

 
.service-link {
  color: var(--secondary-blue);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
 

 

 
.areas-section {
  padding: 100px 0;
  position: relative;
  background: var(--white);
}
 
.areas-container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
}
 
.areas-layout {
  gap: 60px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1.5fr;
}
 

 
.areas-grid {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
 
.areas-title {
  color: var(--dark-blue);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}
 
.areas-text {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 40px;
}
 
.areas-stats {
  gap: 40px;
  display: flex;
}
 
.area-card {
  border: 1px solid #eee;
  cursor: default;
  padding: 30px;
  background: var(--gray-100);
  transition: var(--transition);
  border-radius: 15px;
}
 
.stat-item {
  display: flex;
  flex-direction: column;
}
 
.area-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
 
.area-name {
  color: var(--dark-blue);
  font-size: 1.25rem;
  font-weight: 700;
}
 
.area-detail {
  color: #777;
  font-size: 0.9rem;
}
 
.stat-num {
  color: var(--primary-blue);
  font-size: 2.5rem;
  font-weight: 800;
}
 
.stat-label {
  color: #888;
  font-weight: 600;
}
 
.why-us-section {
  color: var(--white);
  padding: 100px 0;
  background: var(--dark-blue);
}
 
.why-us-container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
}
 
.why-us-grid {
  gap: 40px;
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(3, 1fr);
}
 
.section-subtitle {
  margin: 0 auto;
  opacity: 0.7;
  font-size: 1.1rem;
  max-width: 600px;
}
 
.why-item {
  text-align: center;
}
 
.why-icon-wrapper {
  color: var(--secondary-blue);
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  align-items: center;
  border-radius: 50%;
  justify-content: center;
}
 

 

 
.cta-banner-section {
  color: var(--white);
  padding: 120px 0;
  background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 86, 179, 0.9)),url("https://images.pexels.com/photos/6195129/pexels-photo-6195129.jpeg?auto=compress&cs=tinysrgb&h=600&w=1200");
  text-align: center;
  background-size: cover;
  background-position: center;
}
 
.cta-banner-content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 800px;
}
 
.cta-banner-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}
 
.cta-banner-text {
  opacity: 0.9;
  font-size: 1.25rem;
  margin-bottom: 40px;
}
 

 
.btn-primary-glow {
  gap: 12px;
  color: var(--primary-blue);
  display: inline-flex;
  padding: 20px 40px;
  font-size: 1.3rem;
  background: var(--white);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  align-items: center;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none;
}
 

 
.main-footer {
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
  background: #0a0e14;
}
 
.footer-container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
}
 
.footer-grid {
  gap: 60px;
  display: grid;
  margin-bottom: 60px;
  grid-template-columns: 2fr 1fr 1fr;
}
 
.footer-bottom {
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 30px;
}
 

 

 

 
.footer-logo {
  gap: 10px;
  color: var(--white);
  display: flex;
  font-size: 1.5rem;
  align-items: center;
  font-weight: 800;
  margin-bottom: 20px;
}
 
.footer-bio {
  max-width: 400px;
}
 
.footer-heading {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
}
 
.contact-list {
  list-style: none;
}
 
.footer-links {
  list-style: none;
}
 
.hero-cta:hover {
  color: var(--white);
  transform: translateY(-5px);
  background: var(--primary-blue);
  border-color: var(--white);
}
 
.mouse::after {
  top: 10px;
  left: 50%;
  width: 4px;
  height: 8px;
  content: "";
  position: absolute;
  animation: scrollMouse 2s infinite;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 2px;
}
 
.service-card.featured {
  color: var(--white);
  transform: scale(1.05);
  background: var(--primary-blue);
}
 
.service-card.featured .service-name {
  color: var(--white);
}
 
.service-card.featured .service-icon-box {
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
}
 
.service-card:hover {
  transform: translateY(-10px);
}
 
.service-card:hover .service-hover-content {
  bottom: 0;
  opacity: 1;
}
 
.service-card.featured .service-link {
  color: var(--white);
}
 
.area-card:hover {
  transform: translateX(5px);
  background: var(--light-blue);
  border-color: var(--primary-blue);
}
 
.why-us-section  .section-title {
  color: var(--white);
}
 
.why-item:hover .why-icon-wrapper {
  color: var(--white);
  transform: rotateY(180deg);
  background: var(--secondary-blue);
}
 
.why-item  h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
 
.why-item  p {
  opacity: 0.8;
  font-size: 0.95rem;
}
 
.btn-primary-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
}
 
.footer-logo  svg {
  color: var(--secondary-blue);
}
 
.contact-list  li {
  gap: 12px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
 
.contact-list  a {
  color: inherit;
  transition: var(--transition);
  text-decoration: none;
}
 
.contact-list  a:hover {
  color: var(--secondary-blue);
}
 
.footer-links  li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}
 
.footer-links  li::before {
  left: 0;
  color: var(--secondary-blue);
  content: "→";
  position: absolute;
}
 
.Content {
  font-size: 16px;
  font-family: Inter;
  font-weight: 400;
  line-height: 1.15;
  text-transform: none;
  text-decoration: none;
}
 
@media(max-width: 991px) {
  .thq-grid-4 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .areas-layout {
    text-align: center;
    grid-template-columns: 1fr;
  }
  .areas-stats {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-info {
    grid-column: span 2;
  }
}
 
@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-title {
    font-size: 3rem;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner-title {
    font-size: 2.2rem;
  }
}
 
@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-title {
    font-size: 2.2rem;
  }
  .hero-cta {
    padding: 15px 25px;
    font-size: 1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-info {
    grid-column: span 1;
  }
}
