   /* home */
   *{
    color:#2b4254;
   }

    .carousel-btn {
        background: transparent;
        border: 1px solid #fff;
        transition: all 0.3s ease;
    }

    .carousel-btn:hover {
        background-color: #fff !important;
    }

    .carousel-btn:hover i {
        color: #000 !important;
    }


   #overlay{
        background: linear-gradient(to right, rgba(0,0,0,0.9), transparent);
    }
    .skillCard{
        position: relative;
        overflow: hidden;
        transition: color 0.4s ease;
    }

    .skillCard::before{
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.8);
        transform: translateY(100%);
        transition: transform 0.4s ease;
        z-index: 0;
    }

    .skillCard:hover::before{
        transform: translateY(0);
    }

    .skillCard *{
        position: relative;
        z-index: 1;
    }

    .skillCard:hover{
        color: #fff !important;
    }

    .skillCard:hover p{
        color:#fff !important;
    }
    .skillCard:hover h5{
        color:#fff !important;
    }
    .skillCard:hover i{
        transform: scale(1.3);
        transition: transform 1s ease; 
    }

    .customer-promise{
        background: 
            linear-gradient(to right, rgba(0,0,0,0.5) 100%, rgba(0,0,0,0.5) 0%),
            url('/image/static/contact-bg.jpg') no-repeat center center;
            background-size: cover; /* or contain */
        background-attachment: fixed;
        position: relative;
        color: #fff;
    }
    .customer-promise .overlay{
        background-image:linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.8));
    }

    /* about */
    .message-card {
        background: #0d6efd;        
        transform: rotateZ(45deg);  
        z-index: -1;                
    }
    .valueImage{
        background: url("{{ asset('image/static/pcb5.jpg') }}") no-repeat center bottom;
        background-size: cover;
        position: relative;
        border-top-left-radius:50px;
        border-bottom-left-radius:50px;
    }

    .valueImage::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.5);
      border-top-left-radius:50px;
      border-bottom-left-radius:50px;
      z-index:1;
    }

    .valueImage .valueRow{
      position: relative;
      z-index: 2;
    }

    .valueImage .service-track,
    .valueImage .service-item,
    .valueImage .valueRow {
        position: relative;
        z-index: 2; /* ensure cards appear above overlay */
    }

    .backDiv{
        animation: moveAround 3s infinite alternate ease-in-out;
    }

    @keyframes moveAround {
        0% {
            transform: translate(50px, 0);
        }
        100% {
            transform: translate(0, 0);
        }
    }

    .backImage{
        background: url('image/static/pcb4.jpg') no-repeat center center/cover;
        animation: moveImage 3s infinite alternate ease-in-out;
    }   

    @keyframes moveImage {
        0% {
            transform: translate(0, 50px);
        }
        100% {
            transform: translate(0, 0);
        }
    }

    @media (max-width: 600px) {
        .message-card{
            position:relative;
            z-index: 0;   
        }
        .smallImageContainer{
            flex: column !important;
            justify-content: end !important;
        }
        .smallImage1{
            width:75% !important;
            text-align:end;
        }
        .smallImage2{
            position: relative !important;
            width:75% !important;
        }
    }


    /* Service carousel */

    .choose-section {
        background: #f8f9fa;
    }

    .service-scroll {
        overflow: hidden;
        /* padding: 1rem 3rem; */
        display:flex;
        align-items: center;
    }

    .service-track {
        display: flex;
        transition: transform 0.5s ease;
    }

    .service-item {
        position: relative;
        min-width: 320px;
        margin-right: 1rem;
        z-index: 1; /* all cards same z-index */
    }

    .service-item .bg-white {
        background-color: #ffffff !important; /* always white */
        box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* optional subtle shadow */
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        background: #0d6efd;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-arrow {
        width: 45px;
        height: 45px;
        border: none;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        z-index: 10;
    }

    /* mobile */
    @media (max-width: 768px) {
        .service-item {
            min-width: 260px;
        }
    }

    @media (max-width: 600px) {
        .smallImage2 {
            width: 50% !important;
        }
    }

    .reveal {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.8s ease-out;
    }

    .reveal-init {
        opacity: 0;
        transform: translateY(60px);
    }

    .shadow{
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;
    }



