:root {
  /* Business-specific additional properties */
  --business-card-enhanced: rgba(140, 163, 64, 0.05);
  --business-card-border-enhanced: rgba(140, 163, 64, 0.15);
  --business-glass-enhanced: rgba(255, 255, 255, 0.08);
  --expanded-card-height: 420px;
  --expanded-transition-duration: 360ms;
  --expanded-easing: cubic-bezier(.2,.8,.2,1);
  
  /* Colors */
  --primary-green: #7B8950;
  --primary-yellow: #FCB117;
  --primary-yellow-dark: #E6AA28;
  --white: #FFFFFF;
  --black: #101014;
  --text-muted: rgba(255, 255, 255, 0.6);
}



/* ========================================= */
/* HERO SECTION - BUSINESS PAGE RESPONSIVENESS */
/* ========================================= */

/* Hero Section Container */
.hero-section {
    position: relative !important;
    width: 100% !important;
    min-height: 100vh !important;
    background: #101014 !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2rem 1rem !important;
    z-index: 1 !important;
    margin-top: clamp(80px, 10vw, 120px) !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

/* Background Blur Effects */
.hero-section::before {
    content: '';
    position: absolute;
    width: 26.25rem; /* 420px */
    height: 26.25rem;
    left: 2.5rem;
    top: 2.5rem;
    background: #8CA148;
    border-radius: 50%;
    filter: blur(18.75rem); /* 300px */
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 26.25rem;
    height: 26.25rem;
    right: 2.5rem;
    top: 2.5rem;
    background: #3F56B1;
    border-radius: 50%;
    filter: blur(18.75rem);
    z-index: 1;
}

/* Main Glass Container  */
.hero-content-wrapper {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    max-width: 84rem; /* 1344px */
    min-height: 54.75rem; /* 876px */
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(1.875rem); /* 30px */
    border-radius: 2.5rem; /* 40px */
    z-index: 3;
    overflow: hidden;
    display: block !important;
}

/* Bottom Gradient Overlay  */
.hero-content-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 23.875rem; /* 382px */
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(16, 16, 20, 0) 0%, #101014 100%);
    z-index: 2;
    pointer-events: none;
}

/* Decorative Side Lines */
.hero-content-wrapper::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 15.75rem; /* 252px */
    left: 0;
    top: 1.875rem; /* 30px */
    background: rgba(255, 255, 255, 0.1);
    z-index: 4;
    transform: rotate(90deg);
}

/* Inner Background Container */
.hero-inner-container {
    position: absolute;
    width: calc(100% - 5rem); /* 1269px at 1344px container */
    height: calc(100% - 5rem); /* 796px at 876px container */
    left: 2.5rem; /* 40px */
    top: 2.5rem; /* 40px */
    background: rgba(123, 137, 80, 0.05);
    border-radius: 1.5rem; /* 24px */
    z-index: 1;
}

/* Right Decorative Line */
.hero-right-line {
    position: absolute;
    width: 1px;
    height: 15.75rem; /* 252px */
    right: 0;
    top: 10.8125rem; /* 173px */
    background: rgba(255, 255, 255, 0.1);
    z-index: 4;
    transform: rotate(90deg);
}

