/*common css*/
:root{
    --green:#F49f20 ;
    --dark:#fff;
    --muted:#a9b3ad;
    --card:#ffffff;
    --gradient:linear-gradient(90deg, #f9f9f9, #fff);
}
/*band*/
/* Container hides the overflow */
.logo-bar-container {
    width: 100%;
    overflow: hidden;
    background: #f8f9fa; /* Match your site background */
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* The moving track */
.logo-bar {
    display: flex;
    width: calc(250px * 10); /* Adjust: (approx width of logo + gap) * total logos */
    animation: scroll 25s linear infinite;
}

/* Individual items */
.logo-item {
    width: 250px; /* Consistent spacing */
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item img {
    height: 80px; /* Set your preferred height */
    width: auto;
    /*filter: grayscale(100%);  Keeps it professional */
    opacity: 0.6;
    transition: 0.3s;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* The Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* This moves exactly half of the duplicated list */
        transform: translateX(calc(-250px * 5)); 
    }
}

/* Pause on hover */
.logo-bar:hover {
    animation-play-state: paused;
}



/* experience section */
.commonHeading{
    display: flex;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 60px;
}
.sub-title{
    color: var(--green);
    /*font-size: 14px;*/
    letter-spacing: 2px;
}
.commonHeading h2 {
    /*font-size: 42px;*/
    font-weight: 800;
}
.commonHeading h2 span{
    color: var(--green);
}
.commonHeading .right{
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.line{
    width: 4px;
    height: 70px;
    background: var(--green);
}
.commonHeading p{
    color: var(--muted);
    max-width: 400px;
}
.experience-section{
    padding: 100px 0;
    background: var(--gradient);
}
.experience-grid{
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.card{
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
}
.card h5{
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 10px;
}
.card h3{
    color: var(--green);
    margin-bottom: 15px;
    font-size: 18px;   
}
.card p{
    color: #cfcfcf;
    font-size: 14px;
    margin-bottom: 6px;
}
.skill-grid{
    margin-top: 80px;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.skill{
    text-align: center;
    flex: 1;
    min-width: 180px;
}
.circle{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: auto;
    background: conic-gradient(var(--green) var(--percent), #ffffff 0);

}
.circle span{
    width: 100px;
    height: 100px;
    background: var(--dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 28px;
    font-weight: bold;
    margin-top: 10px;
}
.skill h4{
    margin-top: 15px;
    font-size: 14px;
    letter-spacing: 1px;
}
.c60{--percent:60%}
.c70{--percent:70%}
.c30{--percent:30%}
.c90{--percent:90%}

/*Preloader*/

#campblink-preloader {
   
    will-change: transform, opacity;
}

.lapeng-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

/* The Drawing Animation */
.tent-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawTent 2s infinite ease-in-out;
}

@keyframes drawTent {
    0% { stroke-dashoffset: 300; opacity: 0; }
    50% { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: -300; opacity: 0; }
}

/* Modern Letter Animation */
.loading-text {
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 5px;
    color: #162953;
}

.letter {
    display: inline-block;
    animation: wave 1.5s infinite ease-in-out;
}

.letter:nth-child(2) { animation-delay: 0.1s; }
.letter:nth-child(3) { animation-delay: 0.2s; }
.letter:nth-child(4) { animation-delay: 0.3s; }
.letter:nth-child(5) { animation-delay: 0.4s; }
.letter:nth-child(6) { animation-delay: 0.5s; }

@keyframes wave {
    0%, 100% { transform: translateY(0); color: #162953; }
    50% { transform: translateY(-10px); color: #F6A21E; }
}

/* Minimalist Skip Button */
.preloader-close-btn {
    position: absolute;
    bottom: 40px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    cursor: pointer;
    border: 1px solid #eee;
    padding: 8px 20px;
    border-radius: 50px;
    transition: 0.3s;
}

.preloader-close-btn:hover {
    background: #162953;
    color: #fff;
    border-color: #162953;
}


/*animated menu*/




/* Container styling to make the button look good */
.hamberger-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  outline: none;
}

/* Base style for the three lines */
.line360 {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #162953;
  margin-block: 3px; /* Controls the vertical gap between lines */
  border-radius: 2px;
      
  
  /* Animation Settings */
  transform-origin: left;
  animation: menuBtn 800ms ease-in-out alternate infinite;
}

/* Keyframes for the scaling effect */
@keyframes menuBtn {
  0% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0.5);
    opacity: 0.6;
  }
}

/* Staggered delays to create the wave effect */
.line360-1 {
  animation-delay: 0ms;
}

.line360-2 {
  animation-delay: 150ms;
}

.line360-3 {
  animation-delay: 300ms;
}

/* Optional: Pause animation on hover for better UX */
.hamberger-button:hover .line360 {
  animation-play-state: paused;
  background-color: #F6A21E; /* Changes color when hovering */
}


/* Container for the whole button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1000;
}

/* The "Contact us" white label */
.whatsapp-label {
    background-color: white;
    color: #333;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    margin-right: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* The little triangle on the label pointing to the icon */
.whatsapp-label::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid white;
}



/* The circular blue icon button */
.whatsapp-icon {
    width: 60px;
    height: 60px;
    background-color: #64cd47; /* Your primary theme color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
    background-color: #67bc4f;
}

/* Hide label on very small screens if needed */
@media (max-width: 480px) {
    .whatsapp-label {
        display: none;
    }
}





/*our tent*/

    .lapeng-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .lapeng-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .lapeng-card .card-image-wrap img {
        transition: transform 0.5s ease;
    }

    .lapeng-card:hover .card-image-wrap img {
        transform: scale(1.1);
    }

    /* Styles for the Specs Icons */
    .card-specs span i {
        color: #162953;
        margin-right: 5px;
    }



/* service section */
.serviceSection{
    padding: 100px 0px;
}
.services-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.service-card{
    flex: 1 1 calc(33.333% - 20px);
    background: var(--card);
    padding: 50px 30px;
    text-align: center;
    border-radius: 6px;
    transition: 0.3s ease;
}
.service-card .icon{
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}
.service-card h3{
    color: var(--green);
    margin-bottom: 15px;
    font-size: 18px;
}
.service-card p{
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}
.service-card:hover{
    background: var(--green);
}
.service-card:hover .icon{
    filter: brightness(4.5);
}
.service-card:hover h3,
.service-card:hover p{
    color: #333;
}
.service-card.active{
    background: var(--green);
}
.service-card.active h3,
.service-card.active p{color: #333;}
.service-card.active .icon{
    filter: brightness(4.5);
}
.service-card:hover{
    transform: translateY(-8px);
}


/* testimonial section */
.testimonial-section{
    padding: 100px 0px;
    
    background-size: 100%;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.slider-wrapper{
    margin-top: 70px;
    position: relative;
}
.testimonial{
    display: none;
    animation: fade 0.5s ease;
}
.testimonial.active{
    display: block;
}
@keyframes fade{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.quote{
    color: var(--green);
    line-height: 0.8;
}
.testimonial-content{
    display: flex;
    gap: 25px;
    margin-top: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.user-img img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green);
}
.text-box{max-width: 700px;}
.text-box p{
    /*font-size: 22px;*/
    line-height: 1.6;
    /*font-weight: 600;*/
}
.author{
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.8;
}
.arrows{
    position: absolute;
    right: 0;
    top: -80px;
    display: flex;
    gap: 15px;
}
.arrows button{
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--green);
    color: var(--green);
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}
.arrows button:hover{
    background: var(--green);
    color: #000;
}

/* responsive */
@media (max-width: 600px){

    .desc{margin-left: auto; margin-right: auto;}
    .hero-media{order: -1;}
    .feature-block .container{flex-direction: column;}
    .commonHeading{flex-direction: column;}
    .feature-media{margin: 0 auto;}

    

    .skill-grid{justify-content: center;}
    .service-card{flex: 1 1 100%;}
    .cards{
        grid-template-columns: 1fr;
        }
    .testimonial-content{flex-direction: column;}
    .arrow{top: -60px;}
    .blog-grid{
        grid-template-columns: 1fr;
   
}