/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.6.1770883272
Updated: 2026-02-12 08:01:12

*/


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #047857;
  --secondary-color: #1a4d4d;
  --dark-bg: #0a1f2e;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --transition: all 0.3s ease;
}
.admin-bar .header{
    top: 32px;
}
@media screen and (max-width: 600px) {
    .admin-bar .header {
        top: 0px;
    }
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.wpcf7-response-output {
  display: none !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
  background: var(--white);
  padding: 7px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon svg {
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--secondary-color);
}

.logo-subtitle {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-light);
}

.nav {
  display: flex;
  gap: 35px;
}

.nav-link {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  font-size: 24px;
  color: var(--secondary-color);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

#heroCarousel {
  height: 100%;
}

.carousel-inner {
  height: 100%;
}

.carousel-item {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fadeIn 1s ease-out;
  z-index: 1;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.95;
}

.btn {
  padding: 14px 35px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background: #008f7f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 168, 150, 0.3);
}

/* Bootstrap Carousel Controls Styling */
.carousel-control-prev,
.carousel-control-next {
  width: 45px;
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(5px);
  opacity: 1;
  transition: var(--transition);
  z-index: 10;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

/* Bootstrap Carousel Indicators Styling */
.carousel-indicators {
  bottom: 30px;
  margin-bottom: 0;
  z-index: 10;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  transition: var(--transition);
  margin: 0 5px;
}

.carousel-indicators .active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--white);
}

/* ========================================
   Brands Section
   ======================================== */