/* Main Content Container */
.hero-content {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-end !important;
    gap: 4rem !important; 
    
    position: absolute !important;
    width: min(69.3125rem, calc(100% - 2rem)) !important;
    height: 35.25rem !important; /* 564px */
    left: 2rem !important; 
    top: 50% !important;
    transform: translateY(-50%) !important; 
    
    z-index: 5 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

/* Text Content Section  */
.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem; /* 12px */
    
    width: 35rem; 
    height: 25.625rem; /* 410px */
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Main Title - Installer Solution */
.hero-main-title {
    width: 37.4375rem; /* 599px */
    height: 7.0rem; /* 216px */
    font-family: 'Mulish', sans-serif !important;
    font-weight: 700 !important;
    font-size: clamp(2.5rem, 4.5rem, 4.5rem) !important; /* 72px */
    line-height: 6.75rem !important; /* 108px */
    color: #FFFFFF !important;
    margin: 0 !important;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

/* Content Block Container */
.hero-content-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem; /* 24px */
    
    width: 37.4375rem; /* 599px */
    height: 11.375rem; /* 182px */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* Description Text */
.hero-description {
    width: 36.875rem; /* 590px */
    height: 6.75rem; /* 108px */
    font-family: 'Mulish', sans-serif !important;
    font-weight: 300 !important;
    font-size: clamp(1rem, 1.5rem, 1.5rem) !important; /* 24px */
    line-height: 2.25rem !important; /* 36px */
    color: #F7F7F7 !important;
    margin: 0 !important;
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* CTA Container */
.hero-cta-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem; /* 16px */
    
    width: auto;
    height: 3.125rem; /* 50px */
    flex: none;
    order: 1;
    flex-grow: 0;
}

/* CTA Button  */
.hero-cta-button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.84375rem 1.5rem; /* 13.5px 24px */
    gap: 0.625rem; /* 10px */
    
    width: auto;
    min-width: 15.5rem; /* 248px */
    height: 3.125rem; /* 50px */
    background: #FCB117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem; /* 24px */
    
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    flex: none;
    order: 0;
    flex-grow: 0;
}

.hero-cta-button--secondary {
    background: transparent;
    border: 1px solid var(--primary-yellow);
    color: var(--primary-yellow);
}

.hero-cta-button--secondary:hover {
    background: rgba(252, 177, 23, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0.625rem 1.5625rem rgba(252, 177, 23, 0.2);
}

.hero-cta-button:hover {
    background: #E6AA28;
    transform: translateY(-2px);
    box-shadow: 0 0.625rem 1.5625rem rgba(252, 177, 23, 0.3);
}

/* CTA Text */
.hero-cta-text {
    width: auto;
    height: 1.4375rem; /* 23px */
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    line-height: 1.3; /* 130% */
    letter-spacing: -0.02em;
    color: #FFFFFF;
    white-space: nowrap;
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* CTA Icon - System Icons */
.hero-cta-icon {
    width: 1.5rem; /* 24px */
    height: 1.5rem; /* 24px */
    background: #FFFFFF;
    border-radius: 6.25rem; /* 100px */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.hero-cta-icon i {
    color: #E6AA28;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.hero-cta-button:hover .hero-cta-icon i {
    transform: translateX(-2px); 
}

.hero-visual-content {
    position: relative !important;
    flex: 1 !important;
    order: 1 !important;
    width: auto !important;
    height: auto !important;
    min-width: 470px !important;
    min-height: 564px !important;
    display: block !important;
    max-width: none !important;
    max-height: none !important;
    margin-left: 2rem !important; 
}

/* Image Container 1 */
.hero-image-1 {
    position: absolute !important;
    width: 370px !important;
    height: 334px !important;
    left: 0px !important;
    top: 0px !important;
    background: linear-gradient(0deg, rgba(24, 25, 22, 0.2), rgba(24, 25, 22, 0.2)) !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    z-index: 3 !important;
    box-sizing: border-box !important;
}

/* Image Container 2 */
.hero-image-2 {
    position: absolute !important;
    width: 370px !important;
    height: 334px !important;
    left: 100px !important;
    top: 230px !important;
    background: linear-gradient(0deg, rgba(24, 25, 22, 0.2), rgba(24, 25, 22, 0.2)) !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    z-index: 4 !important;
    box-sizing: border-box !important;
    display: block !important;
    visibility: visible !important;
}

.hero-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
    display: block !important; 
}

.hero-image:hover {
    transform: scale(1.05) !important;
}

/* Grid Background (Desktop Only)  */
.hero-grid-background {
    position: absolute;
    width: 30.625rem; /* 490px */
    height: 30.625rem; /* 490px */
    left: calc(50% - 30.625rem/2 + 38.53125rem); /* calc(50% - 490px/2 + 616.5px) */
    top: calc(50% - 30.625rem/2 - 16.4375rem); /* calc(50% - 490px/2 - 263px) */
    z-index: 0;
    opacity: 0.3;
}

.hero-grid-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
}

/* Additional Blur Orbs */
.hero-blur-orb-1 {
    position: absolute;
    width: 11.375rem; /* 182px */
    height: 11.375rem; /* 182px */
    left: calc(50% - 11.375rem/2 - 13.5rem); /* calc(50% - 182px/2 - 216px) */
    top: 6.9375rem; /* 111px */
    background: #8CA340;
    filter: blur(8.4375rem); /* 135px */
    z-index: 1;
    opacity: 0.6;
}

.hero-blur-orb-2 {
    position: absolute;
    width: 11.375rem; /* 182px */
    height: 11.375rem; /* 182px */
    left: calc(50% - 11.375rem/2 - 69.5625rem); /* calc(50% - 182px/2 - 1113px) */
    top: 37.1875rem; /* 595px */
    background: #8CA340;
    filter: blur(8.4375rem); /* 135px */
    z-index: 1;
    opacity: 0.6;
}

/* ========================================= */
/* HERO RESPONSIVE DESIGN - THREE BREAKPOINTS ONLY */
/* ========================================= */

/* HERO BREAKPOINT 1: Large Tablet (1024px and below) */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        max-width: 90%;
        min-height: 45rem;
    }
    
    .hero-content {
        gap: 3rem;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        width: min(69.3125rem, calc(100% - 3rem)) !important;
    }
    .hero-main-title,
    .hero-description{
        /* font-size: 42px !important; */
        line-height: 1.2 !important;
        padding-left:60px ;
    }

    .hero-cta-button{
      margin-left:60px ;
    }
    .hero-cta-button--secondary{
      margin-left:0px ;
    }
    .hero-text-content {
        max-width: 32rem;
        text-align: left;
    }
    
    .hero-visual-content {
        min-width: 400px !important;
        min-height: 500px !important;
    }
    
    .hero-image-1 {
        width: 320px !important;
        height: 290px !important;
    }
    
    .hero-image-2 {
        width: 320px !important;
        height: 290px !important;
        left: 80px !important;
        top: 210px !important;
    }
}

