html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #6c757d;
  --text-gray: #606060;
  --star-yellow: #ffd700;
  --white: #ffffff;
  --light-bg: #f2f2f2;
  --black: #000000;
  --icon-grey: #888888;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Section Padding */
.section-padding {
  padding: 64px;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 16px 64px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
  height: 45px;
  width: auto;
}

.navbar-nav {
  gap: 24px;
}

.nav-link {
  font-family: "Poppins", sans-serif;
  color: var(--black) !important;
  font-weight: 400;
  font-size: 16px;
  transition: color 0.3s ease;
  padding: 8px 0 !important;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Dropdown */
.dropdown-toggle::after {
  margin-left: 6px;
}

.dropdown-menu.company-dropdown {
  left: auto !important;
  right: auto !important;
}

.company-dropdown {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  min-width: 401px;
  margin-top: 8px;
  padding: 0;
}

.company-dropdown-content {
  background: var(--white);
  padding: 0;
}

.company-item {
  display: block;
  padding: 20px 28px;
  text-decoration: none;
  transition: background 0.2s ease;
  border-bottom: 1px solid #f2f2f2;
}

.company-item:last-child {
  border-bottom: none;
}

.company-item:hover {
  background: #f9f9f9;
}

.company-item h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 6px;
}

.company-item p {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  margin: 0;
}

/* Hero Section */
.hero {
  background: url("/assets/images/home-hero.png") center center / cover
    no-repeat;
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 64px;
  margin-top: 77px;
  height: 100vh;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--white);
}

.hero p {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 18px 24px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-dark {
  background-color: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.btn-light {
  background-color: var(--white);
  color: var(--black);
}

.btn-light:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}

/* Services Section */
#services {
  background-color: var(--white);
  padding: 64px;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-gray);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 48px 32px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.service-icon svg {
  width: 48px;
  height: 48px;
  color: var(--icon-grey);
}

.service-title {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}

.service-description {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
}

.btn-explore {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  background-color: var(--black);
  border: none;
  padding: 18px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 48px;
}

.btn-explore:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

/* Numbers Section */
.numbers-section {
  background-color: var(--light-bg);
  padding: 64px;
}

.number-item {
  padding: 32px 16px;
}

.number-value {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1;
}

.number-label {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Clients Section */
.clients-section {
  padding: 64px;
  background: var(--white);
  overflow: hidden;
}

.clients-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 48px;
}

.clients-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scrollClients 30s linear infinite;
}