.brands {
  padding: 80px 0;
  background: var(--white);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-title.left {
  text-align: left;
}

.section-description {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transition: var(--transition);
}

.brand-item:hover {
  transform: translateY(-5px);
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.brand-icon {
  font-size: 24px;
  color: var(--text-dark);
}

.brand-icon-a {
  font-size: 32px;
  font-weight: 700;
  background: var(--secondary-color);
  color: var(--white);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.brand-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.brand-name-center {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-tagline {
  font-size: 9px;
  color: var(--text-light);
  text-align: center;
}

.brand-name.walker {
  line-height: 1.2;
}

/* ========================================
   Culture Section
   ======================================== */
.culture {
  padding: 80px 0;
  background: var(--light-bg);
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.culture-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.culture-text {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}

.culture-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.culture-img-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.culture-img-column-offset {
  margin-top: 60px;
}

.culture-img-item {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

/* First image in each column - 190px */
.culture-img-item:nth-child(1) {
  height: 190px;
}

/* Second image in each column - 256px */
.culture-img-item:nth-child(2) {
  height: 256px;
}

/* Reverse heights in second column */
.culture-img-column-offset .culture-img-item:nth-child(1) {
  height: 256px;
}

.culture-img-column-offset .culture-img-item:nth-child(2) {
  height: 190px;
}

.culture-img-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.culture-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   Employee Engagement Section
   ======================================== */
.engagement {
  padding: 80px 0;
  background: var(--white);
}

.engagement-gallery {
  /*display: grid;*/
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-top: 50px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.engagement-gallery > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

/* ========================================
   About Us Page Styles
   ======================================== */

/* Who We Are Hero Section */
.who-we-are-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.who-hero-image {
  position: relative;
  height: 500px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/about-banner.png") center/cover;
  display: flex;
  align-items: center;
}

.page-id-10 .who-hero-overlay{
	background: rgba(0, 0, 0, 0.0) !important;
}

.who-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.who-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
}

.who-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.who-hero-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--white);
  opacity: 0.95;
}

/* Our Story Section */
.our-story {
  padding: 80px 0;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-text {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}

.story-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
  min-height: 340px;
}

.story-img-item {
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  align-self: start;
}

.story-img-item:first-child {
  align-self: end;
}

.story-img-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-img-item img {
  width: 100%;
  height: 256px;
  object-fit: cover;
}

/* Our Journey Timeline Section */
.our-journey {
  padding: 80px 0;
  background: var(--light-bg);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #e0e0e0;
  top: 0;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item:nth-child(even) {
  left: 0;
  padding-right: 60px;
  text-align: right;
}

.timeline-item.timeline-right {
  left: 50%;
  padding-left: 60px;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid #d0d0d0;
  top: 30px;
  z-index: 2;
}

.timeline-item:nth-child(even) .timeline-dot {
  right: -8px;
}

.timeline-item.timeline-right .timeline-dot {
  left: -8px;
}

.timeline-dot.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.timeline-content {
  display: inline-block;
}

.timeline-year {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Leadership Team Section */
.leadership {
  padding: 80px 0;
  background: var(--white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.leader-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.leader-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.leader-card:hover .leader-image img {
  transform: scale(1.05);
}

.leader-card h3,
.leader-card p {
  padding: 0 25px;
}

.leader-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 25px;
  margin-bottom: 8px;
}

.leader-title {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.leader-bio {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
}

/* ========================================
   Contact Page Styles
   ======================================== */

/* Contact Hero Section */
.contact-hero {
  background: url("../images/contact-banner.jpg") no-repeat center center/cover;
  padding: 100px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  font-size: 120px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  letter-spacing: 10px;
  z-index: 1;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 0;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.contact-hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.contact-hero-text {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.95;
}

/* Contact Info Cards */
.contact-info {
  padding: 80px 0;
  background: var(--white);
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-card {
  background: var(--light-bg);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  flex: 0 0 auto;
  width: 320px;
}

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

.contact-icon {
  width: 60px;
  height: 60px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 24px;
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 5px 0;
}

/* Get in Touch Section */
.get-in-touch {
  padding: 80px 0;
  background: var(--light-bg);
}

.touch-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-align: center;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-form label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.1);
}

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

.contact-form .btn {
  margin: 20px auto 0;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Our Offices Section */
.our-offices {
  padding: 80px 0;
  background: var(--light-bg);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    gap: 40px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}

.office-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

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

.office-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.office-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.office-card:hover .office-image img {
  transform: scale(1.05);
}

.office-info {
  padding: 30px;
}

.office-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.office-info p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.office-info p.office-address {
  align-items: flex-start;
}

.office-info p.office-address i {
  margin-top: 3px;
}

.office-info i {
  color: var(--primary-color);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.office-info i img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
/* Success Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background-color: var(--white);
  padding: 50px 60px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.4s ease;
  margin: auto;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

/* Apply Modal Content */
.apply-modal-content {
  max-width: 600px;
  width: 90%;
  padding: 40px 50px;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.apply-modal-content .form-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: left;
}

.apply-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.apply-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.apply-form label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.apply-form input,
.apply-form textarea {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  transition: var(--transition);
}

.apply-form input:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.1);
}

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

.apply-form .btn {
  width: auto;
  display: inline-block;
  margin-top: 10px;
}

/* File Upload Area */
.file-upload-area {
  border: 2px dashed #e0e0e0;
  border-radius: 4px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: #fafafa;
}

.file-upload-area:hover {
  border-color: var(--primary-color);
  background: #f0fdf4;
}

.file-upload-area.dragover {
  border-color: var(--primary-color);
  background: #f0fdf4;
}

.file-upload-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.file-upload-content i {
  font-size: 32px;
  color: var(--primary-color);
  margin: 0;
}

.file-upload-content p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.file-name {
  margin-top: 15px;
  padding: 10px 15px;
  background: #e8f5e9;
  border-radius: 4px;
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.file-name i {
  color: var(--primary-color);
  margin-right: 10px;
}

.file-name .remove-file {
  cursor: pointer;
  color: #999;
  transition: var(--transition);
}

.file-name .remove-file:hover {
  color: #e53e3e;
}

.modal-sub-text {
  font-style: italic;
  font-size: 14px;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: #666;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.modal-close:hover {
  background: #e5e7eb;
  color: #333;
}

.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-icon i {
  font-size: 40px;
  color: var(--white);
}

.modal-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.modal-text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================
   Careers Page Styles
   ======================================== */

/* Careers Hero Section */
.careers-hero {
  padding: 100px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.careers-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 0;
}

.careers-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.careers-hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.careers-hero-text {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.95;
}

/* Why Join Section */
.why-join {
  padding: 80px 0;
  background: var(--white);
}

.why-join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.why-join-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-join-text {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.benefit-item i {
  color: var(--primary-color);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.why-join-images {
  display: flex;
  align-items: center;
}

.why-join-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
}

.why-join-img-item {
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  aspect-ratio: 1;
  width: 100%;
  max-width: 292px;
}

.why-join-img-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-join-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Current Openings Section */
.current-openings {
  padding: 80px 0;
  background: var(--light-bg);
}

.department-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 40px 0 50px;
}

.filter-btn {
  padding: 12px 24px;
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* Mobile Filter Dropdown */
.department-filters-mobile {
  display: none;
  margin: 40px 0 50px;
}

.department-select {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.department-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.job-listings {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.job-card {
  background: var(--white);
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.job-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.job-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.view-details {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.view-details:hover {
  color: #008f7f;
}

.view-details i {
  font-size: 12px;
}

.job-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.job-location,
.job-time ,
.job-type{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
}

.job-location i,
.job-time i {
  color: var(--primary-color);
  font-size: 14px;
}

.apply-now-section {
  text-align: center;
  margin-top: 50px;
}

/* Job Details Dropdown */
.job-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.job-details-content {
  color: var(--text-light);
}

.job-description {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-light);
}

.job-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 20px 0 12px;
}

.job-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.job-list li {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  color: var(--text-light);
}

.job-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.job-apply-section {
  margin-top: 30px;
  text-align: center;
}

.job-card.expanded .view-details {
  color: var(--primary-color);
}

.job-card.expanded .view-details i {
  transform: rotate(90deg);
}

.view-details i {
  transition: transform 0.3s ease;
}

/* Employee Testimonials Section */
.employee-testimonials {
  padding: 80px 0;
  background: var(--light-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.testimonial-info p {
  font-size: 13px;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
}

/* Hiring Process Section */
.hiring-process {
  padding: 80px 0;
  background: var(--light-bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.process-step {
  text-align: left;
  position: relative;
  background: var(--white);
  padding: 24px;
  padding-right: 70px;
  border-radius: 8px;
  box-shadow:
    0px 0px 0px 0px #00000000,
    0px 0px 0px 0px #00000000,
    0px 4px 6px -1px #0000001a,
    0px 2px 4px -2px #0000001a;
}

.step-number {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo .logo-title {
  font-size: 20px;
  color: var(--white);
}

.footer-logo .highlight {
  color: var(--primary-color);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links,
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}

.footer-links a,
.footer-contact li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--primary-color);
  margin-top: 3px;
  flex-shrink: 0;
}

.subscribe-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  line-height: 1.6;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.subscribe-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
}

.subscribe-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.subscribe-btn {
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

.subscribe-btn:hover {
  background: #008f7f;
}

.stats-images {
  display: flex;
  gap: 10px;
}

.stats-images img {
  border-radius: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* ========================================
   Mobile Responsive Styles
   ======================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .culture-grid {
    gap: 40px;
  }

  .engagement-gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  /* About Us Page - Tablet */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* Contact Page - Tablet */
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .office-image {
    height: 220px;
  }

  /* Careers Page - Tablet */
  .why-join-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-join-img-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Header */
  .nav {
    position: fixed;
    top: 94px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  /* Hero */
  .hero {
    height: 500px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 30px;
    height: 30px;
  }

  .carousel-control-prev {
    left: 5px;
  }

  .carousel-control-next {
    right: 5px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 16px;
    height: 16px;
  }

  /* Sections */
  .brands,
  .culture,
  .engagement {
    padding: 50px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .brands-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .culture-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .culture-images {
    grid-template-columns: 1fr;
  }

  .culture-img-column-offset {
    margin-top: 0;
  }

  /* First image in each column - smaller for tablet */
  .culture-img-item:nth-child(1) {
    height: 180px;
  }

  /* Second image in each column - larger for tablet */
  .culture-img-item:nth-child(2) {
    height: 220px;
  }

  /* Reverse heights in second column for tablet */
  .culture-img-column-offset .culture-img-item:nth-child(1) {
    height: 220px;
  }

  .culture-img-column-offset .culture-img-item:nth-child(2) {
    height: 180px;
  }

  .engagement-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }

  /* About Us Page - Mobile */
  .who-hero-image {
    height: 400px;
  }

  .who-hero-title {
    font-size: 32px;
  }

  .who-hero-text {
    font-size: 14px;
  }

  .our-story,
  .our-journey,
  .leadership {
    padding: 50px 0;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-images {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .story-img-item {
    align-self: stretch;
  }

  .story-img-item img {
    height: 256px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    text-align: left;
  }

  .timeline-item:nth-child(even) {
    padding-left: 60px;
    text-align: left;
  }

  .timeline-item.timeline-right {
    left: 0;
    padding-left: 60px;
  }

  .timeline-dot {
    left: 12px;
    right: auto;
  }

  .timeline-item:nth-child(even) .timeline-dot {
    left: 12px;
    right: auto;
  }

  .timeline-item.timeline-right .timeline-dot {
    left: 12px;
  }

  .timeline-year {
    font-size: 16px;
  }

  .timeline-text {
    font-size: 12px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .leader-image {
    height: 250px;
  }

  /* Contact Page - Mobile */
  .contact-hero {
    padding: 60px 0;
  }

  .contact-hero::before {
    font-size: 60px;
  }

  .contact-hero-title {
    font-size: 32px;
  }

  .contact-hero-text {
    font-size: 14px;
  }

  .contact-info {
    padding: 50px 0;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .get-in-touch,
  .our-offices {
    padding: 50px 0;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .offices-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .office-image {
    height: 220px;
  }

  .office-info {
    padding: 20px;
  }

  /* Contact Modal - Mobile */
  .modal.show {
    padding: 10px;
  }

  .modal-content {
    padding: 40px 30px;
    width: 95%;
    max-height: calc(100vh - 20px);
  }

  .apply-modal-content {
    padding: 30px 20px;
    width: 95%;
    max-height: calc(100vh - 20px);
  }

  .apply-form .form-row {
    grid-template-columns: 1fr;
  }

  .modal-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .modal-icon i {
    font-size: 30px;
  }

  .modal-title {
    font-size: 28px;
  }

  .modal-text {
    font-size: 14px;
  }

  /* Careers Page - Mobile */
  .careers-hero {
    padding: 60px 0;
    min-height: 300px;
  }

  .careers-hero-title {
    font-size: 32px;
  }

  .careers-hero-text {
    font-size: 14px;
  }

  .why-join,
  .current-openings,
  .employee-testimonials,
  .hiring-process {
    padding: 50px 0;
  }

  .why-join-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-join-img-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .department-filters-desktop {
    display: none;
  }

  .department-filters-mobile {
    display: block;
  }

  .department-filters {
    gap: 10px;
  }

  .filter-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .job-card {
    padding: 20px;
  }

  .job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .job-title {
    font-size: 16px;
  }

  .job-meta {
    flex-direction: column;
    gap: 10px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .process-step h3 {
    font-size: 16px;
  }

  .process-step p {
    font-size: 13px;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
	body .m-full-img .culture-img-item{
		height: 100% !important;
	}
   .hero-content{
	padding: 0 34px !important;
	}
  .logo-title {
    font-size: 16px;
  }

  .logo-subtitle {
    font-size: 8px;
  }

  .hero {
    height: 400px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-description {
    font-size: 14px;
  }

  /* First image in each column - smaller for mobile */
  .culture-img-item:nth-child(1) {
    height: 150px;
  }

  /* Second image in each column - larger for mobile */
  .culture-img-item:nth-child(2) {
    height: 180px;
  }

  /* Reverse heights in second column for mobile */
  .culture-img-column-offset .culture-img-item:nth-child(1) {
    height: 180px;
  }

  .culture-img-column-offset .culture-img-item:nth-child(2) {
    height: 150px;
  }

  .engagement-gallery {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeIn 1s ease-out;
}
.header .logo img{
	height: 75px !important;
}

#engagementCarousel .carousel-item::before{
	background: rgb(255 255 255 / 0%) !important;
}
button.carousel-control-prev , .carousel-control-next{
    border-color: #fff;
	display: flex;
    padding: 0;
}

@media screen (max-width: 600px){
	.admin-bar .header{
		top: 0px !important;
	}
}

.gform_title{
	display: none;
}
#gform_2 .ginput_counter{
	display: none !important;
}

body #gform_2  .btn  , 
body #gform_4  .btn {
    margin: 20px auto 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #047857;
    color: #fff;
    border: none;
    line-height: 23px;
    font-size: 16px;
    padding: 14px 35px;
}
body #gform_2 .btn-primary:hover ,
body #gform_4 .btn-primary:hover{
    background: #008f7f !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 150, 0.3);
}
#gform_fields_4{
	    row-gap: 10px !important;
}
.hidden{
	display: none !important;
}
.privacy-policy h4 ,
.page-id-94 h4{
	margin-top: 2rem !important;
}

#field_2_11 label ,
#field_4_15 label{
	display: none !important;
}
#input_4_6{
	    width: 100% !important;
}
.eyebrow-text{
	text-align: center;
	margin-bottom: 40px;
}

.walkerzanger img{
	 filter: brightness(0);
	max-height: 80px;
}