@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

/*!
Website: Key Global Projects (金钥国际)
Design System: Based on Fixcon Index-4 Template
Version: 1.0.0
*/

/*--------------------------------------------------------------
# RESET & GLOBAL
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Inter", sans-serif;
  color: #555555;
  font-size: 1rem;
  line-height: 1.5;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# TYPOGRAPHY
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  clear: both;
  line-height: 1.3;
  font-family: "Space Grotesk", sans-serif;
  color: #021738;
  font-weight: 700;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

/* Mobile Typography */
h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

/* Desktop Typography */
@media (min-width: 576px) {
  h1 { font-size: 3.75rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.875rem; }
  h4 { font-size: 1.5rem; }
  h5 { font-size: 1.25rem; }
  h6 { font-size: 1.125rem; }
}

p {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
  color: #555555;
}

a {
  color: #021738;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover, a:focus {
  color: #34bd6b;
  text-decoration: none;
  outline: none;
}

/*--------------------------------------------------------------
# COLORS
--------------------------------------------------------------*/
.text-primary { color: #34bd6b !important; }
.text-navy { color: #021738 !important; }
.bg-primary { background-color: #34bd6b !important; }
.bg-navy { background-color: #021738 !important; }
.bg-light-gray { background-color: #F2F6F9 !important; }

/*--------------------------------------------------------------
# SPACING UTILITIES
--------------------------------------------------------------*/
.padding-tb {
  padding: 80px 0;
}

@media (min-width: 992px) {
  .padding-tb {
    padding: 120px 0;
  }
}

.mb-30 { margin-bottom: 30px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mt-20 { margin-top: 20px; }

/*--------------------------------------------------------------
# PRELOADER
--------------------------------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner {
  text-align: center;
}

.preloader-icon span {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: #34bd6b;
  border-radius: 100%;
  margin: 0 5px;
  animation: bounce 1.4s infinite ease-in-out both;
}

.preloader-icon span:nth-child(1) {
  animation-delay: -0.32s;
}

.preloader-icon span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/
.header {
  position: relative;
  width: 100%;
  z-index: 999;
}

.header__top {
  background: #F2F6F9;
  padding: 15px 0;
  border-bottom: 1px solid #ecf0f3;
}

.header__top .info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.header__top .info ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #555555;
}

.header__top .info ul li img {
  width: 16px;
  height: 16px;
}

.header__top .social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.header__top .social ul li a {
  color: #555555;
  font-size: 0.875rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.header__top .social ul li a:hover {
  color: #34bd6b;
}

.header__top--center {
  background: #fff;
  padding: 25px 0;
  border-bottom: 1px solid #ecf0f3;
}

.header__toparea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.logo a {
  display: inline-block;
}

.header__toparea .info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

.header__toparea .info ul li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__toparea .info ul li .thumb img {
  width: 40px;
  height: 40px;
}

.header__toparea .info ul li .text span {
  display: block;
  font-size: 0.875rem;
  color: #555555;
  margin-bottom: 3px;
}

.header__toparea .info ul li .text p {
  margin: 0;
  font-weight: 600;
  color: #021738;
  font-size: 1rem;
}

.header__bottom {
  background: #fff;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header__bottom .area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-menu {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 35px;
}

.menu ul li a {
  display: block;
  padding: 25px 0;
  color: #021738;
  font-weight: 600;
  font-size: 1rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
  position: relative;
}

.menu ul li a:hover,
.menu ul li a.active {
  color: #34bd6b;
}

.menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #34bd6b;
  transition: width 0.3s ease;
}

.menu ul li a:hover::after,
.menu ul li a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.header__bararea {
  display: none;
}

.header__bar {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.header__bar span {
  width: 25px;
  height: 2px;
  background: #021738;
  transition: all 0.3s ease;
}

@media (max-width: 1199px) {
  .menu {
    display: none;
  }

  .header__bararea {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .header__bar {
    display: flex;
  }
}

/*--------------------------------------------------------------
# BANNER / HERO
--------------------------------------------------------------*/
.banner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 992px) {
  .banner {
    min-height: 700px;
  }
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 23, 56, 0.6);
  z-index: 1;
}

.banner__area {
  position: relative;
  z-index: 2;
  width: 100%;
}

.banner__content h6 {
  color: #34bd6b;
  font-size: 1.125rem;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner__content h2 {
  color: #fff;
  margin-bottom: 20px;
}

.banner__content p {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.banner__btngroup {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.banner__slider__two {
  position: relative;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #34bd6b;
  background: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #34bd6b;
}

/*--------------------------------------------------------------
# BUTTONS
--------------------------------------------------------------*/
.lab-btn {
  display: inline-block;
  padding: 0 1.3rem;
  line-height: 42px;
  background: #34bd6b;
  color: #fff !important;
  font-weight: 700;
  text-transform: capitalize;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 1200px) {
  .lab-btn {
    padding: 0 2rem;
    line-height: 56px;
  }
}

.lab-btn:hover {
  background: #021738;
  color: #fff !important;
  transform: translateY(-2px);
}

.video__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  transition: all 0.3s ease;
}

.video__btn i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #34bd6b;
  border-radius: 50%;
  font-size: 1.25rem;
}

.video__btn:hover {
  color: #34bd6b;
}

.video__btn:hover i {
  background: #fff;
  color: #34bd6b;
}

/*--------------------------------------------------------------
# FEATURE SLIDER (Dark Section)
--------------------------------------------------------------*/
.feature__four {
  background: #021738;
  padding: 0;
}

.feature__slider {
  overflow: hidden;
}

.feature__item {
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 70px 30px;
  transition: all 0.3s ease;
}

.feature__item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.feature__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.feature__thumb {
  width: 60px;
  text-align: center;
}

.feature__thumb img {
  max-width: 100%;
  filter: brightness(0) invert(1);
}

.feature__content {
  flex: 1;
}

.feature__content h5 {
  color: #fff;
  margin: 0;
  font-size: 1.125rem;
}

@media (max-width: 1199px) {
  .feature__four {
    padding: 90px 0;
  }

  .feature__item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 15px;
    text-align: center;
  }

  .feature__inner {
    flex-direction: column;
    justify-content: center;
  }

  .feature__thumb {
    width: auto;
  }
}

/*--------------------------------------------------------------
# SECTION HEADER
--------------------------------------------------------------*/
.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__header h6 {
  color: #34bd6b;
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section__header h2 {
  color: #021738;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# ABOUT SECTION
--------------------------------------------------------------*/
.about__thumb .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.about__thumb .thumb img {
  width: 100%;
  transition: all 0.3s ease;
}

.about__thumb .thumb:hover img {
  transform: scale(1.05);
}

.about__thumb .thumb--experience {
  position: absolute;
  left: 40px;
  bottom: 40px;
  background: #021738;
  padding: 15px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about__thumb .thumb--experience img {
  width: 40px;
  height: 40px;
}

.about__thumb .thumb--experience h5 {
  color: #fff;
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.about__content > h6 {
  color: #34bd6b;
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about__content > h2 {
  margin-bottom: 20px;
}

.about__content ul {
  list-style: none;
  margin: 30px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.about__content ul li {
  flex: 1 1 calc(50% - 15px);
  min-width: 250px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 15px 0;
}

.about__content ul li .icon {
  width: 60px;
  flex-shrink: 0;
}

.about__content ul li .icon img {
  width: 100%;
}

.about__content ul li .text h6 {
  margin-bottom: 8px;
  color: #021738;
}

.about__content ul li .text p {
  margin: 0;
  color: #555555;
  font-size: 0.9375rem;
}

/* Progress Bars */
.progressbararea {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.progressbararea li {
  margin-bottom: 25px;
}

.progressbararea li .title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.progressbararea li .title h5 {
  font-size: 1rem;
  margin: 0;
  color: #021738;
}

.progress {
  height: 8px;
  background: #F2F6F9;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  background: #34bd6b;
  height: 100%;
  transition: width 1s ease;
}

/*--------------------------------------------------------------
# SERVICE CARDS
--------------------------------------------------------------*/
.service__item {
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.service__inner {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service__inner:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.service__thumb {
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .service__thumb {
    width: 40%;
  }
}

.service__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.service__inner:hover .service__thumb img {
  transform: scale(1.1);
}

.service__content {
  width: 100%;
  padding: 30px;
  position: relative;
}

@media (min-width: 1200px) {
  .service__content {
    width: 60%;
  }
}

.service__icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service__icon img {
  width: 40px;
  height: 40px;
}

.service__content span {
  display: inline-block;
  color: #34bd6b;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.service__content h4 {
  margin-bottom: 15px;
}

.service__content h4 a {
  color: #021738;
  transition: all 0.3s ease;
}

.service__inner:hover .service__content h4 a {
  color: #34bd6b;
}

.service__content p {
  margin-bottom: 20px;
  color: #555555;
}

.read-more {
  color: #021738;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more:hover {
  color: #34bd6b;
  gap: 10px;
}

.read-more::after {
  content: '\f061';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.infotext {
  margin-top: 40px;
}

.infotext p {
  font-size: 1.125rem;
  color: #555555;
}

.infotext p a {
  color: #34bd6b;
  font-weight: 600;
}

.infotext p a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# SPECIALTY SECTION
--------------------------------------------------------------*/
.specialtie__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.specialtie__thumb {
  flex: 1;
  min-width: 300px;
}

.specialtie__thumb img {
  width: 100%;
  border-radius: 10px;
}

.specialtie__content {
  flex: 1;
  min-width: 300px;
}

.specialtie__content h6 {
  color: #34bd6b;
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.specialtie__content h2 {
  margin-bottom: 20px;
}

.specialtie__content p {
  margin-bottom: 30px;
  color: #555555;
}

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

.specialtie__content .content ul li {
  padding: 8px 0;
  color: #555555;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.specialtie__content .content ul li i {
  color: #34bd6b;
  margin-top: 3px;
  font-size: 1.125rem;
}

/*--------------------------------------------------------------
# WORK / PROCESS CARDS
--------------------------------------------------------------*/
.work__item {
  text-align: center;
  transition: all 0.3s ease;
}

.work__inner {
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.work__inner:hover {
  transform: translateY(-10px);
}

.work__thumb {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  background: #021738;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.work__inner:hover .work__thumb {
  background: #34bd6b;
}

.work__thumb img {
  max-width: 80px;
  filter: brightness(0) invert(1);
}

.work__thumb span {
  position: absolute;
  bottom: 0;
  right: 10px;
  width: 50px;
  height: 50px;
  line-height: 44px;
  background: #34bd6b;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.work__inner:hover .work__thumb span {
  background: #fff;
  color: #34bd6b;
  border-color: #34bd6b;
}

.work__content h4 {
  margin-bottom: 15px;
}

.work__content p {
  color: #555555;
  max-width: 290px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# TESTIMONIALS
--------------------------------------------------------------*/
.testimonial {
  background-size: cover;
  background-position: center;
  position: relative;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 23, 56, 0.85);
  z-index: 1;
}

.testimonial .container {
  position: relative;
  z-index: 2;
}

.testimonial .section__header h6,
.testimonial .section__header h2 {
  color: #fff;
}

.testimonial__inner {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.testimonial__thumb {
  width: 100px;
  flex-shrink: 0;
}

.testimonial__thumb .thumb {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.testimonial__thumb .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__thumb .thumb i {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  line-height: 44px;
  background: #34bd6b;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 1.25rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.testimonial__content {
  flex: 1;
  min-width: 250px;
}

.testimonial__content p {
  color: #555555;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial__author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.testimonial__author .name h5 {
  margin-bottom: 5px;
  color: #021738;
}

.testimonial__author .name span {
  color: #555555;
  font-size: 0.9375rem;
}

.testimonial__author .rating i {
  color: #34bd6b;
  font-size: 1rem;
}

/*--------------------------------------------------------------
# STATS COUNTER
--------------------------------------------------------------*/
.stats-item {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stats-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-item h2 {
  color: #34bd6b;
  font-size: 3rem;
  margin-bottom: 10px;
}

.stats-item h4 {
  color: #021738;
  font-size: 1.125rem;
  margin: 0;
}

/*--------------------------------------------------------------
# BLOG CARDS
--------------------------------------------------------------*/
.blog__item {
  background: #fff;
  border: 1px solid #F2F6F9;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.blog__item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.blog__thumb {
  position: relative;
  overflow: hidden;
}

.blog__thumb img {
  width: 100%;
  transition: all 0.3s ease;
}

.blog__item:hover .blog__thumb img {
  transform: scale(1.1);
}

.blog__thumb .date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #34bd6b;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog__content {
  padding: 25px;
}

.blog__meta {
  border-bottom: 1px solid #F2F6F9;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.blog__meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.blog__meta ul li {
  color: #555555;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog__meta ul li i {
  color: #34bd6b;
}

.blog__content h4 {
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog__content h4 a {
  color: #021738;
  transition: all 0.3s ease;
}

.blog__item:hover .blog__content h4 a {
  color: #34bd6b;
}

.blog__content p {
  color: #555555;
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# CONTACT FORM
--------------------------------------------------------------*/
.callAaction__form {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.callAaction__form h2 {
  margin-bottom: 30px;
  color: #021738;
}

.callAaction__form form input,
.callAaction__form form textarea,
.callAaction__form form select {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 20px;
  border: 1px solid #ecf0f3;
  border-radius: 5px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #021738;
  transition: all 0.3s ease;
}

.callAaction__form form input:focus,
.callAaction__form form textarea:focus,
.callAaction__form form select:focus {
  outline: none;
  border-color: #34bd6b;
  box-shadow: 0 0 0 3px rgba(52, 189, 107, 0.1);
}

.callAaction__form form textarea {
  min-height: 120px;
  resize: vertical;
}

.callAaction__form form .lab-btn {
  width: 100%;
  border: none;
  cursor: pointer;
}

.custom-select {
  position: relative;
}

.custom-select select {
  appearance: none;
  background: #fff;
  cursor: pointer;
}

.custom-select::after {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #021738;
  pointer-events: none;
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.footer {
  background: #021738;
  color: #fff;
}

.footer__top {
  padding: 80px 0 40px;
}

.footer__title h5 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.25rem;
}

.footer__about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.8;
}

.footer__about ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
}

.footer__about ul li a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer__about ul li a:hover {
  background: #34bd6b;
  transform: translateY(-3px);
}

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

.footer__page .footer__wrapper ul li {
  margin-bottom: 12px;
}

.footer__page .footer__wrapper ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer__page .footer__wrapper ul li a:hover {
  color: #34bd6b;
  padding-left: 5px;
}

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

.footer__post .footer__wrapper ul li {
  margin-bottom: 20px;
}

.footer__post .footer__wrapper ul li .content h6 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.footer__post .footer__wrapper ul li .content h6 a {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.footer__post .footer__wrapper ul li .content h6 a:hover {
  color: #34bd6b;
}

.footer__post .footer__wrapper ul li .content h6 i {
  color: #34bd6b;
  margin-right: 8px;
  font-size: 0.875rem;
}

.footer__post .footer__wrapper ul li .content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9375rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
}

.footer__copytext p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.footer__copytext p a {
  color: #34bd6b;
  font-weight: 600;
}

.footer__copytext p a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# SCROLL TO TOP
--------------------------------------------------------------*/
.scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #34bd6b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.scrollToTop.show {
  opacity: 1;
  visibility: visible;
}

.scrollToTop:hover {
  background: #021738;
  transform: translateY(-5px);
}

.scrollToTop i {
  font-size: 1.25rem;
}

/*--------------------------------------------------------------
# RESPONSIVE ADJUSTMENTS
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .header__toparea {
    flex-direction: column;
    text-align: center;
  }

  .header__toparea .info ul {
    justify-content: center;
  }

  .about__content ul li {
    flex: 1 1 100%;
  }

  .specialtie__inner {
    flex-direction: column;
  }

  .testimonial__inner {
    flex-direction: column;
    text-align: center;
  }

  .testimonial__thumb {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .banner__content h2 {
    font-size: 1.875rem;
  }

  .section__header h2 {
    font-size: 1.875rem;
  }

  .work__thumb {
    width: 120px;
    height: 120px;
  }

  .work__thumb img {
    max-width: 60px;
  }

  .stats-item h2 {
    font-size: 2.5rem;
  }

  .callAaction__form {
    padding: 30px 20px;
  }
}
