/**
* AUHR Partners - Corporate HR Website
* Professional HR Outsourcing & Recruitment Company
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
  
  /* Corporate HR Color Palette - Using OnePage template colors */
  /* Note: --accent-color is defined in main.css as #2487ce for OnePage template consistency */
  --background-color: #f8f9fa;
  --default-color: #4a5568;
  --heading-color: #1a5f5f;
  --secondary-color: #5a9a9a;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --border-color: #e8ecef;
  --cta-accent: #d4af37;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--default-color);
  background: #f6fafd;
  font-family: var(--default-font);
  line-height: 1.8;
  font-size: 16px;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--default-color);
  line-height: 1.8;
  font-size: 1.05rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.header {
  background-color: var(--surface-color);
  padding: 18px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.header .navbar {
  align-items: center;
  min-height: auto;
}

 .logo  {
  height: 60px;
  width: 100px;
  
  transition: all 0.3s ease;
  display: block;
}

.header .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  height: 100%;
  line-height: 1;
}

.header .navbar-brand:hover .logo img {
  opacity: 0.9;
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-link {
  color: var(--heading-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: 0.3s;
  font-size: 15px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color);
}

.navbar-nav .nav-link.active {
  color: var(--accent-color);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Old hero styles removed - using OnePage template style below */

/* Homepage Hero with Background Image */
.hero-home {
  background-image: url('../images/home.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 95, 95, 0.75) 0%, rgba(45, 125, 125, 0.70) 50%, rgba(26, 95, 95, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-home > .container {
  position: relative;
  z-index: 2;
}

.hero-home h1 {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-home p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  font-size: 1.15rem;
}

@media (max-width: 768px) {
  .hero-home {
    background-attachment: scroll;
    min-height: 500px;
    padding: 60px 0;
  }
  
  .hero-home h1 {
    font-size: 2rem;
  }
  
  .hero-home p {
    font-size: 1rem;
  }
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-primary {
  background: linear-gradient(135deg, var(--cta-accent) 0%, #c9a52a 100%);
  border: none;
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--contrast-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c9a52a 0%, #b8941f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: var(--contrast-color);
}

.btn-outline-primary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
.section {
  padding: 100px 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: transparent;
  z-index: 1;
}

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title p {
  margin-bottom: 0;
  margin-top: 10px;
}

/* Reduce padding after About section subtitle */
#about .section-title {
  margin-bottom: 15px;
}

/* Reduce spacing in About section content */
#about .container:not(:first-of-type) {
  margin-top: 0;
  padding-top: 0;
}

/* Reduce row gap in About section */
#about .row.gy-4 {
  --bs-gutter-y: 1rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
}

/*--------------------------------------------------------------
# Cards & Boxes
--------------------------------------------------------------*/
.card {
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  position: relative;
  overflow: hidden;
  padding: 35px;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  box-shadow: 0 12px 40px rgba(26, 95, 95, 0.18);
  transform: translateY(-8px);
  border-color: rgba(26, 95, 95, 0.2);
}

.icon-box {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-box:hover::before {
  transform: scaleX(1);
}

.icon-box:hover {
  box-shadow: 0 12px 40px rgba(26, 95, 95, 0.18);
  transform: translateY(-8px);
  border-color: rgba(26, 95, 95, 0.2);
}

a.icon-box {
  cursor: pointer;
}

.icon-box .icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.icon-box h4 {
  color: var(--heading-color);
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Lists
--------------------------------------------------------------*/
ul.checklist {
  list-style: none;
  padding: 0;
}

ul.checklist li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
}

ul.checklist li i {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 14px 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #ffffff;
  position: relative;
}

.form-control:focus,
.form-control:active {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 
    0 0 0 3px rgba(26, 95, 95, 0.1),
    0 0 20px rgba(26, 95, 95, 0.15),
    0 0 40px rgba(45, 125, 125, 0.1),
    inset 0 0 10px rgba(90, 154, 154, 0.05);
  transform: translateY(-1px);
}

.form-control:hover:not(:focus) {
  border-color: rgba(26, 95, 95, 0.3);
  box-shadow: 0 2px 8px rgba(26, 95, 95, 0.08);
}

/*--------------------------------------------------------------
# CAPTCHA Styling
--------------------------------------------------------------*/
.captcha-container {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #f8fafb 0%, #f1f5f7 100%);
  padding: 20px;
  border-radius: 10px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.captcha-container:hover {
  border-color: rgba(26, 95, 95, 0.2);
  box-shadow: 0 2px 10px rgba(26, 95, 95, 0.08);
}

.captcha-question {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  flex-shrink: 0;
}

.captcha-number {
  display: inline-block;
  min-width: 40px;
  text-align: center;
  padding: 8px 12px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  color: var(--accent-color);
  box-shadow: 0 2px 8px rgba(26, 95, 95, 0.1);
}

.captcha-operator,
.captcha-equals {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.4rem;
}

.captcha-input {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}

/* Hide validation icons for CAPTCHA */
.captcha-input.is-valid::after,
.captcha-input.is-invalid::after {
  display: none !important;
}

/* Custom color effects for CAPTCHA validation */
.captcha-input.captcha-correct {
  border-color: #28a745 !important;
  background-color: rgba(40, 167, 69, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15) !important;
}

.captcha-input.captcha-wrong {
  border-color: #dc3545 !important;
  background-color: rgba(220, 53, 69, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15) !important;
}

.captcha-refresh {
  flex-shrink: 0;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  background: #ffffff;
  color: var(--accent-color);
}

.captcha-refresh:hover {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
  transform: rotate(180deg);
}

.captcha-refresh:focus {
  box-shadow: 0 0 0 3px rgba(26, 95, 95, 0.2);
  outline: none;
}

#captcha-error {
  margin-top: 8px;
  color: #dc3545;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .captcha-container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .captcha-question {
    justify-content: center;
    margin-bottom: 10px;
  }
  
  .captcha-input {
    max-width: 100%;
    width: 100%;
  }
  
  .captcha-refresh {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 60px 0 20px;
  position: relative;
  z-index: 20;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  display: block;
  clear: both;
  left: 0;
  right: 0;
  box-sizing: border-box;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
}

.footer a {
  color: #ffffff;
  opacity: 0.8;
  transition: 0.3s;
}

.footer a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

/* Social Media Icons */
.footer .social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer .social-links a,
.footer .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #152233 !important;
  color: #ffffff !important;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 1;
  border: none !important;
}

.footer .social-links a:hover,
.footer .social-icon:hover {
  background-color: #2487ce !important;
  color: #ffffff !important;
  transform: scale(1.1);
  opacity: 1;
}

.footer .social-icon:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* Footer Email Styling */
.footer .footer-email {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.footer .footer-email:hover {
  color: var(--secondary-color);
  opacity: 1;
  text-decoration: underline;
}

/* Footer Contact Email Link - Dark Blue */
.footer-contact a,
.footer-contact p a {
  color: #152233 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover,
.footer-contact p a:hover {
  color: #2487ce !important;
  text-decoration: underline;
}

/* Existing Clients Section */
.footer .existing-clients {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .existing-clients h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer .existing-clients .client-name {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}

/* Copyright Section - Reduced Width and Thickness */
.footer .copyright {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.footer .copyright .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

/*--------------------------------------------------------------
# Background Classes
--------------------------------------------------------------*/
.light-background {
  background: linear-gradient(180deg, #f1f5f7 0%, #eef2f5 50%, #e8ecef 100%);
  position: relative;
}

.light-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(26, 95, 95, 0.02) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.light-background > .container {
  position: relative;
  z-index: 2;
}

.accent-background {
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
}

.accent-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.accent-background > .container {
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .header {
    padding: 15px 0;
  }
  
  .header .logo img {
    height: 45px;
    width: auto;
    max-width: 250px;
  }
  
  .hero {
    padding: 80px 0 40px 0 !important;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  /* Footer responsive styles */
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer .social-links {
    gap: 12px;
  }
  
  .footer .social-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  
  .footer .existing-clients {
    margin-top: 15px;
    padding-top: 15px;
  }
}

/*--------------------------------------------------------------
# Step-Based Services Section
--------------------------------------------------------------*/
.service-step {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-step:hover::before,
.service-step.active::before {
  transform: scaleY(1);
}

.service-step:hover {
  box-shadow: 0 6px 24px rgba(26, 95, 95, 0.12);
  transform: translateY(-3px);
  border-color: rgba(26, 95, 95, 0.25);
}

.service-step.active {
  border-color: var(--accent-color);
  box-shadow: 0 6px 24px rgba(26, 95, 95, 0.12);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
}

.service-step-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 0;
  gap: 0;
  position: relative;
  min-height: 80px;
}

.service-step-number {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-right: 20px;
  min-width: 80px;
  letter-spacing: 1px;
}

.service-step-icon {
  width: 80px;
  height: 80px;
  background: #152233;
  border-radius: 50%;
  color: #ABF001;
  font-size: 2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(21, 34, 51, 0.15);
  position: absolute;
  left: 0;
  top: 0;
}

.service-step:hover .service-step-icon {
  color: #ABF001;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(21, 34, 51, 0.25);
}

.service-step-title {
  flex: 1;
  font-family: var(--heading-font);
  font-size: 1.5rem;
  color: var(--heading-color);
  margin: 0;
  font-weight: 600;
  text-align: center;
  padding-left: 20px;
  padding-right: 50px;
  padding-top: 24px;
  position: relative;
}

.service-step-toggle {
  color: var(--accent-color);
  font-size: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: absolute;
  top: 0;
  right: 0;
}

.service-step.active .service-step-toggle {
  transform: rotate(180deg);
}

.service-step-description {
  margin-top: 12px;
  color: var(--default-color);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

.service-step-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0;
}

.service-step.active .service-step-content {
  max-height: 1000px;
  padding: 30px 0 15px 0;
  margin-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-step-content h3 {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 24px;
  font-weight: 600;
  text-align: center;
  padding-left: 0;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(26, 95, 95, 0.1);
}

.service-step-content .checklist {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
}

.service-step-content .checklist li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 14px 20px;
  line-height: 1.7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease, padding 0.2s ease;
  width: 100%;
}

.service-step-content .checklist li:last-child {
  border-bottom: none;
}

.service-step-content .checklist li:hover {
  background-color: rgba(26, 95, 95, 0.02);
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 6px;
}

.service-step-content .checklist li i {
  color: #ABF001;
  margin-right: 14px;
  margin-left: 0;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.2s ease;
  min-width: 24px;
  text-align: left;
}

.service-step-content .checklist li:hover i {
  transform: scale(1.1);
}

.service-step-content .checklist li span {
  flex: 1;
  color: var(--default-color);
  font-size: 1.05rem;
  text-align: left;
  line-height: 1.7;
}

/* Responsive styles for service-step-content */
@media (max-width: 768px) {
  .service-step.active .service-step-content {
    padding: 25px 0 12px 0;
    margin-top: 18px;
  }
  
  .service-step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  
  .service-step-content .checklist li {
    padding: 12px 18px;
  }
  
  .service-step-content .checklist li:hover {
    padding-left: 22px;
    padding-right: 22px;
  }
  
  .service-step-content .checklist li i {
    font-size: 1.1rem;
    margin-right: 12px;
    min-width: 22px;
  }
  
  .service-step-content .checklist li span {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .service-step.active .service-step-content {
    padding: 20px 0 10px 0;
    margin-top: 15px;
  }
  
  .service-step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    padding-bottom: 8px;
  }
  
  .service-step-content .checklist li {
    padding: 10px 15px;
  }
  
  .service-step-content .checklist li:hover {
    padding-left: 18px;
    padding-right: 18px;
  }
  
  .service-step-content .checklist li i {
    font-size: 1rem;
    margin-right: 10px;
    min-width: 20px;
  }
  
  .service-step-content .checklist li span {
    font-size: 0.95rem;
    text-align: left;
  }
}

/*--------------------------------------------------------------
# Industries Section - Right-to-Left Layout
--------------------------------------------------------------*/
.industry-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.industry-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-item:hover::after {
  transform: scaleY(1);
}

.industry-item:hover {
  box-shadow: 0 8px 30px rgba(26, 95, 95, 0.15);
  transform: translateX(-8px);
  border-color: rgba(26, 95, 95, 0.3);
}

.industry-text {
  flex: 1;
  text-align: left;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.industry-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 95, 95, 0.1) 0%, rgba(45, 125, 125, 0.1) 100%);
  border-radius: 10px;
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-left: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-item:hover .industry-icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  color: #ffffff;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .industry-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .industry-text {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .industry-icon {
    margin-left: 0;
  }
  
  .service-step {
    padding: 20px;
  }
  
  .service-step-header {
    gap: 0;
  }
  
  .service-step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    position: relative;
    left: auto;
    top: auto;
  }
  
  .service-step-title {
    font-size: 1.2rem;
    padding-left: 0;
    padding-right: 40px;
    padding-top: 0;
    margin-bottom: 12px;
  }
  
  .service-step-toggle {
    position: absolute;
    top: 8px;
    right: 0;
  }
}

/*--------------------------------------------------------------
# Industries Carousel Section
--------------------------------------------------------------*/
.industries-carousel-section {
  overflow: hidden;
  position: relative;
}

.industries-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  margin: 0 auto;
}

.industries-carousel {
  display: flex;
  gap: 30px;
  width: fit-content;
  animation: scrollIndustries 30s linear infinite;
  will-change: transform;
}

.industries-carousel-wrapper:hover .industries-carousel {
  animation-play-state: paused;
}

.industry-carousel-item {
  flex: 0 0 auto;
  width: 280px;
  min-width: 280px;
}

.industry-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card:hover {
  box-shadow: 0 12px 40px rgba(26, 95, 95, 0.18);
  transform: translateY(-8px);
  border-color: rgba(26, 95, 95, 0.3);
}

.industry-icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 95, 95, 0.1) 0%, rgba(45, 125, 125, 0.1) 100%);
  border-radius: 20px;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.industry-icon-wrapper i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover .industry-icon-wrapper {
  background: linear-gradient(135deg, #152233 0%, var(--secondary-color) 100%);
  transform: scale(1.1) rotate(5deg);
}

.industry-card:hover .industry-icon-wrapper i {
  color: #ffffff;
  transform: scale(1.1);
}

.industry-card h4 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.4;
}

@keyframes scrollIndustries {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-280px * 9 - 30px * 9));
  }
}

