
/**
 * Career Icons CSS Fix
 * This stylesheet fixes the icon styling in the career page
 */
 @media (max-width: 767px) {
  .bannerSection {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px; /* or set the height you want */
    text-align: center;
  }

  .bannerCaption {
    width: 100%;
  }

  .bannerCaption h1 {
   top: -150%;
    font-size: 24px; /* optional for better readability */
    text-align: center;
    align-items: center;
    justify-items: center;
  }
}


/* Fix for toggle icons */
.interview-process {
    background: #f8f9fc;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #7e00ff;
    display: block;
    margin: 10px auto 0;
  }
  .interview-process h2{
    color:black;
  }
  
  .section-intro {
    text-align: center;
    color: #666;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    object-fit: contain;
  }
  
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  .step-box {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
  }
  .step-box h4{
    color: black;
  }
  .step-box:hover {
    transform: translateY(-5px);
  }
  
  .step-box img {
    width: 50px;
    margin-bottom: 15px;
  }
  
  .step-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .step-box p {
    color: #555;
    font-size: 0.95rem;
  }
  
.elementor-toggle-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.elementor-tab-title {
    padding: 15px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.elementor-tab-title:hover {
    background-color: #f0f0f0;
}
.elementor-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
.elementor-tab-content {
    padding: 15px;
    background-color: #fff;
    border-top: 1px solid #ddd;
}

.elementor-toggle-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.elementor-toggle-icon-closed {
    display: block;
}

.elementor-toggle-icon-opened {
    display: none;
}

.elementor-tab-title[aria-expanded="true"] .elementor-toggle-icon-closed {
    display: none;
}

.elementor-tab-title[aria-expanded="true"] .elementor-toggle-icon-opened {
    display: block;
}

/* Fix for menu icons */
.action--menu,
.action--close {
    transition: opacity 0.3s ease;
}

.action--close {
    opacity: 0;
}

.menu--open + .action--menu {
    opacity: 0;
}

.menu--open + .action--close {
    opacity: 1;
}

/* Fix for SVG icons */
svg.icon {
    width: 1.5em;
    height: 1.5em;
    display: block;
    margin: 0 auto;
    fill: currentColor;
    transition: transform 0.3s ease;
}

svg.icon:hover {
    transform: scale(1.1);
}

/* Fix for icon alignment */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fix for icon colors */
.icon-primary {
    color: #007bff;
}

.icon-secondary {
    color: #6c757d;
}

.icon-success {
    color: #28a745;
}

.icon-danger {
    color: #dc3545;
}

.icon-warning {
    color: #ffc107;
}

.icon-info {
    color: #17a2b8;
}

/* Fix for icon sizes */
.icon-sm {
    width: 1em;
    height: 1em;
}

.icon-lg {
    width: 2em;
    height: 2em;
}

.icon-xl {
    width: 3em;
    height: 3em;
========
/**
 * Career Icons CSS Fix
 * This stylesheet fixes the icon styling in the career page
 */

/* Fix for toggle icons */
.interview-process {
    background: #f8f9fc;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #7e00ff;
    display: block;
    margin: 10px auto 0;
  }
  .interview-process h2{
    color:black;
  }
  
  .section-intro {
    text-align: center;
    color: #666;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    object-fit: contain;
  }
  
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  .step-box {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
  }
  .step-box h4{
    color: black;
  }
  .step-box:hover {
    transform: translateY(-5px);
  }
  
  .step-box img {
    width: 50px;
    margin-bottom: 15px;
  }
  
  .step-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .step-box p {
    color: #555;
    font-size: 0.95rem;
  }
  
.elementor-toggle-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.elementor-tab-title {
    padding: 15px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.elementor-tab-title:hover {
    background-color: #f0f0f0;
}
.elementor-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
.elementor-tab-content {
    padding: 15px;
    background-color: #fff;
    border-top: 1px solid #ddd;
}

.elementor-toggle-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.elementor-toggle-icon-closed {
    display: block;
}

.elementor-toggle-icon-opened {
    display: none;
}

.elementor-tab-title[aria-expanded="true"] .elementor-toggle-icon-closed {
    display: none;
}

.elementor-tab-title[aria-expanded="true"] .elementor-toggle-icon-opened {
    display: block;
}

/* Fix for menu icons */
.action--menu,
.action--close {
    transition: opacity 0.3s ease;
}

.action--close {
    opacity: 0;
}

.menu--open + .action--menu {
    opacity: 0;
}

.menu--open + .action--close {
    opacity: 1;
}

/* Fix for SVG icons */
svg.icon {
    width: 1.5em;
    height: 1.5em;
    display: block;
    margin: 0 auto;
    fill: currentColor;
    transition: transform 0.3s ease;
}

svg.icon:hover {
    transform: scale(1.1);
}

/* Fix for icon alignment */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fix for icon colors */
.icon-primary {
    color: #007bff;
}

.icon-secondary {
    color: #6c757d;
}

.icon-success {
    color: #28a745;
}

.icon-danger {
    color: #dc3545;
}

.icon-warning {
    color: #ffc107;
}

.icon-info {
    color: #17a2b8;
}

/* Fix for icon sizes */
.icon-sm {
    width: 1em;
    height: 1em;
}

.icon-lg {
    width: 2em;
    height: 2em;
}

.icon-xl {
    width: 3em;
    height: 3em;
} 