/* --- Reset & Variables --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-orange: #d95338;
  --primary-hover: #be4128;
  --text-dark: #1e1e1e;
  --border-color: #e5e5e5;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --tp-common-white: #FFFFFF;
  --tp-common-black: #000000;
  --tp-theme-secondary: #222F30;
  --tp-accounting-3: #022A5D;
  --tp-accounting-primary: #022A5D;
  --tp-text-body: #666666;
  --tp-border-light: #EBEBEB;
  --tp-theme-dark: #0b1223;
  --tp-footer-border: rgba(255, 255, 255, 0.08);
  --tp-text-light: #CCCCCC;
  --tp-text-muted: #999999;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: #fff;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- Header / Navbar --- */
.navbar {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 100px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ==========================================
   Custom Logo Styling
   ========================================== */
.header-logo {
  display: flex;
  align-items: center;
}

.header-logo .logo-link {
  display: inline-block;
  line-height: 0; /* Prevents unwanted whitespace under inline images */
}

.header-logo .site-logo {
  height: 88px;        /* Adjust height to fit your specific header height */
  width: auto;         /* Maintains original image aspect ratio */
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Subtle hover feedback */
.header-logo .logo-link:hover .site-logo {
  opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .header-logo .site-logo {
    height: 68px; /* Slightly smaller logo for tablet/mobile viewports */
  }
}

.nav-menu {
  margin-left: 2rem;
  margin-right: 2rem;
}

.nav-list {
  display: flex;
  gap: 1.5rem;
}

.nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--primary-orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* --- Base Button Style (.tp-btn) --- */
.tp-btn {
  font-family: "TT Hoves Pro Trial", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  border-radius: 6px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 17px 58px 17px 23px;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-secondary);
  text-decoration: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.tp-btn:hover {
  color: var(--tp-common-white);
}

/* Color Variants */
.tp-btn-accounting-style {
  background-color: var(--tp-accounting-3);
}

.tp-at-hero-btn {
  background-color: var(--tp-accounting-primary);
}

/* --- Consora Switch Animation (.tp-btn-switch-animation) --- */
.tp-btn-switch-animation {
  transition: 0.3s ease-in-out;
}

.tp-btn-switch-animation .btn-text {
  position: relative;
  z-index: 3;
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.1, 0.75, 0.25, 1);
}

.tp-btn-switch-animation .btn-icon {
  position: absolute;
  top: 50%;
  right: 23px;
  margin-top: -3.5px;
  line-height: 0;
  z-index: 3;
  transition: opacity 0.4s cubic-bezier(0.1, 0.75, 0.25, 1) 0.25s, transform 0.6s 0.25s;
}

.tp-btn-switch-animation .btn-icon i {
  font-size: 7px;
  color: var(--tp-common-white);
}

.tp-btn-switch-animation .btn-icon + .btn-icon {
  order: -2;
  opacity: 0;
  right: auto;
  left: 23px;
  transform: translateX(-15px);
  transition: opacity 0.4s, transform 0.6s;
}

/* Hover States */
.tp-btn-switch-animation:hover .btn-text {
  transition-delay: 125ms;
  transform: translateX(25px);
}

.tp-btn-switch-animation:hover .btn-icon {
  transition-delay: 0s;
  transform: translateX(10px);
  opacity: 0;
}

.tp-btn-switch-animation:hover .btn-icon + .btn-icon {
  opacity: 1;
  transform: translateX(0px);
  transition-delay: 225ms;
}

/* Ensure button icons maintain explicit color over parent section styles */
.tp-btn .btn-icon i,
.tp-btn-switch-animation .btn-icon i {
  color: #FFFFFF !important; /* Force white icon inside the button */
}

/* If the button has a light/white background, match the brand color */
.tp-btn-white .btn-icon i {
  color: var(--tp-accounting-3, #022A5D) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* --- Hero Slider --- */
.hero-slider {
  width: 100%;
  height: calc(100vh - 70px);
  position: relative;
}

.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.slide-1 {
  background-image: url('../../assets/images/hero_building_confidence (Custom).png');
}

.slide-2 {
  background-image: url('../../assets/images/hero_driving_success (Custom).png');
}

.slide-3 {
  background-image: url('../../assets/images/hero_delivering_excellence (Custom).png');
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(11, 18, 35, 0.85) 0%, rgba(11, 18, 35, 0.45) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
}

.hero-content {
  max-width: 620px;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 2.5rem;
  letter-spacing: -0.5px;
}

.btn-hero {
  font-size: 1rem;
  padding: 16px 28px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary-orange);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-orange) !important;
}

.swiper-slide .hero-content h1,
.swiper-slide .hero-content .btn-hero {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.swiper-slide-active .hero-content h1,
.swiper-slide-active .hero-content .btn-hero {
  opacity: 1;
  transform: translateY(0);
}

.swiper-slide-active .hero-content .btn-hero {
  transition-delay: 0.2s;
}

/* --- Vision Section Layout --- */
.vision-section {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.vision-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.vision-title-wrap .sub-title {
  display: block;
  color: var(--tp-accounting-3);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.vision-title-wrap .main-title {
  color: var(--tp-theme-secondary);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.5px;
}

.vision-divider {
  width: 100%;
  height: 1px;
  background-color: var(--tp-border-light);
  margin-bottom: 50px;
}

.vision-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon-box {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border: 1px solid #EDEDED;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-accounting-3);
  font-size: 22px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
  border-color: var(--tp-accounting-3);
  box-shadow: 0px 8px 20px rgba(2, 42, 93, 0.08);
}

.feature-content .feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--tp-theme-secondary);
  margin: 0 0 12px 0;
}

.feature-content .feature-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--tp-text-body);
  margin: 0;
}