/* HERO BREAKPOINT 2: Tablet (768px and below) */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh !important;
        padding: 1.5rem 1rem !important;
        padding-bottom: 1rem !important;
    }

    .hero-cta-button{
      margin-left:0px ;
    }
    
    .hero-section::before {
        display: block !important;
        width: 15rem !important;
        height: 15rem !important;
        left: 1rem !important;
        top: 1rem !important;
        filter: blur(10rem) !important;
    }
    
    .hero-section::after {
        display: block !important;
        width: 15rem !important;
        height: 15rem !important;
        right: 1rem !important;
        top: 1rem !important;
        filter: blur(10rem) !important;
    }
    
    .hero-content-wrapper {
        max-width: 95%;
        height: auto !important;
        min-height: 400px !important;
        border-radius: 1.5rem;
        padding: 1.5rem 1rem !important;
        background: rgba(255, 255, 255, 0.02) !important;
    }
    
    .hero-content {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2rem !important;
        position: relative !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        text-align: center  !important;
        margin: 0 auto !important;
    }
    
    .hero-text-content {
        order: 1;
        text-align: center;
        max-width: 100%;
        width: 100%;
        height: auto;
        align-items: center !important;
        gap: 1rem !important;
        justify-content: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .hero-main-title {
        font-size: 42px !important;
        line-height: 1.2 !important;
        text-align: center;
        width: 100%;
        height: auto;
        margin-bottom: 0.5rem !important;
         padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    .hero-content-block {
        width: 100% !important;
        height: auto !important;
        align-items: center !important;
        gap: 1rem !important;
         justify-content: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .hero-description {
        font-size: 16px !important;
        line-height: 1.4 !important;
        text-align: center;
        width: 100%;
        height: auto;
        margin-bottom: 1.5rem !important;
        padding-left: 0 !important;
    }
    
    .hero-cta-container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
        width: 100% !important;
        height: auto !important;
        justify-content: center !important;
    }
    
    .hero-cta-button {
        width: 100% !important;
        max-width: 280px !important;
        min-width: auto !important;
        font-size: 16px !important;
        padding: 12px 20px !important;
    }
    
    .hero-visual-content {
        display: flex !important;
        order: 2 !important;
        width: 100% !important;
        max-width: 600px !important;
        height: 250px !important;
        min-width: auto !important;
        min-height: auto !important;
        margin: 0 auto !important;
        position: relative !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1.5rem !important;
    }
    
    .hero-image-1 {
        position: relative !important;
        width: 45% !important;
        height: 100% !important;
        left: 0 !important;
        top: 0 !important;
        display: block !important;
        visibility: visible !important;
        flex-shrink: 0 !important;
    }
    
    .hero-image-2 {
        position: relative !important;
        width: 45% !important;
        height: 100% !important;
        left: 0 !important;
        top: 0 !important;
        display: block !important;
        visibility: visible !important;
        flex-shrink: 0 !important;
    }
    
    /* Hide decorative elements for mobile */
    .hero-inner-container,
    .hero-right-line,
    .hero-grid-background,
    .hero-blur-orb-1,
    .hero-blur-orb-2 {
        display: none !important;
    }
}

/* HERO BREAKPOINT 3: Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-section {
        margin-top: 80px !important;
        padding: 1rem 0.75rem !important;
        min-height: 70vh !important;
    }
    
    .hero-content-wrapper {
        padding: 1rem !important;
        border-radius: 1rem;
        min-height: 350px !important;
    }

    .hero-text-content{
        gap: 0.5rem !important;
        margin: 0 auto !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .hero-content {
        gap: 1.5rem !important;
        padding: 0.5rem !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .hero-main-title {
        font-size: 32px !important;
        line-height: 1.1 !important;
    }
    
    .hero-description {
        font-size: 14px !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-cta-button {
        padding: 0.875rem 1.25rem !important;
        height: 2.75rem !important;
        font-size: 14px !important;
    }
    
    .hero-cta-text {
        font-size: 1rem !important;
    }
    
    .hero-visual-content {
        max-width: 320px !important;
        height: 200px !important;
        gap: 0 !important;
    }
    
    .hero-image-1 {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
    }
    
    .hero-image-2 {
        display: none !important;
    }
}

/* ========================================= */
/* Career Section Styles */
/* ========================================= */
    /*  */
    .career-section {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 30px 40px 80px;
      gap: 64px;
      width: 100%;
      max-width: 1284px;
      margin: 120px auto 80px;
      position: relative;
      z-index: 2;
    }

    /* FAQ Container */
    .faq-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 40px;
      gap: 10px;
      width: 100%;
      background: #191916;
      border-radius: 20px;
      flex: none;
    }

    /* Filter Row */
    .filter-row {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 0;
      gap: 24px;
      width: 100%;
      flex-wrap: wrap;
    }

    /* Filter Group */
    .filter-group {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 0;
      gap: 22px;
      width: 100%;
      flex-wrap: wrap;
    }

    /* Dropdown Container */
    .dropdown-container {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 0;
      gap: 4px;
      flex: 1;
      min-width: 200px;
       position: relative;
    }