@media (max-width: 992px) {
  .industry-carousel-item {
    width: 240px;
    min-width: 240px;
  }
  
  @keyframes scrollIndustries {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-240px * 9 - 30px * 9));
    }
  }
}

@media (max-width: 768px) {
  .industries-carousel {
    gap: 20px;
    animation-duration: 25s;
  }
  
  .industry-carousel-item {
    width: 200px;
    min-width: 200px;
  }
  
  .industry-card {
    padding: 30px 20px;
  }
  
  .industry-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .industry-icon-wrapper i {
    font-size: 2rem;
  }
  
  .industry-card h4 {
    font-size: 1rem;
  }
  
  @keyframes scrollIndustries {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-200px * 9 - 20px * 9));
    }
  }
}

@media (max-width: 576px) {
  .industry-carousel-item {
    width: 180px;
    min-width: 180px;
  }
  
  .industry-card {
    padding: 25px 15px;
  }
  
  @keyframes scrollIndustries {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-180px * 9 - 20px * 9));
    }
  }
}

/*--------------------------------------------------------------
# Section Banner Images
--------------------------------------------------------------*/
.section-banner {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.banner-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 95, 95, 0.75) 0%, rgba(45, 125, 125, 0.70) 50%, rgba(26, 95, 95, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.banner-content {
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  width: 100%;
}

.banner-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.banner-subtitle {
  font-family: var(--default-font);
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
}

.banner-description {
  margin-top: 0;
}

.banner-description p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Company Introduction Banner
--------------------------------------------------------------*/
.company-intro-banner {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.company-intro-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.company-intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.company-intro-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 34, 0.65);
  z-index: 2;
}

.company-intro-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
  color: #ffffff;
}