.clients-track img {
  height: 48px;
  width: 160px;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.clients-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scrollClients {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 64px;
  background-color: var(--white);
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stars {
  margin-bottom: 24px;
  display: flex;
  gap: 4px;
}

.star {
  color: var(--star-yellow);
  font-size: 20px;
}

.testimonial-text {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 30px;
}

.client-info {
  margin-top: auto;
}

.client-name {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.client-company {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.4;
}

/* CTA Section */
.cta-section {
  background-color: var(--light-bg);
  padding: 64px;
  height: 388px;
  display: flex;
  align-items: center;
}

.cta-title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-btn {
  width: 282px;
  display: flex;
  justify-content: space-between;
}

.cta-text {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.6;
  margin: 0;
}

/* Footer */
.footer {
  background-color: #212121;
  color: #ffffff;
  padding: 64px 0 0;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

.footer-top {
  padding-bottom: 48px;
}

.footer-logo img {
  max-width: 120px;
  height: auto;
}

.footer-heading {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #b8b8b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #b8b8b8;
  line-height: 1.5;
}

.footer-contact .contact-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.footer-contact .contact-item span {
  flex: 1;
}

.contact-item a {
  color: #b8b8b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--white);
}

/* Footer Socials */
.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
}

.footer-copyright p {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #b8b8b8;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #b8b8b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* Light Grey Sections */
.bg-light-section {
  background-color: var(--light-bg);
}

/* About Hero Section */
.about-hero {
  padding: 140px 64px 64px;
  background-color: var(--white);
}

.hero-label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-description {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Vision & Mission Section */
.vision-mission-section {
  padding: 64px;
  background-color: var(--light-bg);
}

.vm-card {
  background: var(--white);
  border-radius: 12px;
  padding: 48px 32px;
  height: 100%;
  text-align: center;
}

.vm-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.vm-icon svg {
  width: 48px;
  height: 48px;
}

.vm-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}

.vm-text {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* Our Story Section */
.our-story-section {
  padding: 64px;
  background-color: var(--white);
}

.story-text {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Core Values Section */
.core-values-section {
  padding: 64px;
  background-color: var(--light-bg);
}

.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.value-icon svg {
  width: 48px;
  height: 48px;
}

.value-title {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}

.value-description {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* CSR Section */
.csr-section {
  padding: 64px;
  background-color: var(--white);
}

.csr-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}

.csr-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.csr-text {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0;
}

.csr-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Services Hero Section */
.services-hero {
  padding: 140px 64px 64px;
  background-color: var(--white);
}

.services-hero-btn {
  border: var(--black) solid 2px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Our Services Section */
.our-services-section {
  padding: 64px;
  background-color: var(--light-bg);
}

.service-detail-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-detail-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content {
  padding: 32px;
}

.service-detail-title {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}

.service-detail-description {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail-list li {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-gray);
  padding-left: 24px;
  margin-bottom: 10px;
  position: relative;
}

.service-detail-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--black);
  font-weight: bold;
}

/* Technology Section */
.technology-section {
  padding: 64px;
  background-color: var(--white);
}

.tech-card {
  text-align: center;
  padding: 32px 24px;
}

.tech-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.tech-icon svg {
  width: 48px;
  height: 48px;
  color: var(--icon-grey);
}

.tech-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}

.tech-description {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* Industry Focus Section */
.industry-focus-section {
  padding: 64px;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("/assets/images/industry-focus-bg.png") center center / cover no-repeat;
  color: var(--white);
  height: 498px;
  display: flex;
  align-items: center;
}

.industry-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.industry-description {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  margin: 0;
}

.industry-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Projects Section */
.projects-section {
  padding: 64px;
  background-color: var(--white);
}

.project-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.project-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-completed {
  background-color: #10b981;
  color: var(--white);
}

.badge-ongoing {
  background-color: #3b82f6;
  color: var(--white);
}

.project-content {
  padding: 28px;
}

.project-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.project-client {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.project-description {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* Services CTA Section */
.services-cta-section {
  padding: 64px;
  background-color: var(--light-bg);
}

/* Our People Page Styles */

/* People Hero Section */
.people-hero {
  padding: 140px 64px 64px;
  background-color: var(--white);
  text-align: center;
}

.people-hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 24px;
}

.people-hero-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.hero-image-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Board of Directors Section */
.board-section {
  padding: 64px;
  background-color: var(--white);
}

/* Avatar-based Director Card */
.director-card-avatar {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.director-card-avatar:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.avatar-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.avatar-initials {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}

.director-info-avatar {
  text-align: center;
}

.director-info-avatar .director-name {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.director-info-avatar .director-role {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  margin: 0;
}

/* Management Team Section */
.management-section {
  padding: 64px;
  background-color: var(--white);
}

/* Management Grid — side by side */
.management-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

/* Avatar-based Management Member Card */
.management-member-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 40px;
  transition: all 0.3s ease;
}

.management-member-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.management-member-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.avatar-circle-sm {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.avatar-circle-sm .avatar-initials {
  font-size: 26px;
}

.management-member-intro {
  flex: 1;
}

.management-member-intro .team-member-name {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.management-member-intro .team-member-title {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 0;
}

.management-member-bio-block .team-member-bio {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.management-member-bio-block .team-member-bio:last-child {
  margin-bottom: 0;
}

/* Work Culture Section */
.work-culture-section {
  padding: 64px;
  background-color: var(--light-bg);
}

.culture-image-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.culture-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.culture-card {
  text-align: center;
  padding: 32px 24px;
}

.culture-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.culture-icon svg {
  width: 48px;
  height: 48px;
  color: var(--icon-grey);
}

.culture-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}

.culture-description {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* Work With Us Page Styles */

/* Careers Hero Section */
.careers-hero {
  padding: 140px 64px 64px;
  background-color: var(--white);
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
}

.careers-hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 24px;
}

.careers-hero-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 32px;
}

/* Company Culture Section */
.company-culture-section {
  padding: 64px;
  background-color: var(--light-bg);
}

.culture-image-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.culture-image-card:hover {
  transform: translateY(-5px);
}

.culture-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 32px 24px;
}

.culture-overlay-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

/* Open Roles Section */
.open-roles-section {
  padding: 64px;
  background-color: var(--white);
}

.no-roles-card {
  background-color: var(--light-bg);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 80px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.no-roles-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}

.no-roles-text {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-gray);
  margin: 0;
}

/* Employee Well-being Section */
.wellbeing-section {
  padding: 64px;
  background-color: var(--light-bg);
}

.wellbeing-image-card {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
}

.wellbeing-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wellbeing-image-card:hover img {
  transform: scale(1.05);
}

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
  padding: 140px 64px 24px;
  background-color: var(--white);
  text-align: center;
}

.contact-hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 24px;
}

.contact-hero-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
  padding: 64px;
  background-color: var(--white);
}

.contact-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.form-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 8px;
}

.contact-input,
.contact-textarea {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  background-color: var(--light-bg);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 16px;
  transition: all 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  background-color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.1);
  outline: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #999999;
}

.contact-textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  background-color: var(--black);
  border: none;
  padding: 16px 48px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-submit:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: var(--white);
}

