p, .liColor, .heading, img{
    color: #0076B6;
}

.logo{
    width: 110px;
    height: auto;
}
.footerLogo{
    width: 140px;
    height: auto;
}

.navbar-nav .nav-item .nav-link {
    position: relative;
    text-decoration: none;
    padding-bottom: 5px;
}
.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #005A8C;
    transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
}

.mainImg{
        width: 70%;
    height: 70%;
}
.section {
    padding: 20px;
    border: 1px solid #ccc;
    margin: 12px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-nav .nav-link:hover {
    color: #005A8C !important;
}
.desc{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
p{
    font-size: 20px;
}

.number {
    font-size: 2rem;
    font-weight: bold;
    color: #005A8C;
    display: inline-block;
    transform-origin: center;
    transform: scale(1);
    animation: growOnScroll linear both;
    animation-timeline: view();
}


@keyframes growOnScroll {
0% {
    transform: scale(1);
    color: #0076B6;
    opacity: 0.7;
}
50% {
    transform: scale(1.8);
    color: #0076B6;
    opacity: 1;
}
100% {
    transform: scale(1.8);
    color: #0076B6;
    opacity: 0.7;
}
}

.cardContainer{
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.cardContainer:hover {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}
.aboutUsImg{
    width: 140px;
    height: auto;
    border-radius: 10px;
    max-width: 150px;
}

.card1 {
    position: sticky;
    top: 100px;
    z-index: 20;
    transition: transform 0.4s ease, z-index 0.4s ease;
}

.card2 {
    position: sticky;
    top: 100px;
    z-index: 30;
    transition: transform 0.4s ease, z-index 0.4s ease;
}

.card3 {
    position: sticky;
    top: 100px;
    z-index: 40;
    transition: transform 0.4s ease, z-index 0.4s ease;
}

.card4 {
    position: sticky;
    top: 100px;
    z-index: 50;
    transition: transform 0.4s ease, z-index 0.4s ease;
}

@media (max-width: 1280px) {
    .card1, .card2, .card3, .card4 {
        position: static;
    }
}

.carousel-container {
    position: relative; 
    height: 80px;
}

.carouselControl {
    margin-top: 20px;
    max-height: 50px;
    max-width: 50px;
}

.btnArrow {
    font-size: 35px;
    color: #007bff;
    transition: color 0.3s ;
    margin: 20px;
    cursor: pointer;
}

.btnArrow:hover {
    color: #007bff;
}

.clientImg{
    width: 150px;
    height: 150px;
    object-fit: contain;
    cursor: pointer;
    object-position: center;
    transition: transform 0.8s ease-in-out;
}
.clientImg:hover{
    transform: scale(1.1);
}

.numberItem h2{
    position: relative;
    animation-name: moveanimation;
    animation-duration: 5s;
    font-size: 80px;
    animation-timeline: view();
}
@keyframes moveanimation{
    from {bottom: -20px; opacity: 0;}
    to {bottom: 0px;}
}

.careerDiv{
    border-top: 1px solid #ccc;
    }
.careerBtn:hover{
    background-color: #0076B6;
    color: white;
}
.mainBtn{
    border: none;
    border-radius: 5px;
    padding: 7px 12px;
    background-color: #0076B6;
    color: #FFFFFF;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.mainBtn:hover{
    background-color: #005A8C;
    color: white;
}
.imgDiv{
    background-color: #e3f2fc;
    border-radius: 10px; 
}
.careerImg{
    width: 80px;
    height: 80px;
    padding: 18px;
    transition: transform 0.3s ease-in-out;
}
.careerDiv:hover .careerImg {
    transform: translateY(-8px);
}

.list-unstyled li a{
    color: #0076B6;
    text-decoration: none;
}
.list-unstyled li a:hover {
    color: #005A8C;
}

.servicesLeftSection, .industriesLeftSection {
    padding: 20px;
    padding-top: 65px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 250px;
    height: 100vh;
    box-sizing: border-box;
}

.servicesRightSection {
    padding: 20px 0px 0px 20px;
    width: 100%;
    min-height: 150vh;
}

@media (max-width: 1400px) {
    .servicesLeftSection{
        position: static;
        width: 100%;
        height: auto;
        padding-top: 20px;
    }

    .servicesRightSection {
        min-height: 0vh;
    }
    .indImg{
        height: auto;
    }
    }
@media (max-width: 768px) {
    .logo{
        width: 100px;
        height: auto;
    }
    .indImg{
        height: auto;
    }
    }

    .list {
    list-style-type: square;
}

.list::marker {
    color: #005A8C;
}