.company-intro-heading {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.company-intro-text {
  max-width: 100%;
}

.company-intro-text p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.company-intro-text p:last-child {
  margin-bottom: 0;
}

/* Responsive Design for Company Introduction Banner */
@media (max-width: 992px) {
  .company-intro-banner {
    min-height: 450px;
  }
  
  .company-intro-content {
    padding: 60px 0;
  }
  
  .company-intro-heading {
    font-size: 36px;
    margin-bottom: 25px;
  }
  
  .company-intro-text p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .company-intro-banner {
    min-height: 400px;
  }
  
  .company-intro-content {
    padding: 50px 0;
  }
  
  .company-intro-heading {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .company-intro-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
  }
}

@media (max-width: 576px) {
  .company-intro-banner {
    min-height: 350px;
  }
  
  .company-intro-content {
    padding: 40px 0;
  }
  
  .company-intro-heading {
    font-size: 28px;
    margin-bottom: 18px;
  }
  
  .company-intro-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# About Page - Matched Spacing System
--------------------------------------------------------------*/
.about-hero {
  padding: 60px 0;
}

@media (max-width: 768px) {
  .section-banner {
    margin-bottom: 25px;
    border-radius: 8px;
  }
  
  .banner-image {
    height: 220px;
  }
  
  .banner-overlay {
    padding: 30px 20px;
  }
  
  .banner-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .banner-subtitle {
    font-size: 1.05rem;
  }
  
  .banner-description p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .section-banner {
    margin-bottom: 20px;
    border-radius: 6px;
  }
  
  .banner-image {
    height: 180px;
  }
  
  .banner-overlay {
    padding: 25px 15px;
  }
  
  .banner-title {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }
  
  .banner-subtitle {
    font-size: 0.95rem;
  }
  
  .banner-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/*--------------------------------------------------------------
# Contact Page Premium Styling
--------------------------------------------------------------*/

.contact-form-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-form-card:hover::before {
  opacity: 1;
}

.contact-form-card:hover {
  box-shadow: 
    0 8px 30px rgba(26, 95, 95, 0.12),
    0 0 0 1px rgba(26, 95, 95, 0.08),
    0 0 40px rgba(26, 95, 95, 0.06);
  transform: translateY(-2px);
  border-color: rgba(26, 95, 95, 0.2);
}

.contact-form-card:focus-within {
  box-shadow: 
    0 8px 30px rgba(26, 95, 95, 0.12),
    0 0 0 1px rgba(26, 95, 95, 0.08),
    0 0 40px rgba(26, 95, 95, 0.06);
  border-color: rgba(26, 95, 95, 0.2);
}

.contact-form-card:focus-within::before {
  opacity: 1;
}

.contact-info-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
  position: relative;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-info-card:hover::before {
  opacity: 1;
}

.contact-info-card:hover {
  box-shadow: 
    0 8px 30px rgba(26, 95, 95, 0.12),
    0 0 0 1px rgba(26, 95, 95, 0.08),
    0 0 40px rgba(26, 95, 95, 0.06);
  transform: translateY(-3px);
  border-color: rgba(26, 95, 95, 0.2);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 95, 95, 0.1) 0%, rgba(45, 125, 125, 0.1) 100%);
  border-radius: 12px;
  color: var(--accent-color);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover .contact-info-icon {
  background: linear-gradient(135deg, #152233 0%, var(--secondary-color) 100%);
  color: #ffffff;
  transform: scale(1.05);
}

.contact-info-content {
  flex: 1;
}

.contact-info-content strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-info-content p {
  margin: 0;
  color: var(--default-color);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info-content a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info-content a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 30px 20px;
    border-radius: 12px;
  }
  
  .contact-info-card {
    padding: 25px 20px;
    border-radius: 10px;
  }
  
  .contact-info-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .contact-info-content strong {
    font-size: 1rem;
  }
  
  .contact-info-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .contact-form-card {
    padding: 25px 15px;
  }
  
  .contact-info-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  
  .contact-info-icon {
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Why Choose AUHR Partners - Chart Template Style
--------------------------------------------------------------*/
.why-chart-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-chart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
}

.why-chart-item {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid var(--border-color);
  border-left: 5px solid var(--accent-color);
  border-radius: 12px;
  padding: 30px 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.why-chart-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-chart-item:hover::before {
  opacity: 1;
}

.why-chart-item:hover {
  box-shadow: 0 8px 35px rgba(26, 95, 95, 0.12),
              0 0 0 1px rgba(26, 95, 95, 0.08);
  transform: translateX(5px);
  border-left-color: var(--secondary-color);
}

.why-chart-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 95, 95, 0.12) 0%, rgba(45, 125, 125, 0.12) 100%);
  border-radius: 12px;
  color: var(--accent-color);
  font-size: 1.8rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.why-chart-item:hover .why-chart-icon {
  background: linear-gradient(135deg, #152233 0%, var(--secondary-color) 100%);
  color: #ffffff;
  transform: scale(1.05);
}

.why-chart-content {
  flex: 1;
  display: flex;
  align-items: center;
}

.why-chart-content h4 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.5;
}

.why-chart-indicator {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.4;
  transition: all 0.4s ease;
}

.why-chart-item:hover .why-chart-indicator {
  opacity: 1;
  transform: scale(1.3);
  background: var(--secondary-color);
}

/*--------------------------------------------------------------
# Our Values - Grid Layout with Icons (Sticky)
--------------------------------------------------------------*/
.values-section-sticky {
  position: relative;
  background: var(--background-color);
  padding: 60px 0;
  margin: 40px 0;
}

.values-grid-container {
  padding: 20px 0;
}

.value-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.value-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(26, 95, 95, 0.15);
  border-color: var(--accent-color);
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #152233 0%, rgba(26, 95, 95, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(26, 95, 95, 0.2);
}

.value-icon i {
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(26, 95, 95, 0.3);
  background: linear-gradient(135deg, rgba(26, 95, 95, 0.9) 0%, #152233 100%);
}

.value-card:hover .value-icon i {
  transform: scale(1.15);
}

.value-title {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  transition: color 0.3s ease;
}

.value-card:hover .value-title {
  color: var(--accent-color);
}

/* Responsive adjustments for values grid */
@media (max-width: 768px) {
  .values-section-sticky {
    position: relative;
    top: 0;
    padding: 40px 0;
  }
  
  .value-card {
    padding: 25px 20px;
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
  }
  
  .value-icon i {
    font-size: 1.75rem;
  }
  
  .value-title {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Recruitment Services Header
--------------------------------------------------------------*/
.recruitment-services-header {
  text-align: center;
  padding: 40px 20px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.recruitment-services-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #152233;
  margin: 0 0 20px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}

.recruitment-services-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #20b2aa 0%, #2487ce 100%);
  margin: 0 auto 25px;
  border-radius: 2px;
}

.recruitment-services-subtitle {
  font-size: 1rem;
  color: #6c757d;
  margin: 0 0 25px 0;
  line-height: 1.6;
  font-weight: 400;
}

.recruitment-services-description {
  font-size: 1.1rem;
  color: #495057;
  margin: 0;
  line-height: 1.8;
  font-weight: 400;
}

@media (max-width: 768px) {
  .recruitment-services-header {
    padding: 30px 15px 50px;
  }
  
  .recruitment-services-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .recruitment-services-divider {
    width: 60px;
    margin-bottom: 20px;
  }
  
  .recruitment-services-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .recruitment-services-description {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Recruitment Process - Step-based Layout
--------------------------------------------------------------*/
.recruitment-process {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.recruitment-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
  width: 100%;
}

.process-step {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 50px 35px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-step:hover {
  box-shadow: 0 12px 40px rgba(26, 95, 95, 0.15);
  transform: translateY(-8px);
  border-color: rgba(26, 95, 95, 0.3);
}

.process-step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'JetBrains Mono', 'Fira Code', 'Source Code Pro', 'Roboto Mono', 'Consolas', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(26, 95, 95, 0.3);
}

.process-step-content {
  margin-top: 15px;
}

.process-step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 95, 95, 0.1) 0%, rgba(45, 125, 125, 0.1) 100%);
  border-radius: 20px;
  color: var(--accent-color);
  font-size: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .process-step-icon {
  background: linear-gradient(135deg, #152233 0%, var(--secondary-color) 100%);
  color: #ffffff;
  transform: scale(1.1);
}

.process-step h4 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.process-step p {
  font-size: 1rem;
  color: var(--default-color);
  margin: 0;
  line-height: 1.7;
}

.process-connector {
  flex: 0 0 auto;
  color: var(--accent-color);
  font-size: 1.5rem;
  padding: 0 10px;
}

/*--------------------------------------------------------------
# Benefits Cards
--------------------------------------------------------------*/
.benefit-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  box-shadow: 0 12px 40px rgba(26, 95, 95, 0.15);
  transform: translateY(-8px);
  border-color: rgba(26, 95, 95, 0.3);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 95, 95, 0.1) 0%, rgba(45, 125, 125, 0.1) 100%);
  border-radius: 18px;
  color: var(--accent-color);
  font-size: 2.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, #152233 0%, var(--secondary-color) 100%);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.benefit-card h4 {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .recruitment-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .recruitment-process {
    flex-direction: column;
    align-items: stretch;
  }
  
  .process-step {
    max-width: 100%;
    min-height: 250px;
    padding: 40px 30px;
  }
  
  .process-connector {
    transform: rotate(90deg);
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.9rem;
  }
  
  .why-chart-container {
    padding: 0 15px;
  }
  
  .why-chart-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .why-chart-item {
    padding: 25px 20px;
  }
  
  .why-chart-icon {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }
  
  .why-chart-content h4 {
    font-size: 1rem;
  }
  
  
  .recruitment-process-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .process-step {
    padding: 40px 25px;
    min-height: 220px;
  }
  
  .process-step-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .benefit-card {
    padding: 30px 20px;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .why-choose-card h4 {
    font-size: 1rem;
  }
  
  
  .recruitment-process-grid {
    gap: 20px;
  }
  
  .process-step {
    padding: 35px 20px;
    min-height: 200px;
  }
  
  .process-step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .process-step h4 {
    font-size: 1.1rem;
  }
  
  .process-step p {
    font-size: 0.95rem;
  }
  
  .process-step-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    top: -18px;
  }
  
  .benefit-card h4 {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Page Improvements - Services, Recruitment, Contact
--------------------------------------------------------------*/

/* Enhanced Section Spacing */
.section {
  padding: 80px 0;
}

.section.light-background {
  background-color: var(--surface-color, #f8f9fa);
}

/* Improved Page Title Styling */
.page-title.accent-background {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 20%) 100%);
  padding: 100px 0 80px;
}

.page-title.accent-background h1 {
  color: var(--contrast-color);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-title.accent-background .breadcrumbs ol a {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.page-title.accent-background .breadcrumbs ol a:hover {
  color: var(--contrast-color);
}

.page-title.accent-background .breadcrumbs ol li.current {
  color: var(--contrast-color);
}

/* Enhanced Section Title */
.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 2px;
}

.section-title p {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 10px;
}

/* Improved Lead Text */
.lead {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 40px;
}

/* Enhanced Contact Info Items */
.contact .info-item {
  padding: 30px;
  background: var(--surface-color, #ffffff);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  font-size: 32px;
  color: var(--accent-color);
  margin-right: 20px;
  flex-shrink: 0;
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .info-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.contact .info-item a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact .info-item a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Enhanced Contact Form */
.contact .php-email-form {
  padding: 40px;
  background: var(--surface-color, #ffffff);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.contact .php-email-form .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact .php-email-form .form-control {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 8px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.contact .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 25%);
}

.contact .php-email-form button[type="submit"] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Enhanced Recruitment Process */
.recruitment-process {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.process-step {
  background: var(--surface-color, #ffffff);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.process-step-icon {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.process-step h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.process-step p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

/* Responsive Improvements for Enhanced Styles */
@media (max-width: 768px) {
  .page-title.accent-background {
    padding: 60px 0 50px;
  }
  
  .page-title.accent-background h1 {
    font-size: 32px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .recruitment-process {
    flex-direction: column;
  }
  
  .process-connector {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  
  .contact .php-email-form {
    padding: 25px 20px;
  }
}

/*--------------------------------------------------------------
# Mission & Vision Cards with Blinking Borders
--------------------------------------------------------------*/
.mission-vision-card {
  background: var(--surface-color, #ffffff);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Shimmer Wave Effect - Page Load Animation */
.mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 255, 0, 0.08) 25%,
    rgba(0, 255, 0, 0.12) 50%,
    rgba(0, 255, 0, 0.08) 75%,
    transparent 100%
  );
  z-index: 1;
  animation: shimmerWave 2.5s ease-in-out;
  animation-fill-mode: forwards;
  pointer-events: none;
}

@keyframes shimmerWave {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .mission-vision-card::before {
    animation: none;
    display: none;
  }
}

.mission-vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mission-vision-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.mission-vision-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #152233;
  border-radius: 50%;
  font-size: 36px;
  color: #ABF001;
}

.mission-vision-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.mission-vision-subtitle {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.mission-vision-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.mission-vision-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 0;
}

/* Blinking Border Effect */
.blinking-border {
  position: relative;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.blinking-border::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%), var(--accent-color));
  background-size: 200% 200%;
  border-radius: 16px;
  z-index: -1;
  animation: borderBlink 3s ease-in-out infinite;
}

@keyframes borderBlink {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 1;
  }
  50% {
    background-position: 100% 50%;
    opacity: 0.7;
  }
}

/*--------------------------------------------------------------
# Values Grid with Blinking Icons
--------------------------------------------------------------*/
.value-card-grid {
  background: var(--surface-color, #ffffff);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.value-card-grid:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.value-icon-grid {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-radius: 50%;
  font-size: 42px;
  color: var(--contrast-color);
  position: relative;
}

/* Blinking Icon Effect */
.blinking-icon .value-icon-grid {
  animation: iconBlink 2s ease-in-out infinite;
}

.blinking-icon .value-icon-grid::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, var(--accent-color), transparent, var(--accent-color));
  background-size: 200% 200%;
  border-radius: 50%;
  z-index: -1;
  animation: iconGlow 2s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes iconBlink {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(36, 135, 206, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px 8px rgba(36, 135, 206, 0.4);
  }
}

@keyframes iconGlow {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.6;
  }
  50% {
    background-position: 100% 50%;
    opacity: 0.9;
  }
}

.value-card-grid .value-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0;
  line-height: 1.4;
}

/* Responsive adjustments for values grid */
@media (max-width: 768px) {
  .mission-vision-card {
    padding: 30px 20px;
  }
  
  .mission-vision-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .mission-vision-header h2 {
    font-size: 26px;
  }
  
  .value-card-grid {
    padding: 30px 20px;
  }
  
  .value-icon-grid {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
# Professional Testimonials Grid Section
--------------------------------------------------------------*/

.testimonials-grid.section {
  overflow: visible;
  position: relative;
  z-index: 1;
}

.testimonials-grid.section > .container {
  overflow: visible;
  position: relative;
  z-index: 2;
}

.testimonials-grid.light-background {
  overflow: visible;
  position: relative;
}

.testimonials-grid.light-background::before {
  z-index: 0;
}

.testimonials-grid.light-background > .container {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.testimonials-grid {
  padding: 80px 0;
  background: var(--background-color, #ffffff);
}

/* Section Header */
.testimonials-header {
  margin-bottom: 60px;
}

.testimonial-badge {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 15px;
}

.testimonials-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--heading-color, #124265);
  margin-bottom: 20px;
  line-height: 1.2;
}

.testimonials-title .text-accent {
  color: var(--accent-color, #2487ce);
}

.testimonials-subtitle {
  font-size: 16px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Testimonials Grid Container */
.testimonials-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: visible;
}

/* Professional Testimonial Card */
.testimonial-hexagon-card {
  position: relative;
  background: #0b5869;
  background-color: #0b5869;
  padding: 50px 40px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  border: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
  width: 100%;
  height: auto;
  margin: 0;
}

/* Accent Line - Top Border */
.testimonial-hexagon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #ABF001;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

/* Large Quotation Mark Watermark */
.testimonial-hexagon-card::after {
  content: '"';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Georgia, serif;
  font-size: 120px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

/* Card Hover State - Subtle Lift */
.testimonial-hexagon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-hexagon-card:hover::before {
  opacity: 1;
}

/* Content Container */
.hexagon-content {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Testimonial Text */
.hexagon-testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 30px;
  text-align: center;
}

/* Client Name - Trust Label Style */
.hexagon-client-name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Hide decorative quote icons (using watermark instead) */
.hexagon-quote-icon {
  display: none !important;
}

/* Hide angular lines */
.hexagon-angular-line {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 992px) {
  .testimonials-grid {
    padding: 60px 0;
  }
  
  .testimonials-title {
    font-size: 36px;
  }
  
  /* 2 columns on tablet */
  .testimonials-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .testimonial-hexagon-card {
    padding: 45px 35px;
    min-height: 260px;
  }
  
  .hexagon-testimonial-text {
    font-size: 16px;
  }
  
  .testimonial-hexagon-card::after {
    font-size: 100px;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    padding: 50px 0;
  }
  
  .testimonials-header {
    margin-bottom: 40px;
  }
  
  .testimonial-badge {
    font-size: 12px;
  }
  
  .testimonials-title {
    font-size: 28px;
  }
  
  .testimonials-subtitle {
    font-size: 15px;
  }
  
  /* 1 column on mobile */
  .testimonials-grid-container {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 100%;
  }
  
  .testimonial-hexagon-card {
    padding: 40px 30px;
    min-height: 240px;
  }
  
  .hexagon-testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
  }
  
  .hexagon-client-name {
    font-size: 13px;
  }
  
  .testimonial-hexagon-card::after {
    font-size: 90px;
  }
}

/* Override any Bootstrap or theme grid conflicts */
.testimonials-grid-container.row,
.testimonials-grid-container[class*="row"] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  gap: 30px;
}

/* Ensure proper box sizing */
.testimonials-grid * {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Recruitment Industries Carousel Section
--------------------------------------------------------------*/

#recruitment-industries .industries-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  margin: 0 auto;
}

#recruitment-industries .industries-carousel {
  display: flex;
  gap: 20px;
  width: fit-content;
  will-change: transform;
  animation: scrollRecruitmentIndustries 40s linear infinite;
}

#recruitment-industries .industries-carousel-wrapper:hover .industries-carousel {
  animation-play-state: paused;
}

#recruitment-industries .industry-carousel-item {
  flex: 0 0 auto;
  width: 200px;
  min-width: 200px;
}

#recruitment-industries .industry-item-card {
  background: #ffffff;
  border: 2px solid #152233;
  border-radius: 50px;
  padding: 25px 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  position: relative;
  gap: 15px;
}

#recruitment-industries .industry-item-card:hover {
  transform: scale(1.05);
  border-color: #0f1a29;
  box-shadow: 0 8px 20px rgba(21, 34, 51, 0.15);
}

#recruitment-industries .industry-icon {
  font-size: 32px;
  color: #AAFF00;
  margin-bottom: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #152233;
  border-radius: 50%;
  flex-shrink: 0;
}

