
@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/Poppins/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/Poppins/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/Poppins/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/Poppins/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/Poppins/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}


@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/Poppins/Poppins-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/Poppins/Poppins-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}






:root {
  --main-color: #00a8ad;
  --main-color-2: #ffd7b0;
}




.bg-main {
  background-color: var(--main-color) !important;
}
.bg-main-2 {
  background-color: var(--main-color-2) !important;
}

.text-main {
  color: var(--main-color) !important;
}

.text-main-2 {
  color: var(--main-color-2) !important;
}


.btn-custom {
  background-color: black;
  color: white;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 300;
  padding: 10px 33px;
  border-radius: 4px;
}

.btn-custom:hover {
  background-color: black;
  color: white;
}

.fs-10 { font-size: 10px; }
.fs-11 { font-size: 11px; }
.fs-12 { font-size: 12px; }
.fs-13 { font-size: 13px; }
.fs-14 { font-size: 14px; }
.fs-15 { font-size: 15px; }
.fs-16 { font-size: 16px; }
.fs-17 { font-size: 17px; }
.fs-18 { font-size: 18px; }
.fs-19 { font-size: 19px; }
.fs-20 { font-size: 20px; }
.fs-21 { font-size: 21px; }
.fs-22 { font-size: 22px; }
.fs-23 { font-size: 23px; }
.fs-24 { font-size: 24px; }
.fs-25 { font-size: 25px; }

.fw-100 { font-weight: 100; }
.fw-200 { font-weight: 200; }
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

.hover-shadow {
  transition: box-shadow 0.3s ease;
}
.hover-shadow:hover {
  box-shadow: var(--bs-box-shadow);
}












body {
  font-family: 'Work Sans', sans-serif !important;
  padding-top: 80px;
}
li {
  font-weight: 300;
}
p {
  font-weight: 300;
}

.navbar {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 992px) {
  .navbar {
    padding-top: 23px;
    padding-bottom: 22px;
  }
}

.navbar .navbar-nav .nav-item {
  font-size: 14px;
  padding-left: 8px;
  padding-right: 8px;
}

.mobile-menu {
  width: auto !important;
  min-width: 240px;
  max-width: 280px;
}

.mobile-menu .nav-link {
  font-size: 1rem;
  padding: 10px 0;
}

.hero-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.hero-section h1 {
  font-size: 44px;
}

.hero-section .paragraph {
  font-size: 17px;
}

.home-page .hero-section {
  background: url('../images/home/hero-section-bg.jpg') center/cover no-repeat;
}




.stats-section {
  min-height: 80vh;
  background-image: url("../images/home/stats-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  margin-top: 100px;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stat-circle {
  background: #383838;
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1 / 1;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.stat-circle h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 5px;
}

.stat-circle p {
  color: white;
  font-size: 0.9rem;
  line-height: 20px;
}






.testimonial-section {
  background-color: var(--main-color-2);
}

.footer-section {
  background-color: var(--main-color-2);
  border-top: 
}
.footer-section li {
  font-size: 14px;
  margin-top: 3px;
}
.footer-section li a{
  display: block;
  text-decoration: none;
  color: black;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }
  .footer-section {
    text-align: center;
  }
}




.services-page .hero-section {
  background: url('../images/services/hero-section-bg.png') center/cover no-repeat;
}

.services-page .accounting-finance {
  background: url('../images/services/accounting-finance.png') center/cover no-repeat;
}

.services-page .strategic-growth {
  background: url('../images/services/strategic-growth.jpeg') center/cover no-repeat;
}

.services-page .human-resources {
  background: url('../images/services/human-resources.jpg') center/cover no-repeat;
}



.services-page .service-list li {
  margin-top: 7px;
}

.services-page .service-list li::marker {
  color: var(--main-color);
}




.about-page .hero-section {
  background: url('../images/about/hero-section-bg.jpeg') center/cover no-repeat;
}

.about-page .section-3 {
  background: url('../images/about/section-3-bg.jpg') center/cover no-repeat;
}




.careers-page .hero-section {
  background: url('../images/careers/hero-section-bg.jpg') center/cover no-repeat;
}
.careers-page .section-4 {
  background: url('../images/careers/section-4-bg.jpg') center/cover no-repeat;
}




.clients-page .hero-section {
  background: url('../images/clients/hero-section-bg.jpg') center/cover no-repeat;
}


.clients-page .category-nav-section {
  width: 100%;
}

.clients-page .category-nav-section.is-fixed {
  position: fixed;
  top: 85px;
  left: 0;
  z-index: 1020;
  width: 100%;
}

.clients-page .category {
  min-height: 800px;
  color: white;
}
@media (max-width: 577px) {
  .clients-page .category {
    min-height: 1000px;
  }
}
.clients-page .category.category-1 {
  background: url('../images/clients/software-development.jpg') center/cover no-repeat;
}

.clients-page .category.category-2 {
  background: url('../images/clients/bacteria.jpg') center/cover no-repeat;
}

.clients-page .category.category-3 {
  background: url('../images/clients/gaming-setup.jpg') center/cover no-repeat;
}

.clients-page .category.category-4 {
  background: url('../images/clients/device.jpg') center/cover no-repeat;
}










.contact-page {
  background: #f4f6f9;
}

.contact-box {
  background: #fff;
  padding: 30px;
  height: 100%;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.contact-box h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

.form-control {
  padding: 12px 14px;
  border-radius: 6px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--main-color);
}
.form-select {
  padding: 12px 14px;
  border-radius: 6px;
}

.form-select:focus {
  box-shadow: none;
  border-color: var(--main-color);
}

.input-group-text {
  background: #fff;
}

.info-card {
  border: 1px solid #e5e7eb;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.info-card i {
  font-size: 24px;
  color: var(--main-color);
}

.info-card h6 {
  margin: 0;
  font-weight: 600;
}

.info-card p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.map-wrapper {
  margin-top: 20px;
  border: 1px solid #e5e7eb;
}

.map-wrapper iframe {
  width: 100%;
  height: 240px;
  border: 0;
}