.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #191916;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-top: 8px;
  padding: 8px 0;
  z-index: 1000;
  max-height: 200px;
  overflow-y: scroll;
  display: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dropdown-menu.active {
  display: block;
}

.dropdown-option {
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
}

.dropdown-option:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Make arrow icon more clickable */
.fa-chevron-down {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.dropdown-menu.active ~ .select-item .fa-chevron-down {
  transform: rotate(180deg);
}

/* Filter layout for 768px screens */
@media (min-width: 768px) and (max-width: 1023px) {
  .filter-group {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
  }
  
  .search-button {
    grid-column: span 3 !important;
    justify-self: center !important;
    margin-top: 16px !important;
  }
}

    /* Select Item */
    .select-item {
      box-sizing: border-box;
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 8px 16px;
      gap: 10px;
      width: 100%;
      height: 50px;
      border: 1px solid rgba(90, 90, 90, 0.36);
      border-radius: 24px;
      cursor: pointer;
      transition: all 0.3s ease;
      background: transparent;
    }

    .select-item:hover {
      border-color: rgba(252, 177, 23, 0.5);
    }

    /* Select Content */
    .select-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 0;
      gap: 12px;
      width: 100%;
    }

    .select-text {
      font-family: 'Mulish', sans-serif;
      font-style: normal;
      font-weight: 400;
      font-size: 16px;
      line-height: 16px;
      color: rgba(255, 255, 255, 0.6);
      flex: 1;
    }

    /* Search Button */
    .search-button {
      box-sizing: border-box;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 13.5px 24px;
      gap: 10px;
      width: auto;
      height: 50px;
      background: #FCB117;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .search-button:hover {
      background: #E6AA28;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(252, 177, 23, 0.3);
    }

    .search-text {
      font-family: 'Mulish', sans-serif;
      font-style: normal;
      font-weight: 400;
      font-size: 18px;
      line-height: 130%;
      letter-spacing: -0.02em;
      color: #FFFFFF;
    }

    /* Positions Section */
    .positions-section {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 0;
      gap: 48px;
      width: 100%;
    }

    .section-title {
      width: 100%;
      font-family: 'Mulish', sans-serif;
      font-style: normal;
      font-weight: 500;
      font-size: 24px;
      line-height: 36px;
      letter-spacing: -0.04em;
      color: #FFFFFF;
    }

    /* Roles Container */
    .roles-container {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 0;
      gap: 40px;
      width: 100%;
    }

    /* Role Card */
    .role-card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 66px 40px;
      gap: 10px;
      width: 100%;
      background: #191916;
      border-radius: 20px;
      transition: all 0.3s ease;
    }

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

    .role-content {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: 0;
      gap: 20px;
      width: 100%;
      flex-wrap: wrap;
    }

    .role-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 0;
      gap: 12px;
      flex: 1;
      min-width: 300px;
    }

    .role-header {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 0;
      gap: 24px;
      width: 100%;
      flex-wrap: wrap;
    }

    .role-title {
      font-family: 'Mulish', sans-serif;
      font-style: normal;
      font-weight: 700;
      font-size: 24px;
      line-height: 36px;
      letter-spacing: -0.02em;
      color: #7B8950;
    }

    .role-tag {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 4px 12px;
      gap: 10px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 100px;
    }

    .tag-text {
      font-family: 'Mulish', sans-serif;
      font-style: normal;
      font-weight: 600;
      font-size: 14px;
      line-height: 21px;
      letter-spacing: -0.02em;
      color: #808C4A;
    }

    .role-description {
      font-family: 'Mulish', sans-serif;
      font-style: normal;
      font-weight: 400;
      font-size: 18px;
      line-height: 27px;
      letter-spacing: -0.02em;
      color: rgba(255, 255, 255, 0.6);
      width: 100%;
    }

    .role-details {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 0;
      gap: 24px;
      width: 100%;
      flex-wrap: wrap;
    }

    .detail-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 0;
      gap: 4px;
    }

    .detail-text {
      font-family: 'Mulish', sans-serif;
      font-style: normal;
      font-weight: 400;
      font-size: 10px;
      line-height: 15px;
      letter-spacing: -0.02em;
      color: #FAFAFB;
    }

    .apply-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0;
      gap: 16px;
    }

    .apply-button {
      box-sizing: border-box;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 13.5px 20px;
      gap: 10px;
      width: 138px;
      height: 50px;
      background: #FCB117;
      border: 1px solid #FCB117;
      border-radius: 24px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .apply-button:hover {
      background: #E6AA28;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(252, 177, 23, 0.3);
    }

    .apply-text {
      font-family: 'Mulish', sans-serif;
      font-style: normal;
      font-weight: 400;
      font-size: 14px;
      line-height: 130%;
      letter-spacing: -0.02em;
      color: #FFFFFF;
    }

    /* Font Awesome Icons */
    .fa-icon {
      color: rgba(255, 255, 255, 0.6);
      font-size: 16px;
    }

    .detail-icon {
      color: #FAFAFB;
      font-size: 10px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .career-section {
        gap: 48px;
        padding: 30px 30px 60px;
      }
      
      .role-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
      }
      
      .apply-container {
        width: 100%;
        align-items: flex-start;
      }
      
      .apply-button {
        width: 100%;
        max-width: 200px;
      }
    }

    @media (max-width: 768px) {
      .career-section {
        gap: 32px;
        margin-top: 100px;
        padding: 20px 20px 50px;
      }
      
      .faq-container {
        padding: 30px 20px;
      }
      
      .filter-group {
        gap: 16px;
      }
      
      .dropdown-container {
        min-width: 100%;
      }
      
      .role-card {
        padding: 40px 20px;
      }
      
      .role-header {
        gap: 16px;
      }
      
      .role-details {
        gap: 16px;
      }
      .search-button{
        width: 100%;
      }
    }

    @media (max-width: 480px) {
  .career-section {
    gap: 24px;
    margin-top: 80px;
    padding: 15px 15px 40px;
  }
  
  .faq-container {
    padding: 20px 15px;
  }
  
  .filter-row {
    gap: 16px;
  }
  
  .role-card {
    padding: 30px 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .role-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .role-info {
    min-width: 100%;
    width: 100%;
  }
  
  .role-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .role-title {
    font-size: 18px;
    line-height: 24px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .role-description {
    font-size: 14px;
    line-height: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .role-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .detail-item {
    width: 100%;
  }
  
  .detail-text {
    font-size: 12px;
    line-height: 16px;
  }
  
  .apply-container {
    width: 100%;
    align-items: stretch;
  }
  
  .apply-button {
    width: 100%;
    height: 45px;
    padding: 10px 20px;
  }
  
  .apply-text {
    font-size: 14px;
  }
  
  /* Ensure filter elements wrap properly */
  .filter-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .dropdown-container {
    width: 100%;
  }
  
  .select-item {
    width: 100%;
  }
  
  .search-button {
    width: 100%;
    height: 45px;
    padding: 10px 20px;
  }
  
  /* Fix section titles */
  .section-title {
    font-size: 20px;
    line-height: 26px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  /* Ensure all text containers have proper wrapping */
  .select-text, .search-text, .tag-text, .detail-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

    /* ========================================= */
/* WHY WORK WITH US Section Styles */
/* ========================================= */


/* Why Work With Us Section */
.why-work-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  gap: 80px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.why-work-section .container {
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Section */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 12px;
  width: 100%;
}

.header-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}

.section-title {
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 40px);
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.02em;
  color: #7B8950;
  margin: 0;
}

.section-subtitle {
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.125rem, 2vw, 24px);
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
  width: 100%;
  margin: 0;
}

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 80px;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

/* Benefit Card */
.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 24px;
  gap: 10px;
  flex: 1;
  min-width: 250px;
  max-width: 290px;
  background: rgba(123, 137, 80, 0.25);
  border-radius: 24px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(123, 137, 80, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  gap: 16px;
  width: 100%;
  height: 100%;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.benefit-icon i {
  font-size: 24px;
  color: #FFFFFF;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
  transform: scale(1.1);
}

.benefit-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  gap: 12px;
  width: 100%;
}

.benefit-title {
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .why-work-section {
    gap: 60px;
  }
  
  .benefits-grid {
    gap: 20px;
  }
  
  .benefit-card {
    min-width: calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
  
  .header-content {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .why-work-section {
    gap: 40px;
    padding: 0 15px;
  }
  
  .why-work-section .container {
    padding: 0 15px;
  }
  
  .benefits-grid {
    gap: 16px;
  }
  
  .benefit-card {
    min-width: 100%;
    max-width: 100%;
    padding: 25px 20px;
  }
  
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  
  .section-subtitle {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }
}

@media (max-width: 480px) {
  .why-work-section {
    gap: 30px;
    padding: 0 10px;
  }
  
  .why-work-section .container {
    padding: 0 10px;
  }
  
  .benefit-card {
    padding: 20px 16px;
  }
  
  .benefit-content {
    gap: 12px;
  }
  
  .benefit-icon {
    width: 20px;
    height: 20px;
  }
  
  .benefit-icon i {
    font-size: 20px;
  }
  
  .benefit-title {
    font-size: 18px;
    line-height: 27px;
  }
}


/********************************************/
/* APPLICATION PROCESS SECTION - RESPONSIVE */
/********************************************/

/* Application Process Section */
.application-process-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(40px, 8vw, 80px) clamp(20px, 4vw, 40px);
  gap: clamp(40px, 8vw, 80px);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  min-height: auto;
}

.application-process-section .container {
  width: 100%;
  max-width: 1281px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* Header Section */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(20px, 5vw, 40px) 0;
  gap: clamp(15px, 3vw, 20px);
  width: 100%;
  text-align: center;
}

.section-title {
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #7B8950;
  margin: 0;
  padding: clamp(15px, 3vw, 20px) 0;
}

.section-subtitle {
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.125rem, 2.5vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  padding: clamp(8px, 2vw, 10px) 0;
  max-width: min(800px, 90vw);
}

/* Process Content - Mobile First Approach */
.process-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: clamp(30px, 6vw, 60px) 0;
  gap: clamp(40px, 6vw, 60px);
  width: 100%;
  position: relative;
}

/* Steps Navigation - Mobile Vertical Layout */
.steps-navigation {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: clamp(20px, 4vw, 40px) 0;
  gap: clamp(30px, 5vw, 40px);
  width: 100%;
  order: 2;
  min-height: auto;
  height: auto;
}

.steps-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(15px, 3vw, 20px) 0;
  gap: 0;
  position: relative;
  width: 100%;
  min-height: auto;
  height: auto;
}

.step-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(15px, 3vw, 20px);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: clamp(8px, 2vw, 12px) 0;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.step-number {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(8px, 2vw, 10px) clamp(10px, 2vw, 15px);
  gap: clamp(6px, 1vw, 9px);
  width: clamp(60px, 12vw, 80px);
  height: clamp(60px, 12vw, 80px);
  border: 3px solid #737373;
  border-radius: 100px;
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(18px, 3.5vw, 24px);
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
  z-index: 2;
  flex-shrink: 0;
}

.step-line {
  width: 4px;
  height: clamp(80px, 15vw, 120px);
  background: rgba(255, 255, 255, 0.2);
  margin: clamp(8px, 1.5vw, 10px) 0;
  flex: none;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  display: none;
}

.step-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #7B8950;
  transition: height 0.8s ease;
  border-radius: 2px;
}