/* ==========================================
   Minimal Light Grey Footer
   ========================================== */
.site-footer {
  background-color: #F4F5F7; /* Light grey background */
  color: #333333;
  padding: 70px 0 30px;
  border-top: 1px solid #E2E8F0;
  font-family: "TT Hoves Pro Trial", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* 3-Column Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Section Headings */
.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: #022A5D; /* Navy Blue Accent */
  margin: 0 0 20px 0;
  letter-spacing: 0.3px;
}

/* --- Section 1: Logo & Socials --- */
.footer-logo {
  max-width: 200px;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-about-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
  margin: 0 0 20px 0;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #022A5D;
  border: 1px solid rgba(2, 42, 93, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  background-color: #022A5D;
  color: #FFFFFF;
  border-color: #022A5D;
  transform: translateY(-2px);
}

/* --- Section 2: Page Links --- */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu li a {
  color: #444444;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-menu li a:hover {
  color: #022A5D;
  padding-left: 4px;
}

/* --- Section 3: Contact Info --- */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #444444;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-list li i {
  color: #022A5D;
  font-size: 15px;
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.footer-contact-list li a {
  color: #444444;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
  color: #022A5D;
}

/* --- Bottom Copyright Bar --- */
.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.copyright-text {
  font-size: 13px;
  color: #666666;
  margin: 0;
}

.copyright-text strong {
  color: #0B1223;
  font-weight: 600;
}

/* ==========================================
   Responsive Rules
   ========================================== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding: 50px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================
   Floating Sticky Back To Top Button
   ========================================== */
.back-to-top-btn {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  width: 48px;
  height: 48px;
  background-color: #FFFFFF;
  color: var(--tp-theme-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  opacity: 1 !important;
  visibility: visible !important;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.back-to-top-btn:hover {
  background-color: var(--tp-accounting-3);
  color: var(--tp-common-white);
  transform: translateY(-4px);
  box-shadow: 0px 12px 25px rgba(2, 42, 93, 0.4);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1100px) {
  .lang-selector {
    display: none;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .vision-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .vision-title-wrap .main-title {
    font-size: 32px;
  }

  .vision-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    display: none;
    margin: 0;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .phone-link span {
    display: none;
  }

  .hero-container {
    padding: 0 2rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .nav-actions .btn-header {
    display: none;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }
}

/* ==========================================
   Exact Match Services Section
   ========================================== */
.services-section {
  padding: 100px 0;
  background-color: #FAF5F0; /* Off-white warm background */
  color: var(--tp-theme-dark);
}

/* --- Top Header Grid Layout --- */
.services-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.services-heading-wrap .sub-title {
  display: block;
  color: var(--tp-accounting-3);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.services-heading-wrap .main-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--tp-theme-dark);
  letter-spacing: -0.5px;
  margin: 0;
}

.services-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}

.services-text-wrap .highlight-text {
  font-size: 15px;
  line-height: 1.6;
  color: #33221E;
}

.services-text-wrap .body-text {
  font-size: 14px;
  line-height: 1.65;
  color: #7A6965;
}

/* --- Bottom Content Grid Layout --- */
.services-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image Thumbnails */
.services-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.services-images .img-box {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
}

.services-images .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services-images .img-box:hover img {
  transform: scale(1.05);
}

/* Services Interactive List */
.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(11, 18, 35, 0.12);
  text-decoration: none;
  transition: padding 0.3s ease, border-color 0.3s ease;
}

.service-item:first-child {
  border-top: 1px solid rgba(11, 18, 35, 0.12);
}

.service-item .service-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--tp-theme-dark);
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-item .service-arrow {
  font-size: 16px;
  color: var(--tp-theme-dark);
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Effects */
.service-item:hover {
  border-color: var(--tp-accounting-3);
  padding-left: 10px;
}

.service-item:hover .service-name {
  color: var(--tp-accounting-3);
}

.service-item:hover .service-arrow {
  color: var(--tp-accounting-3);
  transform: translateX(6px);
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
  .services-top-grid,
  .services-bottom-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-heading-wrap .main-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 60px 0;
  }

  .services-images {
    grid-template-columns: 1fr;
  }

  .services-images .img-box {
    height: 220px;
  }

  .service-item .service-name {
    font-size: 16px;
  }
}

/* ==========================================
   Team Members Section
   ========================================== */
.team-section {
  padding: 100px 0;
  background-color: #fff;
  color: var(--tp-theme-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left Content Column */
.team-content .sub-title {
  display: block;
  color: var(--tp-accounting-3);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-content .main-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--tp-theme-dark);
  letter-spacing: -0.5px;
  margin-bottom: 35px;
  max-width: 480px;
}

/* Actions Wrapper (Under Title) */
.team-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Careers Link with Arrow Circle */
.careers-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--tp-theme-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.careers-link .circle-arrow {
  width: 28px;
  height: 28px;
  background-color: #022A5D;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.careers-link:hover {
  color: var(--tp-accounting-3);
}

.careers-link:hover .circle-arrow {
  transform: translateX(4px);
  background-color: var(--tp-accounting-3);
}

/* Right Team Cards Layout */
.team-cards-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-img-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.04);
}