#recruitment-industries .industry-item-card:hover .industry-icon {
  color: #AAFF00;
  transform: scale(1.1);
}

#recruitment-industries .industry-name {
  font-family: var(--heading-font, "Raleway", sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: #152233;
  line-height: 1.5;
  display: block;
  text-align: center;
  margin: 0;
}

@keyframes scrollRecruitmentIndustries {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 9 - 20px * 9));
  }
}


@media (max-width: 992px) {
  #recruitment-industries .industry-carousel-item {
    width: 180px;
    min-width: 180px;
  }
  
  #recruitment-industries .industry-item-card {
    padding: 22px 25px;
    min-height: 120px;
    gap: 12px;
  }
  
  #recruitment-industries .industry-icon {
    font-size: 28px;
    width: 60px;
    height: 60px;
    margin-bottom: 0;
  }
  
  #recruitment-industries .industry-name {
    font-size: 15px;
  }
  
  @keyframes scrollRecruitmentIndustries {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-180px * 9 - 20px * 9));
    }
  }
}

@media (max-width: 768px) {
  #recruitment-industries .industries-carousel {
    gap: 18px;
    animation-duration: 35s;
  }
  
  #recruitment-industries .industry-carousel-item {
    width: 160px;
    min-width: 160px;
  }
  
  #recruitment-industries .industry-item-card {
    padding: 20px 22px;
    min-height: 110px;
    border-radius: 40px;
    gap: 10px;
  }
  
  #recruitment-industries .industry-icon {
    font-size: 26px;
    width: 55px;
    height: 55px;
    margin-bottom: 0;
  }
  
  #recruitment-industries .industry-name {
    font-size: 14px;
  }
  
  @keyframes scrollRecruitmentIndustries {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-160px * 9 - 18px * 9));
    }
  }
}