.step-item.active .step-progress {
  height: 100%;
}

.step-item:last-child .step-line {
  display: none;
}

/* Step Titles - Mobile Horizontal Scroll */
.step-titles {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: clamp(15px, 3vw, 20px) 0;
  gap: clamp(16px, 2vw, 22px);
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  min-height: auto;
  height: auto;
}

.step-titles::-webkit-scrollbar {
  display: none;
}

.step-title-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 15px;
  gap: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  opacity: 0.5;
  min-height: auto;
  height: auto;
  min-width: min(200px, vw);
  border-radius: 16px;
  border: 2px solid transparent;
  flex-shrink: 0;
  overflow: visible;
}

.step-title-item.active {
  opacity: 1;
  background: rgba(123, 137, 80, 0.1);
  border-color: rgba(123, 137, 80, 0.3);
  /* transform: translateY(-5px); */
}

.step-title-item.active .step-name {
  color: #7B8950;
}

.step-tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: clamp(6px, 1.5vw, 8px) clamp(12px, 2.5vw, 16px);
  gap: clamp(8px, 1.5vw, 10px);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #E6E8DB;
  white-space: nowrap;
}

.step-name {
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, 3.5vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  transition: all 0.4s ease;
  padding: 5px 0;
  white-space: normal;
  min-height: auto;
  height: auto;
  display: flex;
  align-items: center;
}

