.social-btn{
    width:50px;
    height:50px;
    background:#1877f2;
    color:#fff;
    display:flex;
    align-items:center;
   border-radius:5px;
    overflow:hidden;
    text-decoration:none;
    transition:0.4s;
    bottom:-35px;
    left:50%;
    /* transform:translateX(-20%); */
    gap:10px;
    margin: 5px;
}

.social-btn i{
    min-width:50px;
    text-align:center;
    font-size:22px;
}

.social-btn span{

    opacity:0;
    white-space:nowrap;
    transition:0.4s;
}

.social-btn:hover{
    width:160px;
    background:bisque;
}

.social-btn:hover span{
    opacity:1;
}

.social-container{
    display:flex;
    gap:15px;
}
/* newly added end  */


.social_icon {
  display: flex;
  flex-direction: column;
  position:fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  text-align: center;

}
 /* .social_icon a {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
} */
/* .social_icon span{
    position:absolute;
    bottom:-35px;
    left:50%;
    transform:translateX(-50%);
    background:#333;
    color:#fff;
    padding:5px 10px;
    border-radius:5px;
    font-size:12px;
    white-space:nowrap;
    opacity:0;
    transition:all 0.3s ease;
} */

.social_icon a:hover {
  background-color: #C82440;
}
      

 .homeHighlights{
    padding:30px 0;
}

/* Carousel */

#homeCarousel{
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    border-radius:10px;
    overflow:hidden;
}

#homeCarousel .item img{
    width:100%;
    height:400px;
    object-fit:cover;
}

.carousel-caption{
    background:rgba(0,0,0,1);
    left:0;
    right:0;
    bottom:0;
    padding:20px;
}

.carousel-caption h3{
    margin-top:0;
    font-weight:bold;
}

/* News */

.news-panel{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.news-header{
    background:#003366;
    color:#fff;
    padding:15px;
    font-size:22px;
    font-weight:600;
}

.news-container{
    height:450px;
    overflow:hidden;
    position:relative;
}

.news-list{
    list-style:none;
    margin:0;
    padding:0;
}

.news-list li{
    padding:15px;
    border-bottom:1px solid #eee;
    background:#fff;
}

.news-list li:hover{
    background:#f7f7f7;
   
}

.news-date{
    display:inline-block;
    background:#d9534f;
    color:#fff;
    padding:5px 10px;
    border-radius:20px;
    font-size:12px;
    margin-right:10px;
}

.news-list a{
    color:#333;
    text-decoration:none;
    font-weight:600;
}

.news-list a:hover{
    color:#d9534f;
   
}

@media(max-width:767px){

    
    .news-container{
        height:300px;
    }

}


/* company logo slider  */
.recruiters-section{
    padding:50px 0;
    background:#f8f9fa;
}

.recruiter-title h2{
    color:#003366;
    font-weight:700;
    margin-bottom:10px;
}

.recruiter-title p{
    color:#777;
    margin-bottom:30px;
}

.logo-slider{
    overflow:hidden;
    background:#fff;
    margin-bottom:20px;
    border-radius:10px;
    padding:15px 0;

    -webkit-box-shadow:0 3px 12px rgba(0,0,0,0.12);
    box-shadow:0 3px 12px rgba(0,0,0,0.12);
}

.logo-track{
    display:flex;
    width:max-content;
}

.logo-slider:hover .logo-track{
    animation-play-state:paused;
}

/* .logo-item{
    width:180px;
    text-align:center;
    flex-shrink:0;
    padding:10px;
}

.logo-item img{
    max-width:130px;
    max-height:70px;
    width:auto;
    height:auto;
    opacity:1;

    -webkit-transition:all .3s ease;
    transition:all .3s ease;
}

.logo-item img:hover{
    -webkit-transform:scale(1.08);
    transform:scale(1.08);
} */

.logo-item img{
    max-width:130px;
    max-height:70px;
    width:auto;
    height:auto;
    background:#fff;
    padding:10px;
    border-radius:8px;

    -webkit-transition:all .3s ease;
    transition:all .3s ease;
}

.logo-item img:hover{
    -webkit-transform:translateY(-5px) scale(1.05);
    transform:translateY(-5px) scale(1.05);

    -webkit-box-shadow:0 5px 15px rgba(0,0,0,0.15);
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

/* Left to Right */
.left-right{
    -webkit-animation:slideRight 30s linear infinite;
    animation:slideRight 30s linear infinite;
}

/* Right to Left */
.right-left{
    -webkit-animation:slideLeft 30s linear infinite;
    animation:slideLeft 30s linear infinite;
}

@-webkit-keyframes slideRight{
    0%{
        -webkit-transform:translateX(-50%);
    }
    100%{
        -webkit-transform:translateX(0%);
    }
}

@keyframes slideRight{
    0%{
        transform:translateX(-50%);
    }
    100%{
        transform:translateX(0%);
    }
}

@-webkit-keyframes slideLeft{
    0%{
        -webkit-transform:translateX(0%);
    }
    100%{
        -webkit-transform:translateX(-50%);
    }
}

@keyframes slideLeft{
    0%{
        transform:translateX(0%);
    }
    100%{
        transform:translateX(-50%);
    }
}

@media(max-width:767px){

    .logo-item{
        width:120px;
    }

    .logo-item img{
        max-width:90px;
        max-height:50px;
    }

    .left-right,
    .right-left{
        animation-duration:20s;
    }
}



.accreditation-row {
    /* display: flex; */
    flex-wrap: wrap;
}

.accreditation-item {
    width: 20%; /* 100 ÷ 5 = 20% */
    text-align: center;
    padding: 10px;
}

.accreditation-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.accreditation-item span {
    display: block;
    margin-top: 10px;
    font-weight: 600;
}

/* Tablet - 3 items */
@media (max-width: 991px) {
    .accreditation-item {
        width: 33.33%;
    }
}

/* Mobile - 2 items */
@media (max-width: 767px) {

    .accreditation-item {
        width: 50%; /* 5 logos in one row */
        padding: 5px;
    }

    .accreditation-item img {
        width: 50px;
        height: 50px;
    }

    .accreditation-text {
        display: none; /* Hide text on mobile */
    }
}