@media (max-width: 576px) {
  #recruitment-industries .industry-carousel-item {
    width: 150px;
    min-width: 150px;
  }
  
  #recruitment-industries .industry-item-card {
    padding: 18px 20px;
    min-height: 105px;
    gap: 10px;
  }
  
  #recruitment-industries .industry-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    margin-bottom: 0;
  }
  
  #recruitment-industries .industry-name {
    font-size: 13px;
  }
  
  @keyframes scrollRecruitmentIndustries {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-150px * 9 - 18px * 9));
    }
  }
}

/*--------------------------------------------------------------
# Hero Services Scrolling Section
--------------------------------------------------------------*/

.hero-services-scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
  margin-top: 50px;
}

.hero-services-scroll {
  display: flex;
  gap: 30px;
  width: fit-content;
  animation: scrollHeroServices 35s linear infinite;
  will-change: transform;
}

.hero-services-scroll-wrapper:hover .hero-services-scroll {
  animation-play-state: paused;
}

.hero-scroll-item {
  flex: 0 0 auto;
  width: 280px;
}

.hero-scroll-item .icon-box {
  width: 100%;
  margin: 0;
}

/* Icon color override for scrolling services */
.hero-services-scroll-wrapper .icon-box .icon i {
  color: #ABF001 !important;
}

/* Service name color override for scrolling services */
.hero-services-scroll-wrapper .icon-box .title a {
  color: #152233 !important;
}

.hero-services-scroll-wrapper .icon-box:hover .title a {
  color: #152233 !important;
}

@keyframes scrollHeroServices {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-280px * 7 - 30px * 7));
  }
}

@media (max-width: 992px) {
  .hero-services-scroll {
    gap: 25px;
    animation-duration: 32s;
  }
  
  .hero-scroll-item {
    width: 260px;
  }
  
  @keyframes scrollHeroServices {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-260px * 7 - 25px * 7));
    }
  }
}

@media (max-width: 768px) {
  .hero-services-scroll-wrapper {
    padding: 40px 0;
    margin-top: 40px;
  }
  
  .hero-services-scroll {
    gap: 20px;
    animation-duration: 30s;
  }
  
  .hero-scroll-item {
    width: 240px;
  }
  
  @keyframes scrollHeroServices {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-240px * 7 - 20px * 7));
    }
  }
}

@media (max-width: 576px) {
  .hero-services-scroll {
    gap: 18px;
    animation-duration: 28s;
  }
  
  .hero-scroll-item {
    width: 220px;
  }
  
  @keyframes scrollHeroServices {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-220px * 7 - 18px * 7));
    }
  }
}

/*--------------------------------------------------------------
# Home Page Enhanced CSS Effects
--------------------------------------------------------------*/

/* Hero Section - OnePage Template Style - Override main.css */
section.hero,
.hero.section,
.hero {
  width: 100% !important;
  min-height: calc(100vh - 100px) !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 150px 0 120px 0 !important;
  overflow: hidden !important;
  background-color: #f6fafd !important;
  background-image: url('../images/hero.webp') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}

section.hero:before,
.hero.section:before,
.hero:before {
  content: "" !important;
  background: rgba(10, 22, 34, 0.55) !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
}

section.hero img,
.hero.section img,
.hero img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  z-index: 1 !important;
  opacity: 0.03 !important;
}

.hero .container,
.hero .container-fluid {
  position: relative;
  z-index: 3;
}

