* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}
html {
    scroll-behavior: smooth;
  }
body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f8fa;
}

.bg-1{
    background: linear-gradient(135deg, rgb(211 224 255), rgb(242 212 248));
}
.bg-2{
    background: linear-gradient(135deg, rgb(120 248 198), #03A9F4);
}
.bg-3{
    background: linear-gradient(135deg, #f8350b, rgb(255 255 255));
}
.bg-4{
    background: linear-gradient(135deg, rgb(133 195 244), rgb(253 253 253));
}
.bg-1 .icon-box{
    background: linear-gradient(135deg, rgb(78 162 245 / 95%), rgb(189 38 157));
}
.bg-2 .icon-box{
    background: linear-gradient(135deg, rgb(0 230 161), rgb(9 172 241));
}
.bg-3 .icon-box{
    background: linear-gradient(135deg, #F44336, #FF9800);
}
.bg-4 .icon-box{
    background:linear-gradient(135deg, rgb(9 172 241), rgb(198 226 249))
}

.bg-1 .benefit-card{
    background: linear-gradient(135deg, rgb(243 220 255), rgb(255 252 254));
}
.bg-2 .benefit-card{
    background: linear-gradient(135deg, rgb(111 242 202), rgb(255 255 255));
}
.bg-3 .benefit-card{
    background: linear-gradient(135deg, #ff7552, rgb(255 255 255));
}
.bg-4 .benefit-card{
    background: linear-gradient(135deg, rgb(120 188 248), rgb(244 249 252));
}

.no-bg{
    background: none !important;
}
.text-center {
    text-align: center !important;
}
.section{
    margin-top: 3rem;
}
.mt-0{
    margin-top: 0 !important;
}
.mb-0{
    margin-bottom: 0 !important;
}
.pt-0{
    padding-top: 0 !important;
}
.pb-0{
    padding-bottom: 0 !important;
}
.p-20{
    padding: 20px;
}
.p-15{
    padding: 15px;   
}
.p-10{
    padding: 10px;
}
.p-5{
    padding: 5px;
}
.mt-1{
    margin-top: 1rem;
}
.mb-1{
    margin-bottom: 1rem;
}
.mt-2{
    margin-top: 2rem;
}
.mb-2{
    margin-bottom: 2rem;
}
.mt-3{
    margin-top: 3rem;
}
.mb-3{
    margin-bottom: 3rem;
}
.mt-4{
    margin-top: 4rem;
}
.mb-4{
    margin-bottom: 4rem;
}

.bdr-radius20{
    border-radius: 20px;
}

.bdr-radius15{
    border-radius: 15px;
}
.bdr-radius10{
    border-radius: 10px;
}
.bdr-radius5{
    border-radius: 5px;
}


h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
p {
    font-size: 1.1rem;
}

header {
    background-color: #ffffffc7;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    width: 100%;
    position: fixed;
    top:0px;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
}

.menu{
    display: flex;
    list-style: none;
}

.nav-item{
    margin-left: 1.5rem;
    position: relative;
}

.nav-item .nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-item  a{
    transition: color 0.3s;
}
  
  .activelink .nav-link,
  .activelink a:active,
  .nav-item .nav-link :hover  {
    color: #0086dc; 
  }

  .nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom:-5px;
    width: 0;
    height: 2px;
    background: #0086dc;
    transition: width 0.3s ease-in-out;
}


.nav-item:hover::after,
.activelink::after{
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.5rem;
}

/* Media queries for responsive design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 100;
    }

    .menu.open {
        transform: translateY(0);
    }

    .menu li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
}

.corporate-partnership-banner{
    background:linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(0, 0, 0, 0)),
    url('../img/slider-bg.png') no-repeat;
}
.college-partnership-banner{
    background:  linear-gradient(135deg, rgb(47 81 157 / 38%), rgb(63 81 181 / 70%)),
    url('../img/college-page-banner.avif') no-repeat;
}
.partner-banner{
    background: linear-gradient(135deg, rgb(47 81 157 / 38%), rgb(63 81 181 / 70%)),
    url('../img/partner-banner.avif') no-repeat;
}
.candidate-banner{
    background:linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(0, 0, 0, 0)),
    url(../img/job-bg-04.jpg) no-repeat;
}

.hero-banner {
    height: 600px ;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
}

.hero-banner-wrapper{
    width: 100%;
    max-width: 1200px;
    height: 100%;
    position: relative;
    margin: 0px auto;
    padding-top: 60px;
}
.hero-content {
    position: absolute;
    max-width:580px;
    width: 50%;
    top:150px;
    left: 50px;
    padding: 2rem;
    background: rgb(100 68 160 / 80%);
    /* background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.2);*/
    border-radius: 20px;
    animation: fadeIn 1s ease-out;
}
.corporate-partnership-banner .hero-content{
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
}
.candidate-banner .hero-content{
    background: rgb(4 31 44);
}
.hero-img{
    width: 50%;
    position: absolute;
    right: 0px;
}
img{
max-width: 100%;
height: auto;
}
@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-banner h1 {
    font-size: 3.0rem;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    color: white;
    font-weight: 600;
}

.hero-banner p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* .college-partnership-banner .hero-content,
.partner-banner .hero-content{
    max-width: 100%;
    width: 100%;
    position: unset !important;
    margin-top: 100px;
} */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}


.card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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


.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}
.grid-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}
.grid-card:hover{
    transform: translateY(-5px);
}
.grid-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.card-content {
    padding: 15px;
}
.card-content h3 {
    font-size: 1.5rem;
    color: #333;
}
.card-content p {
    font-size: 1rem;
    color: #666;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box i {
    font-size: 1.8rem;
    color: #ffffff;
}