.btn-submit svg {
  flex-shrink: 0;
}

.form-success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 9999;
}

.form-success.show {
  opacity: 1;
  visibility: visible;
}

.success-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 420px;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.form-success.show .success-content {
  transform: scale(1);
}

.success-icon {
  width: 70px;
  height: 70px;
  background: #28a745;
  color: white;
  font-size: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.btn-loading {
  display: none;
  align-items: center;
  gap: 10px;
}

.btn-submit.loading .btn-text {
  display: none;
}

.btn-submit.loading .btn-loading {
  display: flex;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Coming Soon / Under Construction Page Styles */

.coming-soon-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 64px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.coming-soon-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Construction Icon */
.construction-icon {
  margin-bottom: 40px;
  animation: bounce 2s ease-in-out infinite;
}

.construction-icon svg {
  color: var(--icon-grey);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Main Message */
.coming-soon-title {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.2;
}

.coming-soon-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Features Section */
.coming-soon-features {
  margin-bottom: 60px;
}

.feature-item {
  text-align: center;
  padding: 24px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background-color: var(--primary-color);
  transform: scale(1.1);
}

.feature-item:hover .feature-icon svg path {
  stroke: var(--white);
}

.feature-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.feature-description {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  margin: 0;
}

/* CTA Section */
.coming-soon-cta {
  margin-bottom: 40px;
}

.cta-text {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 24px;
}

/* Coming Soon Badge */
.coming-soon-badge {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, #6c757d 0%, #adb5bd 100%);
  border-radius: 50px;
  animation: pulse 2s ease-in-out infinite;
}

.badge-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(108, 117, 125, 0);
  }
}

/* Responsive Design */
@media (min-width: 1440px) {
  .hero p {
    font-size: 20px;
  }

  .hero-label {
    font-size: 20px;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-description {
    font-size: 24px;
  }
}

@media (max-width: 1199px) {
  .hero h1 {
    font-size: 48px;
  }

  .number-value {
    font-size: 48px;
  }

  .cta-title {
    font-size: 36px;
  }
}

/* Dropdown fixes for mobile */
@media (max-width: 991px) {
  .navbar {
    padding: 12px 32px;
  }

  /* Fix dropdown behavior on mobile */
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    left: 0 !important;
    border: none;
    box-shadow: none;
    margin-top: 8px;
  }

  .company-dropdown {
    width: 100%;
    min-width: unset;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: static !important;
  }

  .company-item {
    padding: 16px 20px;
  }

  .company-item h6 {
    font-size: 15px;
  }

  .company-item p {
    font-size: 13px;
  }

  .about-hero {
    padding: 120px 32px 48px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .vision-mission-section,
  .our-story-section,
  .core-values-section,
  .csr-section {
    padding: 48px 32px;
  }

  .vm-card,
  .value-card {
    padding: 36px 24px;
    margin-bottom: 24px;
  }

  .vm-title {
    font-size: 22px;
  }

  .vm-text {
    font-size: 16px;
  }

  .value-title {
    font-size: 20px;
  }

  .csr-title {
    font-size: 28px;
  }

  .people-hero {
    padding: 120px 32px 48px;
    height: 100vh;
    display: flex;
    align-items: center;
  }

  .people-hero-title {
    font-size: 36px;
  }

  .people-hero-subtitle {
    font-size: 16px;
  }

  .board-section,
  .management-section,
  .work-culture-section {
    padding: 48px 32px;
  }

  .director-card-avatar {
    margin-bottom: 24px;
  }

  .management-member-card {
    padding: 32px 28px;
  }

  .management-member-intro .team-member-name {
    font-size: 20px;
  }

  .management-member-intro .team-member-title {
    font-size: 14px;
  }

  .management-member-bio-block .team-member-bio {
    font-size: 15px;
  }

  .culture-title {
    font-size: 18px;
  }

  .culture-description {
    font-size: 15px;
  }

  careers-hero {
    padding: 120px 32px 48px;
  }

  .careers-hero-title {
    font-size: 36px;
  }

  .careers-hero-subtitle {
    font-size: 16px;
  }

  .company-culture-section,
  .open-roles-section,
  .wellbeing-section {
    padding: 48px 32px;
  }

  .culture-image-card,
  .wellbeing-image-card {
    height: 350px;
    margin-bottom: 24px;
  }

  .culture-overlay-title {
    font-size: 22px;
  }

  .no-roles-card {
    padding: 60px 32px;
  }

  .no-roles-title {
    font-size: 24px;
  }

  .contact-hero {
    padding: 120px 32px 48px;
  }

  .contact-hero-title {
    font-size: 36px;
  }

  .contact-hero-subtitle {
    font-size: 16px;
  }

  .contact-form-section {
    padding: 48px 32px;
  }

  .contact-form-wrapper {
    padding: 36px 28px;
  }

  .coming-soon-section {
    padding: 120px 32px 60px;
  }

  .coming-soon-title {
    font-size: 42px;
  }

  .coming-soon-subtitle {
    font-size: 18px;
  }

  .construction-icon svg {
    width: 100px;
    height: 100px;
  }
}

/* Ensure dropdown stays open when clicked */
.navbar-collapse .show {
  display: block !important;
}

.section-padding,
#services,
.numbers-section,
.clients-section,
.testimonials-section,
.cta-section,
.hero {
  padding: 48px 32px;
}

.hero {
  min-height: 80vh;
}

.hero h1 {
  font-size: 40px;
}

.section-title {
  font-size: 28px;
}

.section-subtitle {
  font-size: 16px;
}

.service-card {
  padding: 36px 24px;
  margin-bottom: 24px;
}

.number-value {
  font-size: 40px;
}

.cta-title {
  font-size: 32px;
}

.testimonial-card {
  padding: 30px 24px;
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 16px;
}

.clients-track {
  gap: 60px;
}

.services-hero {
  padding: 120px 32px 48px;
}

.hero-title {
  font-size: 36px;
}

.hero-description {
  font-size: 16px;
}

.our-services-section,
.technology-section,
.industry-focus-section,
.projects-section,
.services-cta-section {
  padding: 48px 32px;
}

.service-detail-card {
  margin-bottom: 24px;
}

.service-detail-image {
  height: 220px;
}

.service-detail-content {
  padding: 24px;
}

.tech-card {
  margin-bottom: 24px;
}

.project-image {
  height: 240px;
}

.industry-title {
  font-size: 28px;
}

@media (max-width: 767px) {
  .navbar {
    padding: 12px 24px;
  }

  .section-padding,
  #services,
  .numbers-section,
  .clients-section,
  .testimonials-section,
  .cta-section,
  .hero {
    padding: 48px 24px;
  }

  .hero {
    min-height: 70vh;
    margin-top: 70px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .service-card {
    padding: 32px 20px;
  }

  .service-title {
    font-size: 20px;
  }

  .service-description {
    font-size: 15px;
  }

  .btn-explore {
    width: 100%;
  }

  .number-value {
    font-size: 36px;
  }

  .number-label {
    font-size: 12px;
  }

  .clients-track {
    gap: 40px;
  }

  .clients-track img {
    height: 36px;
    width: 120px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .cta-title {
    font-size: 28px;
    text-align: center;
  }

  .cta-text {
    font-size: 16px;
    text-align: center;
  }

  .cta-section .btn {
    width: 100%;
    text-align: center;
  }

  .footer-section {
    padding: 24px;
  }

  .services-hero {
    padding: 100px 24px 48px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .our-services-section,
  .technology-section,
  .industry-focus-section,
  .projects-section,
  .services-cta-section {
    padding: 48px 24px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .service-detail-image {
    height: 200px;
  }

  .service-detail-content {
    padding: 20px;
  }

  .service-detail-title {
    font-size: 20px;
  }

  .service-detail-description,
  .tech-description,
  .project-description {
    font-size: 15px;
  }

  .tech-title {
    font-size: 18px;
  }

  .project-image {
    height: 220px;
  }

  .project-title {
    font-size: 18px;
  }

  .industry-title {
    font-size: 24px;
    text-align: center;
  }

  .industry-description {
    font-size: 16px;
    text-align: center;
  }

  .people-hero {
    padding: 100px 24px 48px;
  }

  .people-hero-title {
    font-size: 28px;
  }

  .people-hero-subtitle {
    font-size: 15px;
  }

  .board-section,
  .management-section,
  .work-culture-section {
    padding: 48px 24px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  /* Avatar responsive - Board */
  .avatar-circle {
    width: 80px;
    height: 80px;
  }

  .avatar-initials {
    font-size: 26px;
  }

  .director-card-avatar {
    padding: 32px 20px;
  }

  .director-info-avatar .director-name {
    font-size: 14px;
  }

  .director-info-avatar .director-role {
    font-size: 13px;
  }

  /* Management grid — stack on mobile */
  .management-grid {
    grid-template-columns: 1fr;
  }

  /* Avatar responsive - Management */
  .management-member-card {
    padding: 28px 20px;
  }

  .management-member-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .avatar-circle-sm {
    width: 72px;
    height: 72px;
  }

  .avatar-circle-sm .avatar-initials {
    font-size: 24px;
  }

  .management-member-intro {
    text-align: center;
  }

  .management-member-intro .team-member-name {
    font-size: 18px;
  }

  .management-member-intro .team-member-title {
    font-size: 13px;
  }

  .management-member-bio-block .team-member-bio {
    font-size: 14px;
    text-align: center;
  }

  .culture-card {
    margin-bottom: 24px;
  }

  .careers-hero {
    padding: 100px 24px 48px;
  }

  .careers-hero-title {
    font-size: 28px;
  }

  .careers-hero-subtitle {
    font-size: 15px;
  }

  .company-culture-section,
  .open-roles-section,
  .wellbeing-section {
    padding: 48px 24px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .culture-image-card,
  .wellbeing-image-card {
    height: 300px;
  }

  .culture-overlay {
    padding: 24px 20px;
  }

  .culture-overlay-title {
    font-size: 20px;
  }

  .no-roles-card {
    padding: 48px 24px;
  }

  .no-roles-title {
    font-size: 22px;
  }

  .no-roles-text {
    font-size: 15px;
  }

  .contact-hero {
    padding: 100px 24px 48px;
  }

  .contact-hero-title {
    font-size: 28px;
  }

  .contact-hero-subtitle {
    font-size: 15px;
  }

  .contact-form-section {
    padding: 48px 24px;
  }

  .contact-form-wrapper {
    padding: 32px 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  }

  .form-label {
    font-size: 13px;
  }

  .contact-input,
  .contact-textarea {
    font-size: 14px;
    padding: 12px 14px;
  }

  .btn-submit {
    width: 100%;
    padding: 14px 32px;
    font-size: 15px;
  }

  .coming-soon-section {
    padding: 100px 24px 60px;
  }

  .coming-soon-title {
    font-size: 32px;
  }

  .coming-soon-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .construction-icon {
    margin-bottom: 30px;
  }

  .construction-icon svg {
    width: 80px;
    height: 80px;
  }

  .coming-soon-features {
    margin-bottom: 40px;
  }

  .feature-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .feature-title {
    font-size: 17px;
  }

  .feature-description {
    font-size: 13px;
  }

  .cta-text {
    font-size: 16px;
  }

  .btn-lg {
    width: 100%;
  }

  .badge-text {
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 575px) {
  .hero h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 22px;
  }

  .number-value {
    font-size: 32px;
  }

  .cta-title {
    font-size: 24px;
  }
}
