/* @font-face {
    font-family: 'Poppins';
    src: url('/storage/fonts/Poppins-Medium.ttf') format('ttf');
    font-weight: normal;
    font-style: normal; 
}

@font-face {
    font-family: 'Nunito';
    src: url('/storage/fonts/Nunito-VariableFont_wght.ttf') format('ttf');
     font-weight: normal;
    font-style: normal; 
} */

*{
  font-family: "Winky Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

:root {
    
    --bgpct: 100%;
    --bgpctmod: 1;
  }


.ptitle{
    font-family: 'Raleway',serif;
    font-weight: bold;
}
.pdesc{
    font-family: 'Raleway',serif;
}

@media screen and (min-width:320px){
    .navbar{
        background-color: white;
    }
    .nav-link,.nav-link:hover{
        color: black;
    }
    
    .navbar-nav .nav-link.show{
        color: black;
    }
    .hero h1{
        font-size: 30px;
    }

    .hero{
        background-image: url('/storage/app/public/images/hbanner.jpg');
        background-position: center;
        background-repeat: no-repeat;
        height: 350px;
        background-size: cover;
    }

    .portfolio{
        height:15px;
    }
}

@media screen and (min-width:768px){
    .navbar{
        background-color: black;
        left: 50px;
        right: 50px;
        border-radius: 50px;
        margin-top: 20px;
    }
    .nav-link,.nav-link:hover{
        color: white;
    }
    
    .navbar-nav .nav-link.show{
        color: white;
    }

    .hero h1{
        font-size: 60px;
    }

    .hero{
        background-image: url('/storage/app/public/images/hbanner.jpg');
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
        background-size: cover;
    }

    .portfolio{
        height:150px;
    }
}

@media screen and (min-width:1024px){
    .navbar{
        background-color: black;
        left:150px;
        right: 150px;
        border-radius: 50px;
        margin-top: 30px;
    }

    .hero{
        background-image: url('/storage/app/public/images/hbanner.jpg');
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
        background-size: cover;
    }
}
@media screen and (min-width:1440px){
    .navbar{
        background-color: black;
        left:200px;
        right: 200px;
        border-radius: 50px;
        margin-top: 30px;
    }
}

@media screen and (min-width:2560px){
    .navbar{
        background-color: black;
        left:400px;
        right: 400px;
        border-radius: 50px;
        margin-top: 30px;
    }
}

.rounded {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.rounded > div {
    border-radius: 25px;
    padding: 10px;
    color: white;
    background-color: #ff4800;
    width: fit-content;
    margin: 5px;
}

/* Column layout for small screens */
@media (max-width: 767px) {
    .rounded {
        flex-direction: column;
        align-items: center;
    }
}

/* Two items per row for medium screens */
@media (min-width: 768px) and (max-width: 1023px) {
    .rounded {
        flex-direction: row;
        justify-content: center;
    }

    .rounded > div {
        width: calc(50% - 10px); /* Adjust width to fit two per row */
        text-align: center;
    }
}

/* Three items per row for large screens */
@media (min-width: 1024px) {
    .rounded {
        flex-wrap: wrap;
        justify-content: center;
    }

    .rounded > div {
        width: calc(33.33% - 10px); /* Adjust width for three per row */
        text-align: center;
    }
}



.rounded-btn{
    border-radius: 25px;
    background-color: #ff4800;
    color: white;
}

.service_card {
    /* height: 100vh;
    width: 100%; */
    position: sticky;
    top: 0;
  background-color: rgb(20 18 18);
  color: white;
   /* Not needed if 100vh
   &:nth-last-child(1) {
      height: 100vh;
   } */
}

.scroll-container {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 10px;
    white-space: nowrap;
    width: 100%;
}

.scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 7px 15px;
    z-index: 10;
    border-radius: 50%;
}

.d-flex {
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent; /* For Firefox */
}

/* For WebKit browsers (Chrome, Safari) */
.d-flex::-webkit-scrollbar {
    height: 5px; /* Thin scrollbar */
}

.d-flex::-webkit-scrollbar-track {
    background: transparent; /* Hide track */
}

.d-flex::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3); /* Scrollbar color */
    border-radius: 10px;
}

.left-btn {
    left: 0;
}

.right-btn {
    right: 0;
}

.color-options {
    display: flex;
    /* justify-content: center; */
    gap: 10px;
    margin-top: 10px;
}

.color-options input[type="radio"] {
    display: none;
}

.color-options label {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
    display: inline-block;
}

/* Highlight the selected variant */
.color-options input[type="radio"]:checked + label {
    border: 2px solid black;
}

.backimg{
    background-image: url('/storage/app/public/images/backimg.jpg');
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    margin: auto;
}

.video {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 40px;
    padding: 20px 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.play-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}