/* Step Content - Mobile Optimized */
.step-content {
  width: 100%;
  padding: clamp(15px, 3vw, 20px) 0;
  order: 1;
  height: auto;
  min-height: auto;
}

.content-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  gap: 0;
  width: 100%;
  height: auto;
  min-height: 400px;
  background: rgba(123, 137, 80, 0.09);
  border-radius: clamp(20px, 4vw, 28px);
  position: relative;
  overflow: visible;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.content-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 400px;
}

.step-content-item {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 400px;
  display: none;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  gap: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step-content-item.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

/* Content Image Container */
.content-image-container {
  width: 100%;
  height: clamp(200px, 40vw, 320px);
  position: relative;
  overflow: hidden;
}

.content-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.step-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.step-content-item.active .step-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
}

.content-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(25px, 5vw, 50px) clamp(20px, 4vw, 60px);
  gap: clamp(20px, 4vw, 35px);
  width: 100%;
  flex: 1;
  position: relative;
}

.content-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(8px, 1.5vw, 10px);
  gap: clamp(6px, 1.5vw, 8px);
  width: 100%;
}

.step-indicator {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: clamp(4px, 1vw, 6px) clamp(8px, 1.5vw, 12px);
  gap: clamp(4px, 1vw, 6px);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
}

.step-badge {
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: clamp(9px, 1.8vw, 10px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #808C4A;
}

.content-title {
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: clamp(24px, 5vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0;
}

.content-description {
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: min(500px, 100%);
}

/* Active States */
.step-item.completed .step-number,
.step-item.active .step-number {
  border-color: #7B8950;
  background: #7B8950;
  color: #FFFFFF;
}

.step-item.active .step-number {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(123, 137, 80, 0.5);
}

.step-title-item.active {
  opacity: 1;
  background: rgba(123, 137, 80, 0.15);
  border-color: rgba(123, 137, 80, 0.4);
  /* transform: translateY(-5px); */
}

.content-icon {
  position: absolute;
  bottom: clamp(20px, 4vw, 30px);
  right: clamp(20px, 4vw, 30px);
  width: clamp(50px, 10vw, 80px);
  height: clamp(50px, 10vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 137, 80, 0.25);
  border-radius: 50%;
  border: 2px solid rgba(123, 137, 80, 0.5);
  transition: all 0.4s ease;
}

.content-icon i {
  font-size: clamp(18px, 3.5vw, 32px);
  color: #7B8950;
  transition: transform 0.4s ease;
}

.step-content-item.active .content-icon {
  transform: scale(1.1);
  background: rgba(123, 137, 80, 0.35);
}

.step-content-item.active .content-icon i {
  transform: rotate(10deg);
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(123, 137, 80, 0.2);
  z-index: 1000;
}

.scroll-progress-bar {
  height: 100%;
  background: #7B8950;
  width: 0%;
  transition: width 0.1s ease;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .application-process-section{
    display: none;
  }
}


/* Tablet Layout */
@media (min-width: 1024px) and (max-width: 1439px) {
  .process-content {
    flex-direction: column;
    gap: clamp(40px, 6vw, 80px);
  }
  
  .steps-navigation {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(40px, 6vw, 60px);
  }
  
  .steps-container {
    flex-direction: column;
    align-items: center;
    max-width: 80px;
  }
  
  .step-item {
    flex-direction: column;
    max-width: none;
  }
  
  .step-line {
    display: block;
    width: 4px;
    height: clamp(80px, 15vw, 120px);
  }
  
  .step-titles {
    flex-direction: column;
    gap: clamp(60px, 10vw, 100px);
    overflow-x: visible;
    overflow-y: auto;
    max-height: none;
  }
  
  .step-title-item {
    min-width: auto;
    min-height: 120px;
    height: auto;
  }
  
}

/* Desktop Layout */
@media (min-width: 1024px) {
  .process-content {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(60px, 8vw, 100px);
  }
  
  .steps-navigation {
    flex: 1;
    min-width: 350px;
    max-width: 450px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    order: 1;
  }
  
  .step-content {
    flex: 2;
    min-width: 400px;
    position: sticky;
    top: 120px;
    height: auto;
    min-height: 500px;
    order: 2;
  }
  
  .step-titles {
    max-height: none;
  }
  
  .content-card {
    min-height: 500px;
  }
  
  .content-wrapper {
    min-height: 500px;
  }
  
  .step-content-item {
    min-height: 500px;
  }
}

/* Large Desktop Enhancements */
@media (min-width: 1440px) {
  .application-process-section .container {
    max-width: 1281px;
  }
  
  .process-content {
    gap: 100px;
  }
  
  .steps-navigation {
    gap: 80px;
  }
  
  .step-titles {
    gap: 100px;
  }
}



/* Interview Process Mobile Styles */
.interview-process-mobile {
  padding: 3rem 1rem;
  background: transparent;
  position: relative;
  z-index: 10;
}

.interview-process-mobile .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.interview-process-mobile .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.interview-process-mobile .section-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.interview-process-mobile .section-subtitle {
  font-family: 'Mulish', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* Process Cards */
.process-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.card-number {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #E6AA28, #FCB117);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0F0F0D;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(230, 170, 40, 0.3);
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card-image {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(15, 15, 13, 0.8));
}

.card-details {
  flex: 1;
}

.card-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-description {
  font-family: 'Mulish', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Media Query for Larger Mobile Screens */
@media (min-width: 481px) and (max-width: 768px) {
  .interview-process-mobile {
    padding: 4rem 2rem;
  }
  
  .interview-process-mobile .section-title {
    font-size: 2.25rem;
  }
  
  .process-card {
    padding: 2rem;
  }
  
  .card-content {
    gap: 1.5rem;
  }
  
  .card-image {
    height: 220px;
  }
  
  .card-title {
    font-size: 1.375rem;
  }
  
  .card-description {
    font-size: 0.95rem;
  }
}

/* Hover Effects for Devices that Support Hover */
@media (hover: hover) {
  .process-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    transition: all 0.3s ease;
  }
  
  .process-card:hover .card-image img {
    transform: scale(1.05);
  }
}

/* Ensure this section only shows on 768px and below */
@media (min-width: 769px) {
  .interview-process-mobile {
    display: none;
  }
}