.page-heading {
    color: #2c3e50;
    margin-bottom:0px;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.sub-heading{
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: block;
}
.why-partner-wrap{
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 4rem 0;
}
.why-partner-wrap .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

}
.why-partner-wrap .grid-card img{
    height: 200px;
}
.why-partner-wrap .card-content h3{
    font-size: 1rem;
}
.why-partner-wrap .card-content p {
    font-size: 0.8rem;
    color: #666;
}
.listing{
    list-style: none;
    padding: 0;
}
.listing li{
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}
.listing li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.partners-section {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    padding:0rem 2rem;
    color: white;
    position: relative;
}

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}
.company-logos{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}
.partner-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 140px;
}

.partner-card img {
    max-width: 100%;
    height: auto;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite linear;
}

.shape:nth-child(1) { top: 20%; left: 10%; width: 80px; height: 80px; border-radius: 40% 60% 70% 30%; }
.shape:nth-child(2) { top: 60%; left: 80%; width: 100px; height: 100px; border-radius: 50%; }
.shape:nth-child(3) { top: 40%; left: 40%; width: 60px; height: 60px; border-radius: 30% 70% 40% 60%; }

@keyframes float {
    0% { transform: rotate(0deg) translate(0, 0); }
    100% { transform: rotate(360deg) translate(20px, 20px); }
}
.company-slider .item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #fff;
    min-height: 100px;
}

.company-slider img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    
}
.testimonial-container { 
    width: 100%; 
    position: relative; 
    margin-top: 0px;
    background: url("../img/testimonial-bg.jpg") no-repeat;
    background-position: center right;
    background-size: cover;
}

