/* Global Styles */
:root {
   --primary-color: #c4944e;
   --secondary-color: #84ac8c;
   --accent-color: #3498db;
   --text-color: #333;
   --light-gray: #f5f5f5;
   --dark-gray: #777;
   --white: #ffffff;
   --off-white: #f0f0f0;
   --black: #000000d7;
 }
 
 /* Page Styles */
 .careers-page {
   width: 100%;
   height: 100%;
   position: relative;
   background-color: var(--white) !important;
 }
 
 @media (max-width: 768px) {
   .careers-page .doted-line {
     margin-top: 0px !important;
   }
 }
 
 .careers-page .bg-white {
   background-color: var(--white) !important;
 }
 
 /* Why Work With Us Section */
 .why-work-with-us {
   width: 100%;
   height: 100%;
   padding: 3rem 0;
   background-color: var(--white) !important;
 }
 
 .why-work-with-us .container {
   width: 100%;
   height: 100%;
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
 }
 
 .why-work-with-us .content-grid {
   width: 100%;
   height: 100%;
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: stretch;
   gap: 2rem;
 }
 
 .why-work-with-us .image-container2 {
   width: 50%;
   height: auto;
   position: relative;
 }
 
 .why-work-with-us .image-container2 img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 10px;
   overflow: hidden;
 }
 
 .why-work-with-us .content-text {
   width: 50%;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: start;
   padding-top: 20px;
   padding-bottom: 1rem;
 }
 
 .subtitle {
   color: var(--secondary-color);
   font-weight: 500;
   display: block;
   margin-bottom: 0rem !important;
   padding-bottom: 0rem !important;
   padding-top: 0rem !important;
 }
 
 .content-text h2 {
   font-size: 36px;
   font-weight: 700;
   color: var(--primary-color);
   margin-bottom: 0rem;
   line-height: 1.5 !important;
 }
 
 .content-text p {
   font-size: 1.05rem !important;
 }
 
 .features-list {
   list-style: none;
   margin: 20px 0;
 }
 
 .features-list li {
   margin-bottom: 5px;
   padding-left: 30px;
   position: relative;
   font-size: 1.1rem;
 }
 
 .features-list li:before {
   content: "✓";
   color: var(--secondary-color);
   position: absolute;
   left: 0;
 }
 
 @media (max-width: 1024px) {
   .why-work-with-us {
     padding: 2rem 0;
   }
 
   .why-work-with-us .content-grid {
     flex-direction: column;
     gap: 3rem;
   }
 
   .why-work-with-us .image-container2 {
     width: 100%;
   }
 
   .why-work-with-us .content-text {
     width: 100%;
     padding-top: 0;
   }
 
   .content-text h2 {
     font-size: 2.5rem;
   }
 }
 
 @media (max-width: 768px) {
   .why-work-with-us {
     padding: 2rem 0 0rem 0;
   }
 
   .why-work-with-us .content-grid {
     gap: 2rem;
     flex-direction: column-reverse;
   }
 
   .content-text h2 {
     font-size: 2rem;
     line-height: 1.2;
     margin-bottom: 0.5rem;
   }
 
   .content-text p {
     font-size: 0.95rem;
   }
 
   .subtitle {
     font-size: 1.2rem;
     line-height: 1.2;
     margin-bottom: 0.5rem;
   }
 }
 
 /* Open Positions Section */
 .open-positions {
   padding: 4rem 0;
   background-color: #fcfcfc;
 }
 
 .open-positions .container {
   display: flex;
   flex-direction: column;
   justify-content: start;
   align-items: start;
 }
 
 .positions-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 30px;
   margin-top: 2rem;
   width: 100%;
 }
 
 .position-card {
   background-color: var(--light-gray);
   padding: 30px;
   border-radius: 10px;
   transition: transform 0.3s;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }
 
 .position-card:hover {
   transform: translateY(-5px);
 }
 
 .position-header {
   display: flex;
   justify-content: space-between;
   align-items: start;
   margin-bottom: 15px;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .position-header h3 {
   font-size: 24px;
   color: var(--secondary-color);
   font-weight: 600;
   margin: 0;
   flex: 1;
 }
 
 .position-type {
   background-color: var(--primary-color);
   color: var(--white);
   padding: 5px 15px;
   border-radius: 20px;
   font-size: 0.9rem;
   font-weight: 500;
 }
 
 .position-details {
   display: flex;
   gap: 20px;
   margin-bottom: 15px;
   flex-wrap: wrap;
 }
 
 .position-details span {
   display: flex;
   align-items: center;
   gap: 5px;
   color: var(--dark-gray);
   font-size: 0.95rem;
 }
 
 .position-details i {
   color: var(--primary-color);
 }
 
 .position-card p {
   font-size: 1rem;
   line-height: 1.6;
   margin-bottom: 20px;
   color: var(--text-color);
 }
 
 .apply-btn {
   background-color: var(--secondary-color);
   color: var(--white);
   padding: 12px 25px;
   border: none;
   font-size: 1.1rem;
   font-weight: 500;
   border-radius: 50px;
   text-decoration: none;
   cursor: pointer;
   transition: background-color 0.3s;
 }
 
 .apply-btn:hover {
   background-color: var(--primary-color);
 }
 
 .apply-btn a {
   color: var(--white);
   text-decoration: none;
   font-weight: 500;
   font-size: 1rem;
 }
 
 @media (max-width: 1024px) {
   .positions-grid {
     grid-template-columns: 1fr;
   }
 }
 
 @media (max-width: 768px) {
   .open-positions {
     padding: 2rem 0;
   }
 
   .position-header h3 {
     font-size: 20px;
   }
 }
 
 /* Application Process Section */
 .application-process {
   padding: 4rem 0;
   background-color: var(--light-gray);
 }
 
 .application-process .container {
   display: flex;
   flex-direction: column;
   justify-content: start;
   align-items: start;
 }
 
 .process-steps {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 30px;
   margin-top: 3rem;
   width: 100%;
   position: relative;
 }
 
 .process-step {
   background-color: var(--white);
   padding: 30px;
   border-radius: 10px;
   text-align: center;
   transition: transform 0.3s;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   position: relative;
   display: flex;
   flex-direction: column;
   align-items: center;
 }
 
 .process-step:hover {
   transform: translateY(-10px);
 }
 
 .step-number {
   background-color: var(--primary-color);
   color: var(--white);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 20px;
   font-weight: 700;
   line-height: 1;
 
   display: none !important;
 }
 
 .step-icon {
   width: 80px;
   height: 80px;
   background-color: var(--secondary-color);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 20px 0 20px 0;
 }
 
 .step-icon i {
   font-size: 32px;
   color: var(--white);
 }
 
 .process-step h3 {
   font-size: 20px;
   color: var(--secondary-color);
   font-weight: 600;
   margin-bottom: 15px;
 }
 
 .process-step p {
   font-size: 1rem;
   line-height: 1.6;
   color: var(--text-color);
   margin: 0;
 }
 
 @media (max-width: 1024px) {
   .process-steps {
     grid-template-columns: repeat(2, 1fr);
     gap: 40px;
   }
 
   .process-steps::before {
     display: none;
   }
 }
 
 @media (max-width: 768px) {
   .application-process {
     padding: 2rem 0;
   }
 
   .process-steps {
     grid-template-columns: 1fr;
     gap: 20px;
     margin-top: 2rem;
   }
 
   .process-step {
     padding: 25px 20px;
   }
 
   .step-icon {
     width: 70px;
     height: 70px;
     margin: 15px 0;
   }
 
   .step-icon i {
     font-size: 28px;
   }
 
   .process-step h3 {
     font-size: 18px;
   }
 
   .process-step p {
     font-size: 0.95rem;
   }
 }

 