.hero .hero-content-wrapper {
  max-width: 1150px !important;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.hero .col-12.hero-content-wrapper {
  max-width: 1250px !important;
  flex: 0 0 100%;
}

.hero h1 {
  margin: 0 0 32px 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.3;
  animation: fadeInUp 0.8s ease-out;
  color: #FFFFFF !important;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.5px;
  max-width: 100%;
}

.hero p {
  margin: 0 0 40px 0;
  font-size: 20px;
  line-height: 1.7;
  color: #E5E7EB !important;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 992px) {
  .hero {
    background-attachment: scroll !important;
  }

  .hero-content-wrapper {
    max-width: 100%;
    padding: 0;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
  }
  
  .hero .btn-get-started {
    padding: 14px 40px;
    font-size: 15px;
  }
}

/* Get Started Button - OnePage Template Style */
.hero .btn-get-started {
  color: #0A1622 !important;
  background: #84F000 !important;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 16px 48px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
  border: none;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(132, 240, 0, 0.2);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero .btn-get-started:hover {
  background: #84F000 !important;
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(132, 240, 0, 0.4);
  color: #0A1622 !important;
}

/* Other Get Started Buttons - Enhanced Style */
.btn-get-started:not(.hero .btn-get-started) {
  display: inline-block;
  padding: 14px 35px;
  background: var(--accent-color, #2487ce);
  color: var(--contrast-color, #ffffff);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(36, 135, 206, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-get-started:not(.hero .btn-get-started)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-get-started:not(.hero .btn-get-started):hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(36, 135, 206, 0.4);
  background: color-mix(in srgb, var(--accent-color), #000000 10%);
}

.btn-get-started:not(.hero .btn-get-started):hover::before {
  width: 300px;
  height: 300px;
}

/* Hero Icon Box - OnePage Template Style */
.hero .icon-box {
  background-color: var(--surface-color);
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: var(--accent-color);
  /* Remove circular background - match OnePage template */
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
}

.hero .icon-box .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: all 0.3s ease-in-out;
}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.hero .icon-box .title a {
  color: var(--heading-color);
  transition: 0.3s;
  text-decoration: none;
}

.hero .icon-box .description {
  font-size: 15px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .hero .icon-box:hover {
    transform: scale(1.08);
  }

  .hero .icon-box:hover .title a {
    color: var(--accent-color);
  }
}

/* Other Icon Boxes (non-hero) - Enhanced Styles */
section:not(.hero) .icon-box,
.icon-box:not(.hero .icon-box) {
  background: var(--surface-color, #ffffff);
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section:not(.hero) .icon-box::before,
.icon-box:not(.hero .icon-box)::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(36, 135, 206, 0.05), transparent);
  transition: left 0.5s;
}

section:not(.hero) .icon-box:hover::before,
.icon-box:not(.hero .icon-box):hover::before {
  left: 100%;
}

section:not(.hero) .icon-box:hover,
.icon-box:not(.hero .icon-box):hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(36, 135, 206, 0.2);
}

section:not(.hero) .icon-box .icon,
.icon-box:not(.hero .icon-box) .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #152233, color-mix(in srgb, #152233, transparent 20%));
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

section:not(.hero) .icon-box .icon i,
.icon-box:not(.hero .icon-box) .icon i {
  font-size: 36px;
  color: var(--contrast-color, #ffffff);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

section:not(.hero) .icon-box:hover .icon,
.icon-box:not(.hero .icon-box):hover .icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(36, 135, 206, 0.3);
}

section:not(.hero) .icon-box:hover .icon i,
.icon-box:not(.hero .icon-box):hover .icon i {
  transform: scale(1.1);
}

section:not(.hero) .icon-box .title,
.icon-box:not(.hero .icon-box) .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

section:not(.hero) .icon-box .title a,
.icon-box:not(.hero .icon-box) .title a {
  color: var(--heading-color, #124265);
  text-decoration: none;
  transition: color 0.3s ease;
}

section:not(.hero) .icon-box:hover .title a,
.icon-box:not(.hero .icon-box):hover .title a {
  color: var(--accent-color, #2487ce);
}

section:not(.hero) .icon-box .description,
.icon-box:not(.hero .icon-box) .description {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

/* About Section Enhancements */
.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.about .content ul li:hover {
  transform: translateX(5px);
}

.about .content ul li i {
  color: var(--accent-color, #2487ce);
  font-size: 20px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.about .content ul li:hover i {
  transform: scale(1.2);
}

.about .content ul li span {
  color: var(--default-color);
  line-height: 1.6;
}

/* Read More Link Enhancement */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color, #2487ce);
  font-weight: 600;
  font-size: 16px;
  margin-top: 20px;
  transition: all 0.3s ease;
  padding: 10px 0;
}

.read-more span {
  transition: transform 0.3s ease;
}

.read-more i {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.read-more:hover {
  color: color-mix(in srgb, var(--accent-color), #000000 15%);
}

.read-more:hover span {
  transform: translateX(3px);
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Services Section - Horizontal Scroll Container */
.services .container > .row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  gap: 0;
  padding-bottom: 20px;
}

.services .container > .row::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.services .container > .row > [class*="col-"] {
  flex: 0 0 auto;
  min-width: 300px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .services .container > .row > [class*="col-"] {
    min-width: 350px;
  }
}

@media (min-width: 992px) {
  .services .container > .row {
    flex-wrap: wrap;
    overflow-x: visible;
  }
  
  .services .container > .row > [class*="col-"] {
    flex: 0 0 auto;
    min-width: auto;
    max-width: 100%;
  }
}

/* Service Item Enhancements */
.service-item {
  background: var(--surface-color, #ffffff);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  margin-right: 20px;
}

@media (min-width: 992px) {
  .service-item {
    margin-right: 0;
  }
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(36, 135, 206, 0.2);
}

.service-item .icon {
  position: relative;
  margin-bottom: 25px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .icon {
  transform: scale(1.1) rotateY(10deg);
}

.service-item .icon svg {
  transition: transform 0.4s ease;
  width: 100%;
  height: 100%;
}

.service-item:hover .icon svg {
  transform: rotate(5deg);
}

.service-item .icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 42px;
  color: var(--accent-color, #2487ce);
  transition: all 0.4s ease;
  z-index: 2;
}

.service-item:hover .icon i {
  color: var(--heading-color, #124265);
  transform: translate(-50%, -50%) scale(1.1);
}

.service-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.service-item:hover h3 {
  color: var(--accent-color, #2487ce);
}

.service-item p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  flex-grow: 1;
}

/* Section Title Enhancements */
.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  border-radius: 2px;
  transition: width 0.4s ease;
}

.section-title:hover h2::after {
  width: 100px;
}

.section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 17px;
  margin-top: 15px;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Transitions */
.section {
  transition: background-color 0.3s ease;
}

/* Contact Section Enhancements */
.contact .info-item {
  padding: 25px;
  background: var(--surface-color, #ffffff);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact .info-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(36, 135, 206, 0.2);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color, #2487ce);
  transition: transform 0.3s ease;
}

.contact .info-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* Form Input Enhancements */
.contact .php-email-form input,
.contact .php-email-form textarea {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 12px 20px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color, #2487ce);
  box-shadow: 0 0 0 3px rgba(36, 135, 206, 0.1);
  outline: none;
}

.contact .php-email-form button[type="submit"] {
  background: var(--accent-color, #2487ce);
  color: #152233;
  padding: 14px 35px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(36, 135, 206, 0.3);
  cursor: pointer;
}

.contact .php-email-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(36, 135, 206, 0.4);
  background: color-mix(in srgb, var(--accent-color), #000000 10%);
}

.contact .php-email-form button[type="submit"]:active {
  transform: translateY(-1px);
}

/* Call to Action Section - Enhanced */
.call-to-action {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2487ce 0%, #1a6ba8 50%, #124265 100%) !important;
  background-attachment: fixed;
}

.call-to-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  animation: pulse 6s ease-in-out infinite;
  z-index: 1;
}

.call-to-action::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    );
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action h3 {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.call-to-action p {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 18px;
  margin-bottom: 30px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.call-to-action a[href^="mailto"] {
  color: #ffffff !important;
  text-decoration: underline !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action a[href^="mailto"]:hover {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.call-to-action .cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #ffffff;
  color: #2487ce;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 
              0 0 0 0 rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.call-to-action .cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(36, 135, 206, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.call-to-action .cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35),
              0 0 0 8px rgba(255, 255, 255, 0.2);
  background: #f8f9fa;
  color: #2487ce;
}

.call-to-action .cta-btn:hover::before {
  width: 400px;
  height: 400px;
}

.call-to-action .cta-btn:active {
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Call To Action Banner with Image
--------------------------------------------------------------*/
.call-to-action-banner {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.call-to-action-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.call-to-action-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.call-to-action-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 34, 0.65);
  z-index: 2;
}

.call-to-action-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
  color: #ffffff;
}

.call-to-action-content h3 {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.call-to-action-content p {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 18px;
  margin-bottom: 30px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.call-to-action-content a[href^="mailto"] {
  color: #ffffff !important;
  text-decoration: underline !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-content a[href^="mailto"]:hover {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.call-to-action-content .cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #ffffff;
  color: #2487ce;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 
              0 0 0 0 rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-decoration: none;
}

.call-to-action-content .cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(36, 135, 206, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.call-to-action-content .cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35),
              0 0 0 8px rgba(255, 255, 255, 0.2);
  background: #f8f9fa;
  color: #2487ce;
}

.call-to-action-content .cta-btn:hover::before {
  width: 400px;
  height: 400px;
}

.call-to-action-content .cta-btn:active {
  transform: translateY(-2px);
}

/* Responsive Design for Call To Action Banner */
@media (max-width: 992px) {
  .call-to-action-banner {
    min-height: 350px;
  }
  
  .call-to-action-content {
    padding: 60px 0;
  }
  
  .call-to-action-content h3 {
    font-size: 26px;
  }
  
  .call-to-action-content p {
    font-size: 16px;
  }
  
  .call-to-action-content .cta-btn {
    padding: 14px 32px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .call-to-action-banner {
    min-height: 300px;
  }
  
  .call-to-action-content {
    padding: 50px 0;
  }
  
  .call-to-action-content h3 {
    font-size: 22px;
  }
  
  .call-to-action-content p {
    font-size: 15px;
  }
  
  .call-to-action-content .cta-btn {
    padding: 12px 28px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .call-to-action-banner {
    min-height: 280px;
  }
  
  .call-to-action-content {
    padding: 40px 0;
  }
  
  .call-to-action-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .call-to-action-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .call-to-action-content .cta-btn {
    padding: 10px 24px;
    font-size: 12px;
  }
}

/* Responsive Enhancements - OnePage Template Style */
@media (max-width: 992px) {
  .hero {
    background-attachment: scroll !important;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
  }
  
  .hero .icon-box {
    padding: 40px 25px;
  }
  
  .call-to-action h3 {
    font-size: 26px;
  }
  
  .call-to-action p {
    font-size: 16px;
  }
  
  .call-to-action .cta-btn {
    padding: 14px 32px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    background-attachment: scroll;
  }
  
  .call-to-action h3 {
    font-size: 22px;
  }
  
  .call-to-action p {
    font-size: 15px;
  }
  
  .call-to-action .cta-btn {
    padding: 12px 28px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .hero .btn-get-started {
    padding: 12px 35px;
    font-size: 14px;
  }
  
  .hero .icon-box {
    padding: 35px 20px;
  }
  
  .hero .icon-box .icon {
    font-size: 30px;
  }
  
  /* Other icon boxes */
  section:not(.hero) .icon-box .icon,
  .icon-box:not(.hero .icon-box) .icon {
    width: 70px;
    height: 70px;
  }
  
  section:not(.hero) .icon-box .icon i,
  .icon-box:not(.hero .icon-box) .icon i {
    font-size: 30px;
  }
  
  .service-item {
    padding: 30px 25px;
  }
}

/* Services Navigation Buttons */
.services-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.services-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--accent-color, #2487ce);
  background: var(--surface-color, #ffffff);
  color: var(--accent-color, #2487ce);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 20px;
  position: relative;
  z-index: 10;
}

.services-nav-btn:hover {
  background: var(--accent-color, #2487ce);
  color: var(--contrast-color, #ffffff);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(36, 135, 206, 0.3);
}

.services-nav-btn:active {
  transform: scale(0.95);
}

.services-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.services-nav-btn:disabled:hover {
  background: var(--surface-color, #ffffff);
  color: var(--accent-color, #2487ce);
  transform: none;
  box-shadow: none;
}

.services-nav-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(36, 135, 206, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-dot.active {
  background: var(--accent-color, #2487ce);
  width: 16px;
  height: 16px;
  border-color: rgba(36, 135, 206, 0.2);
}

.nav-dot:hover {
  background: rgba(36, 135, 206, 0.6);
  transform: scale(1.2);
}

@media (min-width: 992px) {
  .services-navigation {
    display: none; /* Hide navigation on desktop where all services are visible */
  }
}

/*--------------------------------------------------------------
# Global Green Icons and Buttons - Excluding Service Pages
--------------------------------------------------------------*/

/* All icons green (#ABF001) - EXCEPT service items */
.icon i,
.icon-box .icon,
.icon-box .icon i,
.hero .icon-box .icon i,
section:not(.services) .icon i,
section:not(.services) .icon-box .icon i,
.about ul li i,
.about-alt .content ul i,
.contact .info-item i,
.contact-info-icon i,
.value-icon i,
.value-icon-grid i,
.benefit-icon i,
.process-step-icon i,
.industry-icon i,
.industry-icon-wrapper i,
.why-chart-icon i,
.service-step-icon i,
.footer .social-links a i,
.footer .social-icon i,
.faq-container .faq-item h3 .num,
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right,
.service-details ul i,
.pricing ul i {
  color: #ABF001 !important;
}

/* Exclude service items from green color - preserve original colors */
.services .service-item.item-cyan .icon i,
.services .service-item.item-cyan i {
  color: #0dcaf0 !important;
}

.services .service-item.item-orange .icon i,
.services .service-item.item-orange i {
  color: #fd7e14 !important;
}

.services .service-item.item-teal .icon i,
.services .service-item.item-teal i {
  color: #20c997 !important;
}

.services .service-item.item-red .icon i,
.services .service-item.item-red i {
  color: #df1529 !important;
}

.services .service-item.item-indigo .icon i,
.services .service-item.item-indigo i {
  color: #6610f2 !important;
}

.services .service-item.item-pink .icon i,
.services .service-item.item-pink i {
  color: #39FF14 !important;
}

.services .service-item.item-green .icon i,
.services .service-item.item-green i {
  color: #39FF14 !important;
}

.services .service-item.item-cyan:hover .icon i,
.services .service-item.item-orange:hover .icon i,
.services .service-item.item-teal:hover .icon i,
.services .service-item.item-red:hover .icon i,
.services .service-item.item-indigo:hover .icon i,
.services .service-item.item-pink:hover .icon i,
.services .service-item.item-green:hover .icon i {
  color: #fff !important;
}

/* All buttons green background (#ABF001) - EXCEPT service-related buttons */
button:not(.services-nav-btn),
.btn:not(.services-nav-btn),
.btn-primary:not(.services-nav-btn),
.btn-get-started:not(.services-nav-btn),
.btn-getstarted:not(.services-nav-btn),
.hero .btn-get-started:not(.services-nav-btn),
.btn-outline-primary:not(.services-nav-btn),
.read-more:not(.services-nav-btn),
.cta-btn:not(.services-nav-btn),
.call-to-action .cta-btn:not(.services-nav-btn),
.contact .php-email-form button[type="submit"]:not(.services-nav-btn),
.contact .php-email-form button[type=submit]:not(.services-nav-btn),
.php-email-form button[type=submit]:not(.services-nav-btn),
.pricing .buy-btn:not(.services-nav-btn),
.portfolio-details .portfolio-info .btn-visit:not(.services-nav-btn),
.scroll-top {
  background-color: #ABF001 !important;
  background: #ABF001 !important;
}

/* Button hover states - darker green (except services section) */
button:not(.services-nav-btn):hover,
.btn:not(.services-nav-btn):hover,
.btn-primary:not(.services-nav-btn):hover,
.btn-get-started:not(.services-nav-btn):hover,
.btn-getstarted:not(.services-nav-btn):hover,
.hero .btn-get-started:not(.services-nav-btn):hover,
.btn-outline-primary:not(.services-nav-btn):hover,
.read-more:not(.services-nav-btn):hover,
.cta-btn:not(.services-nav-btn):hover,
.call-to-action .cta-btn:not(.services-nav-btn):hover,
.contact .php-email-form button[type="submit"]:not(.services-nav-btn):hover,
.contact .php-email-form button[type=submit]:not(.services-nav-btn):hover,
.php-email-form button[type=submit]:not(.services-nav-btn):hover,
.pricing .buy-btn:not(.services-nav-btn):hover,
.portfolio-details .portfolio-info .btn-visit:not(.services-nav-btn):hover,
.scroll-top:hover {
  background-color: #00cc00 !important;
  background: #00cc00 !important;
}

/* Exclude service-related buttons */
.services .service-item .icon,
.services-nav-btn {
  background-color: inherit !important;
  background: inherit !important;
}

.services-nav-btn:hover {
  background-color: var(--accent-color, #2487ce) !important;
  background: var(--accent-color, #2487ce) !important;
}

/* Button text color - #152233 for all buttons (except services section and icons) */
button:not(.services-nav-btn),
.btn:not(.services-nav-btn),
.btn-primary:not(.services-nav-btn),
.btn-get-started:not(.services-nav-btn),
.btn-getstarted:not(.services-nav-btn),
.header .btn-getstarted:not(.services-nav-btn),
.header .btn-getstarted:not(.services-nav-btn):focus,
.hero .btn-get-started:not(.services-nav-btn),
.cta-btn:not(.services-nav-btn),
.call-to-action .cta-btn:not(.services-nav-btn),
.contact .php-email-form button[type="submit"]:not(.services-nav-btn),
.contact .php-email-form button[type=submit]:not(.services-nav-btn),
.php-email-form button[type=submit]:not(.services-nav-btn),
.pricing .buy-btn:not(.services-nav-btn),
.portfolio-details .portfolio-info .btn-visit:not(.services-nav-btn),
.read-more:not(.services-nav-btn) {
  color: #152233 !important;
}

/* Keep white icon for scroll-top button */
.scroll-top i {
  color: #ffffff !important;
}

/* Outline buttons - green border and text */
.btn-outline-primary {
  border-color: #ABF001 !important;
  color: #ABF001 !important;
  background-color: transparent !important;
  background: transparent !important;
}

.btn-outline-primary:hover {
  background-color: #ABF001 !important;
  background: #ABF001 !important;
  color: #152233 !important;
}

/*--------------------------------------------------------------
# Careers Page Section
--------------------------------------------------------------*/
.careers-main-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 0;
}

.careers-content-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.careers-image-column {
  position: sticky;
  top: 100px;
  height: fit-content;
  display: flex;
  align-items: flex-start;
}

.careers-banner-image {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}

/* Base Careers Section Styles */
.careers-section {
  position: relative;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.careers-section-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.careers-section-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color, #1a5f5f);
  line-height: 1.5;
  margin-top: 20px;
}

/* Unified Card Style for All Career Sections */
.careers-section-card {
  background: #ffffff;
  border: 1px solid rgba(21, 34, 51, 0.1);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.careers-section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(21, 34, 51, 0.15);
}

.careers-section-card .careers-icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #152233;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.careers-section-card .careers-icon-circle i {
  font-size: 32px;
  color: #ABF001;
  transition: transform 0.3s ease;
}

.careers-section-card:hover .careers-icon-circle {
  transform: scale(1.05);
}

.careers-section-card:hover .careers-icon-circle i {
  transform: scale(1.1);
}

.careers-section-card .careers-email-address {
  margin: 15px 0 0 0;
}

.careers-section-card .careers-email-address a {
  color: var(--accent-color, #2487ce);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.careers-section-card .careers-email-address a:hover {
  color: var(--heading-color, #1a5f5f);
  text-decoration: underline;
}

/* Send Resume Section - Dark Background */
.careers-section-resume {
  background: #152233 !important;
  border-color: rgba(255, 255, 255, 0.1);
}

.careers-section-resume .careers-section-title {
  color: #ffffff;
}

.careers-section-resume .careers-icon-circle {
  background: #ABF001;
}

.careers-section-resume .careers-icon-circle i {
  color: #152233;
}

.careers-section-resume .careers-email-address a {
  color: #ABF001;
}

.careers-section-resume .careers-email-address a:hover {
  color: #ffffff;
}

/* Remove zig-zag alignment - all items now left-aligned */

/* Mobile - Stack Layout */
@media (max-width: 991px) {
  .careers-main-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .careers-image-column {
    position: relative;
    top: 0;
    order: 2;
  }
  
  .careers-content-column {
    order: 1;
  }
  
  .careers-banner-image {
    min-height: 400px;
  }
}

@media (max-width: 767px) {
  .careers-main-layout {
    gap: 30px;
  }
  
  .careers-content-column {
    gap: 25px;
  }
  
  .careers-section-card {
    padding: 35px 25px;
  }
  
  .careers-section-card .careers-icon-circle {
    width: 60px;
    height: 60px;
  }
  
  .careers-section-card .careers-icon-circle i {
    font-size: 28px;
  }
  
  .careers-section-title {
    font-size: 18px;
    margin-top: 18px;
  }
  
  .careers-section-card .careers-email-address a {
    font-size: 16px;
  }
}

/* Careers Email Section */
.careers-email-container {
  margin-top: 0;
  padding-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.careers-email-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 500px;
  width: 100%;
}

.careers-email-label {
  font-size: 16px;
  color: var(--heading-color, #1a5f5f);
  margin: 0 0 10px 0;
  font-weight: 500;
}

.careers-email-address {
  margin: 0;
}

.careers-email-address a {
  color: var(--accent-color, #2487ce);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.careers-email-address a:hover {
  color: var(--heading-color, #1a5f5f);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .careers-email-box {
    padding: 25px 35px;
    margin: 0 20px;
  }
  
  .careers-email-label {
    font-size: 15px;
  }
  
  .careers-email-address a {
    font-size: 16px;
  }
}

/* Careers FAQ Section - Grid Layout */
.careers-faq-grid-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* FAQ Header Box */
.careers-faq-header-box {
  background: linear-gradient(135deg, #1a5f5f 0%, #2487ce 50%, #2d9cdb 100%);
  border-radius: 16px;
  padding: 40px 45px;
  box-shadow: 0 4px 20px rgba(26, 95, 95, 0.2);
  border: none;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.careers-faq-header-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.careers-faq-header-box:hover {
  box-shadow: 0 6px 30px rgba(26, 95, 95, 0.3);
  transform: translateY(-3px);
}

.careers-faq-header-box:hover::before {
  opacity: 1;
}

.careers-faq-header-content {
  text-align: left;
}

.careers-faq-header-content {
  position: relative;
  z-index: 1;
}

.careers-faq-header-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #152233;
  margin: 0 0 10px 0;
  line-height: 1.3;
  position: relative;
  padding-bottom: 15px;
}

.careers-faq-header-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

.careers-faq-header-content p {
  font-size: 16px;
  color: rgba(21, 34, 51, 0.85);
  margin: 0;
  line-height: 1.6;
}

.careers-faq-toggle-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ABF001;
  border: none;
  color: #152233;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
  position: relative;
  z-index: 1;
}

.careers-faq-toggle-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(0, 255, 0, 0.2);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
  z-index: -1;
}

.careers-faq-toggle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 255, 0, 0.4);
}

.careers-faq-toggle-btn:hover::before {
  transform: translate(-50%, -50%) scale(1.3);
}

.careers-faq-toggle-btn i {
  transition: transform 0.4s ease;
  color: #152233;
  z-index: 1;
  position: relative;
}

.careers-faq-toggle-btn:hover i {
  transform: rotate(15deg);
}

.careers-faq-toggle-btn.active i {
  transform: rotate(180deg);
}

/* FAQ Items Wrapper */
.careers-faq-items-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.4s ease 0.2s,
              padding 0.4s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.careers-faq-items-wrapper.expanded {
  max-height: 2000px;
  opacity: 1;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.5s ease;
}

.careers-faq-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 35px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(21, 34, 51, 0.08);
}

.careers-faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.careers-faq-question {
  margin-bottom: 15px;
}

.careers-faq-question h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color, #152233);
  margin: 0;
  line-height: 1.5;
}

.careers-faq-answer {
  padding-left: 20px;
}

.careers-faq-answer p {
  font-size: 16px;
  color: var(--default-color, #555555);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .careers-faq-grid-container {
    gap: 15px;
  }
  
  .careers-faq-header-box {
    padding: 30px 25px;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .careers-faq-header-content {
    text-align: center;
  }
  
  .careers-faq-header-content h2 {
    font-size: 24px;
    padding-bottom: 12px;
  }
  
  .careers-faq-header-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .careers-faq-toggle-btn {
    margin: 0 auto;
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  
  .careers-faq-item {
    padding: 25px 25px;
  }
  
  .careers-faq-question h4 {
    font-size: 16px;
  }
  
  .careers-faq-answer {
    padding-left: 15px;
  }
  
  .careers-faq-answer p {
    font-size: 15px;
  }
}

/* Our Team Section - Premium Grid Layout */
#team .section-title,
#team h2 {
  text-align: center;
}

.team-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.team-card:hover .team-image-wrapper {
  transform: scale(1.05);
}

.team-card:hover .team-card-accent {
  opacity: 1;
  height: 4px;
}

.team-card-founder {
  border: 2px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(135deg, #ABF001 0%, rgba(171, 240, 1, 0.3) 100%) border-box;
}

.team-card-image {
  margin-bottom: 24px;
}

.team-image-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #152233;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(21, 34, 51, 0.15),
              0 0 0 4px rgba(171, 240, 1, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.team-member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-member-name {
  color: #152233;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.team-card-founder .team-member-name {
  font-size: 23px;
}

.team-member-role {
  color: #ABF001;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.team-member-company {
  color: #6b7280;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.4;
}

.team-member-divider {
  width: 40px;
  height: 1px;
  background: #e5e7eb;
  margin: 0 auto 16px;
}

.team-member-description {
  color: #152233;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.team-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(90deg, transparent, #ABF001, transparent);
  opacity: 0;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-grid-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .team-card {
    padding: 24px;
  }
  
  .team-image-wrapper {
    width: 120px;
    height: 120px;
  }
  
  .team-member-name {
    font-size: 18px;
  }
  
  .team-card-founder .team-member-name {
    font-size: 19px;
  }
  
  .team-member-description {
    font-size: 14px;
  }
}

/* ================================
   Our Client Title Section
================================ */
.client-title-section {
  width: 100%;
  padding: 60px 0 40px 0;
  background: transparent;
}

.client-strip-title {
  text-align: center;
  margin: 0;
  padding: 0 20px;
}

.client-strip-title h2 {
  color: var(--heading-color, #1a5f5f);
  font-size: 42px !important;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
}

/* ================================
   Single Client Logo Strip - Marquee
================================ */
.client-strip {
  width: 100%;
  background: #0e5a6b;
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  margin-top: 0;
}

.client-strip-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee-scroll 15s linear infinite !important;
  will-change: transform;
  position: relative;
  left: 0;
}

.client-strip-track img {
  width: 420px;
  max-width: 90%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* Marquee Animation - Left to Right (Full Screen Movement) */
@keyframes marquee-scroll {
  0% {
    transform: translateX(calc(-100% - 80px));
  }
  100% {
    transform: translateX(calc(100vw));
  }
}

/* Pause on hover */
.client-strip-track:hover {
  animation-play-state: paused;
}

/* Responsive scaling */
@media (max-width: 768px) {
  .client-title-section {
    padding: 50px 0 30px 0;
  }
  .client-strip-title h2 {
    font-size: 28px;
  }
  .client-strip {
    padding: 20px 0;
  }
  .client-strip-track img {
    width: 320px;
  }
}

@media (max-width: 576px) {
  .client-title-section {
    padding: 40px 0 25px 0;
  }
  .client-strip-title h2 {
    font-size: 24px;
  }
  .client-strip {
    padding: 16px 0;
  }
  .client-strip-track img {
    width: 260px;
  }
}

/* Footer Spacing Fix - Remove extra whitespace after footer */
#footer {
  margin-bottom: 0 !important;
}

#footer + * {
  margin-top: 0 !important;
}

body {
  margin-bottom: 0 !important;
}