@keyframes slides {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  .logos {
    overflow: hidden;
    padding: 30px 0px;
    white-space: nowrap;
    position: relative;
  }
  
  .logos:before, .logos:after {
    position: absolute;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 2;
  }
  
  .logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
  }
  
  .logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
  }
  
  .logo_items {
    display: inline-block;
    animation: 35s slides infinite linear;
  }
  
  .logos:hover .logo_items {
    animation-play-state: paused;
  }
  
  .logo_items img{
    height: 100px;
  }

  .section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-borders span {
    height: 5px;
    background: #6aaf08;
    width: 40px;
    display: inline-block;
    border-radius: 2px;
}

.section-borders span.black-border {
    background: #333;
    width: 30px;
    margin: 0 6px;

}

.client-testimonial-carousel .owl-dots button {
    height: 5px;
    background: #6aaf08 !important;
    width: 20px;
    display: inline-block;
    margin: 5px;
    transition: .2s;
    border-radius: 2px;
}

.client-testimonial-carousel button.owl-dot.active {
    background: #fff !important;
    width: 30px;
}

.client-testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 25px
}

.single-testimonial-item {
    position: relative;
    box-shadow: 0 0 2px #dadfd3;
    margin: 2px;
    padding: 20px;
    font-style: italic;
    padding-left: 85px;
}

.single-testimonial-item:before {
    font-family: "Font Awesome 5 Free";
    content: "\f10e";
    font-weight: 900;
    position: absolute;
    left: 20px;
    top: 50%;
    font-size: 20px;
    color: #6aaf08;
    line-height: 30px;
    margin-top: -15px;
}

.single-testimonial-item:after {
    background: #ddd;
    content: "";
    height: 70%;
    left: 60px;
    position: absolute;
    top: 10%;
    width: 1px;
}

.single-testimonial-item h3 {
    font-size: 20px;
    font-style: normal;
    margin-bottom: 0;
}

.single-testimonial-item h3 span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    margin-top: 5px;
}

.accordion {
    display: flex;
    flex-direction: column;
    font-family: "Sora", sans-serif;
    max-width: 991px;
    min-width: 320px;
    margin: 50px auto;
    padding: 0 50px;
}
.accordion h1 {
    font-size: 32px;
    text-align: center;
}
.accordion-item {
    margin-top: 16px;
    border: 1px solid #fcfcfc;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.accordion-item .accordion-item-title {
    position: relative;
    margin: 0;
    display: flex;
    width: 100%;
    font-size: 15px;
    cursor: pointer;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 14px 20px;
    box-sizing: border-box;
    align-items: center;
}
.accordion-item .accordion-item-desc {
    display: none;
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    color: #444;
    border-top: 1px dashed #ddd;
    padding: 10px 20px 20px;
    box-sizing: border-box;
}
.accordion-item input[type="checkbox"] {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}
.accordion-item input[type="checkbox"]:checked ~ .accordion-item-desc {
    display: block;
}
.accordion-item
    input[type="checkbox"]:checked
    ~ .accordion-item-title
    .icon:after {
    content: "-";
    font-size: 20px;
}
.accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
    content: "+";
    font-size: 20px;
}
.accordion-item:first-child {
    margin-top: 0;
}
.accordion-item .icon {
    margin-left: 14px;
}

@media screen and (max-width: 767px) {
    .accordion {
        padding: 0 16px;
    }
    .accordion h1 {
        font-size: 22px;
    }
}

.nav-tabs{
    border:none !important;
}

.nav-tabs .nav-link{
    color: black !important;
}

.nav-tabs .nav-link.active{
    border: 1px solid #dcd4d4 !important;
    border-radius:25px !important;
}

.nav-tabs .nav-link:hover{
    border: 1px solid #dcd4d4 !important;
    border-radius:25px !important;
}

/* .js-text div {
    display: block;
    text-align: start;
    position: relative;
    animation-name: grow-progress;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-timeline: scroll();
    z-index: 10;
  }

  
  .js-text div:nth-child(1) {
    --bgpct: 80%;
  }
  .js-text div:nth-child(2) {
    --bgpct: 100%;
  }
  .js-text div:nth-child(3) {
    --bgpct: 120%;
  }
  .js-text > * {
    background-image: linear-gradient(-45deg, #a79d91 45%, #ff3139 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  @keyframes grow-progress {
    0% {
      background-position-x: var(--bgpct);;
    }
    100% {
      background-position-x: 0%;
    }
  } */

  .js-text div {
    display: block;
    text-align: start;
    position: relative;
    z-index: 10;
    background-image: linear-gradient(-45deg, #a79d91 45%, #ff3139 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.5s ease-in-out;
}

.expertise-list {
    list-style: none;
    padding: 0;
}
.expertise-list li {
    /* font-size: 18px; */
    margin-bottom: 8px;
}