/*Importing Goggle Fonts */

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family:'Lato', sans-serif;
    

}
:root{

    
     /*Colors */
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
     --light-yellow:#F79C00;
    --light-green:#00784a;
   --light-blue-two: #004586;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
   --light-blue: #100d5c;
   --black:#212144;
   --min-white:#f5f5f5;
   --light-red:#ec020c;
     --red-two:#e70034;
       --light-black:#252525;
         --bg-color:#0A122B;
    --icon-bg:#2F2D4C;
    --icon-color:#69727D;
    --light-black:#252525;
    --bg-color:#0A122B;
    --black-two:#1C244B;



   /* Font-Family */
    --font-heading: 'Lato', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Font sizes in px */
    --font-size-t: 12px;   /* tiny text, captions, meta info */
    --font-size-s: 14px;   /* small text, nav links */
    --font-size-n: 16px;   /* normal body text */
    --font-size-m: 18px;   /* medium text */
    --font-size-1: 24px;   /* h3 or small section heading */
    --font-size-2: 28px;   /* h2 */
    --font-size-3: 32px;   /* h1 */
    --font-size-x1: 36px;  /* large h1 / hero */
    --font-size-xx1: 48px; /* extra large headings */
   /* Font weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 900;


    /*Border radius*/
    --border-radius-s:8px;
    --border-radius-m:30px;
    --boder-radius-circle:50%;
    /*site max width */
    --site-max-width:1300px

}

/*Career */
    .career{
        padding: 120px;
    }
    .career .section-content{
    padding: 0;
    max-width: none;   
        
}
.career-details {
  display: grid;
  grid-template-columns: 1.1fr 1fr; 
  align-items: center;
  min-height: 500px;
}
.career-text {
  padding: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
 
}

.career-divider {
  width: 100%;
  height: 1px;
  background-color: var(--light-blue);
  border: none;
}
.career-title {
  font-size: var(--font-size-x1);
  color: var(--light-blue);
  font-family: var(--font-heading);
  text-align: center;
}

.career-subtext {
text-align: justify;
  line-height: 1.6;
  font-size: var(--font-size-2);
  font-family: var(--font-body);
}

.career-image-wrapper {
  width: 100%;
  height: 100%;
}
.career-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.career-button {
  display: flex;
  justify-content: center;
}

.career-apply {
     display: inline-block;
     padding: 12px 25px; 
     background-color: 
     var(--light-blue); 
     color: #fff; 
     text-decoration: none;
      border-radius: 4px; 
      font-size: var(--font-size-m);
       font-family: var(--font-body);
        transition: 0.3s ease;
}
    
/*Career List */
.career-goal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 0;
}

.career-goal-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 15px;
    text-align: center;
}

.career-goal-card i {
    font-size: var(--font-size-xx1);
    color: var(--light-blue);
}

.career-info {
    font-family: var(--font-heading);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-bold);
    max-width: 70%;
   
}

    
    /* Tablets and small laptops (1024px and down) */
@media screen and (max-width: 1024px) {
     .career-hero-section{
        min-height: 70vh;
    }
 .career-details{
    display: flex;
    flex-direction: column;
 }
 .career-goal-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    
 }
}

    /* Tablets and small laptops (900px and down) */
@media screen and (max-width: 900px) {
     .career-hero-section{
        min-height: 70vh;
    }
    .career-hero-section .career-text{
    font-size: var(--font-size-1);
    }
.career-goal-grid{
    display: flex;
    flex-direction: column;
}
    .our-core-value-heading{
        margin-bottom: 2rem;
        
    }    
    .career{
        padding: 60px 0;
    }
}

    /* Mobile landscape and small tablets (640px and down) */
@media screen and (max-width: 640px) {
  .career-hero-section{
        min-height: 50vh;
    }
     .why-work-text{
        width: 70%;
     }
     .our-core-card{
    padding: 10px;
 }
 .our-core-grid{
    display: flex;
   flex-wrap: wrap-reverse;
 }
 .career-hero-section .career-heading{
font-size: var(--font-size-1);
 }
  .career-hero-section .career-text{
    max-width: 90%;
  }
}