/* Plus Icon Button on Card Image */
.plus-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: none;
  color: var(--tp-theme-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.plus-btn:hover {
  background-color: var(--tp-accounting-3);
  color: #FFFFFF;
  transform: rotate(90deg);
}

/* Visible Name and Role Styling */
.team-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.member-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--tp-theme-dark);
  margin: 0;
}

.member-role {
  font-size: 14px;
  color: #7A6965;
  font-weight: 500;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-content .main-title {
    font-size: 36px;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .team-section {
    padding: 60px 0;
  }

  .team-cards-wrap {
    grid-template-columns: 1fr;
  }

  .team-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-img-wrapper {
    height: 320px;
  }
}

/* ==========================================
   Page Header / Breadcrumb Hero (Full Cover)
   ========================================== */
.page-header-section {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background-color: #FFFFFF;
  
  background-image: url('../../assets/images/hero_building_confidence (Custom).png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  
  filter: grayscale(100%);
  overflow: hidden;
}

/* Gradient overlay to ensure text legibility on the left */
.page-header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    rgba(255, 255, 255, 1) 0%, 
    rgba(255, 255, 255, 0.95) 40%, 
    rgba(255, 255, 255, 0.4) 70%, 
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.page-header-section .container {
  position: relative;
  z-index: 2;
}

/* Left Content Alignment */
.page-header-content {
  max-width: 500px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666666;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #EBEBEB;
  width: 100%;
  max-width: 420px;
}

.breadcrumb-item {
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item:hover {
  color: var(--tp-accounting-3, #022A5D);
}

.breadcrumb-item.active {
  color: var(--tp-theme-dark);
  font-weight: 500;
}

.breadcrumb-separator {
  color: #999999;
  font-size: 13px;
}

/* Title & Subtitle Typography */
.page-title {
  font-size: 56px;
  font-weight: 600;
  color: var(--tp-theme-dark);
  line-height: 1.1;
  margin: 0 0 18px 0;
  letter-spacing: -1px;
}

.page-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
  .page-header-section {
    padding: 70px 0 80px 0;
    background-size: cover;
  }

  .page-header-section::before {
    background: linear-gradient(90deg, 
      rgba(255, 255, 255, 0.95) 0%, 
      rgba(255, 255, 255, 0.8) 100%
    );
  }

  .page-title {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .page-header-section {
    padding: 50px 0 60px 0;
  }

  .page-title {
    font-size: 32px;
  }

  .breadcrumb-nav {
    max-width: 100%;
  }
}

/* ==========================================
   CTA Strip Section
   ========================================== */
.cta-strip-section {
  padding: 20px 0;
  background-color: var(--tp-theme-dark);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

/* Subtle background accent overlay */
.cta-strip-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(2, 42, 93, 0.35) 0%, rgba(11, 18, 35, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.cta-strip-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  
  padding: 50px 0;
  border-radius: 16px;
}

/* Left Content */
.cta-content {
  max-width: 800px;
}

.cta-content .sub-title {
  display: block;
  color: var(--tp-accounting-3, #022A5D);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.cta-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 14px 0;
  letter-spacing: -0.5px;
}

.cta-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #CCCCCC;
  margin: 0;
}

/* Right Actions */
.cta-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}

/* Secondary Direct Call Link */
.cta-phone-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #FFFFFF;
  transition: opacity 0.3s ease;
}

.cta-phone-link:hover {
  opacity: 0.85;
}

.phone-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--tp-accounting-3, #022A5D);
  background-color: rgba(255, 255, 255, 0.05);
}

.phone-text {
  display: flex;
  flex-direction: column;
}

.phone-text span {
  font-size: 12px;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phone-text strong {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
  .cta-strip-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
  }

  .cta-actions {
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .cta-strip-section {
    padding: 50px 0;
  }

  .cta-strip-wrapper {
    padding: 30px 20px;
  }

  .cta-title {
    font-size: 26px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ==========================================
   Industries We Serve (3-Column Minimal List)
   ========================================== */
.industries-list-section {
  padding: 100px 0;
  background-color: #FAF5F0; /* Warm off-white background matching reference style */
  color: var(--tp-theme-dark, #0b1223);
}

/* Header Layout */
.industries-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-end;
  margin-bottom: 50px;
}

.industries-header .sub-title {
  display: block;
  color: var(--tp-accounting-3, #022A5D);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.industries-header .main-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--tp-theme-dark, #0b1223);
  letter-spacing: -0.5px;
  margin: 0;
}

.industries-header .header-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--tp-text-body, #666666);
  margin: 0;
}

/* 3-Column List Grid */
.industries-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px; /* Space between the 3 columns */
  border-top: 1px solid rgba(11, 18, 35, 0.12); /* Top border rule */
}

/* Individual Row Item */
.industry-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(11, 18, 35, 0.12);
  text-decoration: none;
  transition: padding 0.3s ease, border-color 0.3s ease;
}

.industry-list-item .industry-name {
  font-size: 18px; /* Slightly adjusted to fit comfortably in 3 columns */
  font-weight: 500;
  color: var(--tp-theme-dark, #0b1223);
  transition: color 0.3s ease;
}

.industry-list-item .list-arrow {
  font-size: 15px;
  color: var(--tp-theme-dark, #0b1223);
  transition: transform 0.3s ease, color 0.3s ease;
  margin-left: 12px;
}

/* Interactive Hover States */
.industry-list-item:hover {
  border-bottom-color: var(--tp-accounting-3, #022A5D);
  padding-left: 8px;
}

.industry-list-item:hover .industry-name {
  color: var(--tp-accounting-3, #022A5D);
}

.industry-list-item:hover .list-arrow {
  color: var(--tp-accounting-3, #022A5D);
  transform: translateX(6px);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1100px) {
  .industries-list-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet landscape */
    column-gap: 40px;
  }
}

@media (max-width: 992px) {
  .industries-header {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: flex-start;
  }

  .industries-header .main-title {
    font-size: 36px;
  }
}

@media (max-width: 680px) {
  .industries-list-grid {
    grid-template-columns: 1fr; /* 1 column on mobile screens */
    column-gap: 0;
  }
}

@media (max-width: 576px) {
  .industries-list-section {
    padding: 60px 0;
  }

  .industry-list-item {
    padding: 16px 0;
  }

  .industry-list-item .industry-name {
    font-size: 16px;
  }

  .industries-header .main-title {
    font-size: 30px;
  }
}


/* ==========================================
   Services Page Detailed Layout
   ========================================== */
.services-detail-section {
  padding: 80px 0 100px 0;
  background-color: #FAF5F0;
  color: var(--tp-theme-dark, #0b1223);
}

/* Intro Highlight Box */
.services-intro-card {
  background-color: #FFFFFF;
  border-left: 4px solid var(--tp-accounting-3, #022A5D);
  border-radius: 8px;
  padding: 30px 40px;
  margin-bottom: 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.services-intro-card p {
  font-size: 17px;
  line-height: 1.7;
  color: #444444;
  margin: 0;
}

/* 2-Column Grid Layout (Sidebar + Content) */
.services-layout-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
}

/* --- Sidebar Styling --- */
.services-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--tp-border-light, #EBEBEB);
}

.sidebar-widget .widget-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--tp-theme-dark, #0b1223);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #EBEBEB;
}

.service-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--tp-text-body, #666666);
  text-decoration: none;
  transition: all 0.25s ease;
}

.service-nav-links a i {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.service-nav-links a:hover,
.service-nav-links a.active {
  background-color: var(--tp-accounting-3, #022A5D);
  color: #FFFFFF;
}

.service-nav-links a:hover i,
.service-nav-links a.active i {
  transform: translateX(4px);
}

/* Sidebar Callout Box */
.sidebar-cta-widget {
  background-color: var(--tp-theme-dark, #0b1223);
  color: #FFFFFF;
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
}

.sidebar-cta-widget h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.sidebar-cta-widget p {
  font-size: 14px;
  color: #CCCCCC;
  line-height: 1.5;
  margin-bottom: 20px;
}

.sidebar-cta-widget .tp-btn {
  width: 100%;
  padding: 14px 20px;
  text-align: center;
}

/* --- Service Detail Cards --- */
.services-content-area {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-block-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--tp-border-light, #EBEBEB);
  scroll-margin-top: 130px; /* Offset for smooth sticky header scrolling */
  transition: box-shadow 0.3s ease;
}

.service-block-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.block-badge {
  font-size: 18px;
  font-weight: 700;
  color: var(--tp-accounting-3, #022A5D);
  background-color: #FAF5F0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--tp-theme-dark, #0b1223);
  margin: 0;
}

.block-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #555555;
  margin-bottom: 28px;
}

/* Service Points (2-Column Checkmark Grid) */
.service-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  list-style: none;
  padding-top: 20px;
  border-top: 1px solid #F0F0F0;
}

.service-points-grid li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--tp-theme-dark, #0b1223);
  line-height: 1.45;
}

.service-points-grid li i {
  color: var(--tp-accounting-3, #022A5D);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
  .services-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-sidebar {
    position: static;
  }

  .service-points-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .service-block-card {
    padding: 24px 20px;
  }

  .block-title {
    font-size: 22px;
  }

  .services-intro-card {
    padding: 20px 24px;
  }
}


/* ==========================================
   Team Hero Styling
   ========================================== */
.team-hero-section {
  padding: 80px 0 40px;
  background-color: #FAF5F0;
}

.team-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.sub-title-blue {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #022A5D;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.hero-main-title {
  font-size: 42px;
  font-weight: 700;
  color: #0B1223;
  line-height: 1.15;
  margin: 0;
}

.hero-lead-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 16px;
}

.hero-sub-text {
  font-size: 15px;
  line-height: 1.65;
  color: #666666;
  margin: 0;
}

/* ==========================================
   Team Cards Grid
   ========================================== */
.team-cards-section {
  padding: 40px 0 100px;
  background-color: #FAF5F0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.team-card {
  cursor: pointer;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.card-image-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: #FFFFFF;
}

.member-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #FFFFFF;
}

.member-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  display: block;
}

/* ==========================================
   Modal Popups Exact Replicas
   ========================================== */
.team-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(11, 18, 35, 0.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.team-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.team-modal-container {
  background-color: #FFFFFF;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.team-modal-overlay.active .team-modal-container {
  transform: translateY(0);
}

/* Modal Blue Top Bar */
.modal-blue-header {
  background-color: #124BA1; /* Matching the top navy blue bar in screenshot */
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title-text {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

/* Modal Body Content */
.modal-body-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  padding: 36px;
  overflow-y: auto;
}

.modal-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.modal-img-frame {
  width: 100%;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.modal-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-role-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #555555;
  text-transform: uppercase;
}

.modal-right-col p {
  font-size: 14px;
  line-height: 1.65;
  color: #333333;
  margin-bottom: 16px;
}

.modal-right-col p:last-child {
  margin-bottom: 0;
}

/* ==========================================
   Responsive Adjustments
   ========================================== */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .modal-body-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .modal-img-frame {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-main-title {
    font-size: 32px;
  }
}


/* ==========================================
   Contact Info Cards Section
   ========================================== */
.contact-info-section {
  padding: 60px 0 30px;
  background-color: #Fff;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-info-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid rgba(11, 18, 35, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: #FAF5F0;
  color: var(--tp-accounting-3, #022A5D);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0B1223;
  margin: 0 0 8px 0;
}

.info-text p {
  font-size: 14px;
  color: #666666;
  margin: 0 0 4px 0;
  line-height: 1.5;
}

.info-text p a {
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-text p a:hover {
  color: var(--tp-accounting-3, #022A5D);
}

/* ==========================================
   Contact Form & Map Layout
   ========================================== */
.contact-main-section {
  padding: 40px 0 100px;
  background-color: #Fff;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Form Styles */
.contact-form-wrapper {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(11, 18, 35, 0.08);
}

.sub-title-blue {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #022A5D;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: #0B1223;
  margin: 0 0 10px 0;
  line-height: 1.25;
}

.form-subtitle {
  font-size: 14px;
  color: #666666;
  margin-bottom: 28px;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
}

.contact-form .form-row.two-col > .form-group {
  flex: 1;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0B1223;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  background-color: #F8FAFC;
  color: #0B1223;
  outline: none;
  transition: border-color 0.25s ease, background-color 0.25s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--tp-accounting-3, #022A5D);
  background-color: #FFFFFF;
}

.contact-form textarea {
  resize: vertical;
}

/* Fallback button specifically for Mobile view when .tp-btn is hidden */
.mobile-submit-btn {
  display: none;
  width: 100%;
  padding: 14px;
  background-color: var(--tp-accounting-3, #022A5D);
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* Map Wrapper */
.contact-map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(11, 18, 35, 0.08);
  min-height: 450px;
  height: 100%;
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 450px;
}

/* ==========================================
   Responsive & Mobile Adjustments
   ========================================== */
@media (max-width: 992px) {
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-wrapper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  /* Hides animated button on mobile view as requested */
  .tp-btn-hide-mobile {
    display: none !important;
  }

  /* Show mobile submit button */
  .mobile-submit-btn {
    display: block;
  }

  .contact-form .form-row.two-col {
    flex-direction: column;
    gap: 0;
  }

  .contact-form-wrapper {
    padding: 24px 20px;
  }

  .form-title {
    font-size: 22px;
  }
}



/* ==========================================
   Careers Culture & Features
   ========================================== */
.careers-culture-section {
  padding: 80px 0 60px;
  background-color: #FAF5F0;
}

.culture-header {
  margin-bottom: 50px;
}

.culture-title {
  font-size: 32px;
  font-weight: 700;
  color: #0B1223;
  margin: 6px 0 0 0;
}

.culture-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.culture-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid rgba(11, 18, 35, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.culture-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background-color: #FAF5F0;
  color: #022A5D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.culture-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0B1223;
  margin: 0 0 12px 0;
}

.culture-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* ==========================================
   Openings List Stack
   ========================================== */
.openings-section {
  padding: 40px 0 80px;
  background-color: #FAF5F0;
}

.openings-header {
  margin-bottom: 40px;
}

.openings-list-stack {
  border-top: 1px solid rgba(11, 18, 35, 0.15);
}

.job-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid rgba(11, 18, 35, 0.15);
  gap: 20px;
}

.job-title {
  font-size: 22px;
  font-weight: 600;
  color: #022A5D;
  margin: 0 0 10px 0;
}

.job-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.job-tag {
  background-color: rgba(2, 42, 93, 0.06);
  color: #022A5D;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.job-view-btn {
  background-color: transparent;
  border: 1px solid #022A5D;
  color: #022A5D;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.job-view-btn:hover {
  background-color: #022A5D;
  color: #FFFFFF;
}

/* ==========================================
   Career Application Form Wrapper
   ========================================== */
.careers-apply-section {
  padding: 40px 0 100px;
  background-color: #FAF5F0;
}

.apply-form-wrapper {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 48px;
  border: 1px solid rgba(11, 18, 35, 0.08);
  max-width: 900px;
  margin: 0 auto;
}

.apply-title {
  font-size: 28px;
  font-weight: 700;
  color: #0B1223;
  margin: 0 0 8px 0;
}

.apply-subtitle {
  font-size: 15px;
  color: #666666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.career-form .file-input {
  background-color: #FFFFFF;
  padding: 9px 12px;
}

/* ==========================================
   Job Modal Styles
   ========================================== */
.job-modal-box {
  max-width: 650px;
}

.job-modal-body {
  padding: 30px;
  overflow-y: auto;
  max-height: 70vh;
}

.job-modal-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: #022A5D;
  margin: 20px 0 8px 0;
}

.job-modal-body h4:first-child {
  margin-top: 0;
}

.job-modal-body p {
  font-size: 14px;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 12px;
}

.job-modal-body ul {
  padding-left: 20px;
  margin: 0 0 16px 0;
}

.job-modal-body ul li {
  font-size: 14px;
  color: #444444;
  line-height: 1.6;
  margin-bottom: 6px;
}

.job-modal-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #EEEEEE;
}

.job-apply-link {
  display: inline-block;
  background-color: #022A5D;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

/* ==========================================
   Responsive Rules
   ========================================== */
@media (max-width: 992px) {
  .culture-cards-grid {
    grid-template-columns: 1fr;
  }

  .apply-form-wrapper {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .job-row-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .job-action {
    width: 100%;
  }

  .job-view-btn {
    width: 100%;
  }
}


/* ==========================================
   Complete Modern Form Styling
   ========================================== */

/* Form Wrapper & Spacing */
.contact-form,
.career-form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row.two-col > .form-group {
  flex: 1;
  min-width: 0; /* Prevents overflow in flex layouts */
}

.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}

/* Labels */
.contact-form label,
.career-form label {
  font-family: "TT Hoves Pro Trial", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #0B1223;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
  display: inline-block;
}

/* Common Styles for Inputs, Selects, & Textareas */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea,
.career-form input[type="text"],
.career-form input[type="email"],
.career-form input[type="tel"],
.career-form select,
.career-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: "TT Hoves Pro Trial", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: #0B1223;
  background-color: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  outline: none;
  box-sizing: border-box;
  transition: all 0.25s ease-in-out;
  appearance: none;
  -webkit-appearance: none;
}

/* Hover & Focus States */
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover,
.career-form input:hover,
.career-form select:hover,
.career-form textarea:hover {
  border-color: #CBD5E1;
  background-color: #FFFFFF;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
  border-color: #022A5D; /* Matches primary dark blue */
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(2, 42, 93, 0.08);
}

/* Custom Select Dropdown Arrow */
.contact-form select,
.career-form select {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23022A5D%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 10px auto;
  padding-right: 42px;
  cursor: pointer;
}

/* Custom File Upload Styling */
.career-form input[type="file"].file-input {
  padding: 10px 14px;
  background-color: #F8FAFC;
  cursor: pointer;
}

.career-form input[type="file"].file-input::file-selector-button {
  background-color: #022A5D;
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  margin-right: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.career-form input[type="file"].file-input::file-selector-button:hover {
  background-color: #124BA1;
}

/* Placeholder Styling */
::placeholder {
  color: #A0AEC0;
  opacity: 1;
}

/* Textarea Specifics */
textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

/* Submit Section Button Containers */
.form-submit-btn {
  margin-top: 10px;
}

/* Mobile Fallback Submit Button */
.mobile-submit-btn {
  display: none;
  width: 100%;
  padding: 16px;
  background-color: #022A5D;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mobile-submit-btn:hover {
  background-color: #124BA1;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .form-row.two-col {
    flex-direction: column;
    gap: 0;
  }

  .mobile-submit-btn {
    display: block;
  }
}