.testimonial { 
    display: flex; 
    gap: 20px; 
    transition: transform 0.5s ease-in-out;
}
.testimonial-card {
    background: linear-gradient(342deg, rgb(15 52 98), rgb(9 16 53));
    /* background-color: #2c3e50; */
    color: white;
    padding: 20px;
    min-height: 300px;
    min-width: 300px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.stars {
    color: #FF3C00;
    font-size: 18px;
    margin-bottom: 10px;
}



.testimonial .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.student-photo {
    max-width: 60px;
    max-height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.testimonial-text {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.student-name {
    margin: 0;
    font-size: 1.2rem;
}

.cmy-name {
    color: #FF3C00;
    font-size: 1rem;
    font-weight: 600;
}
.testimonial-container  .owl-dots{
    text-align: center;
    margin-top: 20px;
}

.testimonial-container .owl-dots .owl-dot span {
    width: 40px;
    height: 5px;
    margin: 5px 7px;
    background: #c9e6fb;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 10px;
}

.testimonial-container .owl-dots .owl-dot.active span, 
.testimonial-container .owl-theme .owl-dots .owl-dot:hover span {
    background: #FF3C00;
}
.testimonial-container.owl-nav button{
    position: absolute;
    bottom:0px;
}
.testimonial-container .owl-nav button:hover{
    color: #FF3C00 !important;;
}


.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #b733ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}
/* .partnership-programs{
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(0, 0, 0, 0)),
    url('../img/partnership-programs-bg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    color: white;
    position: relative;
} */

.who-we-are{
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    position: relative;
}
.who-we-are::before{
    content: '';
    display: block;
    background: url(../img/quotes.png) no-repeat;
    width: 300px;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    background-size: 200px;
    opacity: 0.2;
}
.process-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 30px;
  }

  .step {
    position: relative;
    box-shadow: none !important;
    padding: 1rem !important;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
  }
  .column-reverse{
    flex-direction: column-reverse;
  }

  .step-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto 20px;
    text-align: center;
  }
  .step-number {
    position: absolute;
    font-size: 8rem;
    z-index: -1;
    left: -40px;
    top: -34px;
    font-weight: 800;
    -webkit-text-stroke-width: 5px;
    color: transparent;
  }
  .text-step{
    position: absolute;
    width: 135px;
    height: 135px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-top: 20px;
  }
  
  .step:nth-child(1) .step-circle {
    background: conic-gradient(#2196F3 360deg, #2196F3 0deg);
  }

  .step:nth-child(2) .step-circle {
    background: conic-gradient(#FF4081 360deg, #FF4081 0deg);
    margin-top: 20px;
    margin-bottom: 0px;
  }

  .step:nth-child(3) .step-circle {
    background: conic-gradient(#4CAF50 360deg, #4CAF50 0deg);
  }
  .step:nth-child(4) .step-circle {
    background: conic-gradient(#ff5900 360deg, #ff5900 0deg);
    margin-top: 20px;
    margin-bottom: 0px;
  }

.step:nth-child(1) .text-step {
    color: #2196F3;
  }

.step:nth-child(2) .text-step {
    color: #FF4081;
  }
 .step:nth-child(3) .text-step{
    color: #4CAF50;
  }
.step:nth-child(4) .text-step{
    color: #ff5900;
  }
  
  .step:nth-child(1) .step-number {
    -webkit-text-stroke-color:#2196F3;
  }

  .step:nth-child(2) .step-number {
    -webkit-text-stroke-color: #FF4081;
  }
  .step:nth-child(3) .step-number{
    -webkit-text-stroke-color: #4CAF50;
  }
  .step:nth-child(4) .step-number{
    -webkit-text-stroke-color: #ff5900;
  }
  .step-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }

  .step-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
  }

.stats-banner h3{
    font-size: 3rem;
    margin-bottom: 0;
}
/* candidate page */
.highlight{
    color: #0086dc;
}

.process-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap:10px;
}

.process-step {
    position: relative;
    width: 280px;
    text-align: center;
    /* padding: 10px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.process-step-number {
    position: absolute;
    top: 0px;
    left: 40px;
    background: #0086dc30;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212121;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.process-icon-container {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
/* .process-icon-container::before{
    content: '';
    display: block;
    background: url(../img/pattern.png) no-repeat;
    width: 140px;
    height: 100%;
    position: absolute;
    top: 0;
    background-size: 140px;
    background-position: center;
    z-index: -1;
} */

.process-icon {
    width: 110px;
    height: 110px;
    background:#fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.process-icon svg{
    width:64px;
    height: 64px;
}
.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #0086dc;
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}


.process-step-arrow{
    width: 40px;
    height: 40px;
    position: relative;
}

.process-step-arrow::before{
    content: '';
    display: block;
    background: url(../img/arrow-1.png) no-repeat;
    width:40px;
    height: 100%;
    position: absolute;
    top: 80px;
    background-size:100%;
    background-position: center;
    z-index: 1;
    filter: brightness(0.5);
}

.success-stories-container{
    position: relative;
    z-index: 0;
}
.success-stories-container::before{
    content: '';
    display: block;
    background: url(../img/pattern-9.png) no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-size: 100%;
    opacity: 1;
    z-index: -1;
    filter:hue-rotate(195deg);
}
.candidates-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    width: 100%;
}

.candidates-card {
    max-width: 100%;
    background: #f4f4f4;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    position: relative;
    /* overflow: hidden; */
}
/* .candidates-card:hover {
    transform: translateY(-2px);
} */

.candidates-card::after{
    content: '';
    display: block;
    background: url(../img/brifcase.png) no-repeat;
    width:80px;
    height: 100%;
    position: absolute;
    bottom: 20px;
    right:20px;
    background-size: contain;
    opacity: 0.05;
    background-position: right bottom;
}
.candidates-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3F51B5, #2196F3, #4ac29a00, #e91e6300);
    border-radius: 14px;
    z-index: -1;
    transition: all 0.5s ease-in-out;
}
.candidates-card:hover::before{
    background: linear-gradient(45deg, #0e91e630, #4ac29a00, #2196F3, #3F51B5);
}
.candidates-card .profile { 
    display: flex;
    align-items: self-start;
    gap: 20px;
}

.candidates-card .profile img {
    width: 160px;
    height: 160px;
    border-radius:10px;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px #8a8a8a;
    transform: rotate(-5deg);
    transition: all 0.3s ease;
    position: relative;
}

.candidates-card:hover .profile img {
    transform: rotate(0deg);
}

.candidates-text {
    font-size: 1.25rem;
    color: #333;
    margin-top: 10px;
    line-height: 1.5;
    position: relative;
    min-height: 10px;
    margin-bottom: 20px;
}

.candidates-card .name {
    font-weight: bold;
    color: #010101;
    font-size: 1.2rem;
}

/* New styles for additional information */
.hired-from, 
.skills, 
.working-with,.position-name,
.Intern-year
 {
    font-size: 1rem;
    color: #444;
    margin-top: 10px;
    /* margin-top: 10px; */
}
.social-links {
    margin-top: -30px;
    font-size: 1rem;
    color: #444;
    margin-left: -112px;
}

.social-links a {
    text-decoration: none;
    font-weight: bold;
}

.social-icons {
    font-size: 20px;
    transition: color 0.3s ease; 
}

.social-icons.linkedin {
    color: #0077b5; 
}

.social-icons.twitter {
    color: #1da1f2; 
}

.social-icons.facebook {
    color: #1877f2; 
}

.social-icons.instagram {
    color: #e4405f;
}


.social-icons:hover {
    color: #333; 
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color:#333;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
  }
@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .process-container {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step-arrow::before {
        transform: rotate(90deg);
        top: 10px;
        background-size: 40px;
        background-position: -10px -14px;
    }
    .process-step-number {
        transform: scale(1.5);
    }

}

  @media (max-width: 767px) {
    .process-container {
      flex-direction: column;
      align-items: center;
    }

    .step {
      max-width: 300px;
    }
    .column-reverse{
        flex-direction: column;
      }
    .hero-banner-wrapper {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .hero-banner {
        height: 100%;
    }
    .hero-content {
        position: unset !important;
        max-width: 94% !important;
        width: 100%;
        margin: 0px auto !important;
    }
    .hero-img {
        display: none;
    }
    .who-we-are::before {
        width: 120px;
        background-size: 120px;
    }
    .cta-button {
        display: flex;
        gap:15px;
        align-items: baseline;
    }
    .candidates-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
    }
    .candidates-card .profile {
        flex-direction: column;
    }
    .candidates-card .profile img {
        width:200px;
    }
    .candidates-card::before{
        width: 40px;
    }
  }
  /* .position-name{
    padding-left: 27px;
    font-size: 14px;
} */
