/* feature-one */
.feature-one {
    padding: 80px 0;
}

.collection-position-2 .img-style {
    display: block;
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.collection-position-2 .img-style img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Zoom and overlay on hover */
.collection-position-2 .img-style::after {
    content: '';
    position: absolute;
    top: 0;
    border: 5px solid #dc3545;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(18 18 18 / 53%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 20px;
}

.collection-position-2 .img-style:hover img {
    transform: scale(1.08);
}

.collection-position-2 .img-style:hover::after {
    opacity: 1;
}

/* Optional text label animation */
.collection-position-2 .hover-content {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.collection-position-2 .img-style:hover .hover-content {
    bottom: 20px;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .collection-position-2 .img-style {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .collection-position-2 .img-style {
        height: 160px;
    }
}

.card-hover {
    transition: all 0.4s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background-color: #fdfdfd;
}

.icon-hover {
    transition: transform 0.4s ease;
}

.card-hover:hover .icon-hover {
    transform: scale(1.1) rotate(5deg);
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.icon-box:hover {
    background-color: #4a4a4acc;
    /* change this to your preferred hover color */
}

.icon-hover {
    transition: transform 0.3s ease;
}

.icon-box:hover .icon-hover {
    transform: scale(1.1);
}




/* Outer Circle */
.custom-cursor {
    width: 30px;
    height: 30px;
    border: 2px solid #ff7a29;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out, border 0.2s ease-out;
    box-shadow: 0 0 8px rgba(255, 122, 41, 0.5);
    mix-blend-mode: difference;
    /* Makes it pop */
}

/* Inner Dot */
.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background: #ff7a29;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease-out;
}

/* Hover Zoom Effect */
.hover-target:hover~.custom-cursor {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: #fff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}





.collection-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.transition-hover {
    transition: transform 0.5s ease;
}

.collection-card:hover .transition-hover {
    transform: scale(1.05);
}

.bg-gradient {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}




.text-gradient {
    background: linear-gradient(90deg, #f7941d, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-nav .nav-link {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.custom-nav .nav-link:hover,
.custom-nav .nav-link.active {
    background: linear-gradient(90deg, #f7941d, #00c6ff);
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 198, 255, 0.3);
}

.hover-shadow:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}


.text-gradient {
    background: linear-gradient(90deg, #f7941d, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-light {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
    background: linear-gradient(90deg, #f7941d, #00c6ff);
    color: #fff !important;
    box-shadow: 0 8px 30px rgba(0, 198, 255, 0.5);
}


/* benefit-card  */
.benefits-area {
    background: linear-gradient(to right, #f8f5f1, #fae5e5);
    padding: 120px 0 90px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefits-section-title {
    color: #1a1617;
    font-weight: 700;
}

.benefits-sub-title {
    font-size: 14px;
    color: #dc3545;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-card {
    background: white;
    border: none;
    border-radius: 8px;
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0 0 0 rgb(89 1 1 / 25%);
    transition: all 0.3s ease;
    height: 100%;
    transition: 0.5s all;
}

.benefit-card:hover {
    box-shadow: 0 8px 20px rgb(89 1 1 / 25%);
    transform: translateY(-5px);
    transition: 0.5s all;
}

.benefit-card img {
    width: 50px;
    margin-bottom: 15px;
    transition: filter 0.3s ease;
}

/* .benefit-card:hover img {
    filter: brightness(0) saturate(100%) sepia(65%) hue-rotate(10deg) brightness(90%) contrast(85%);
} */

.benefit-card h6 {
    font-weight: 700;
    font-size: 16px;
}

.text-muted-custom {
    color: #6c757d;
    max-width: 500px;
}


.why-choose-one-shape-1,
.why-choose-one-shape-2 {
    position: absolute;
}

.why-choose-one-shape-1 {
    top: 0;
    left: 0;
    opacity: 0.3;
    z-index: -1;
}

.why-choose-one-shape-2 {
    bottom: 0;
    right: 0;
    opacity: 0.3;
    z-index: -1;
}

.float-bob-x {
    animation: floatx 6s ease-in-out infinite;
}

.float-bob-y {
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatX {
    0% {
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(-30px);
    }
}

@keyframes floatY {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

/* Product section  */


.product-tab {
    position: relative;
    display: block;
    background-color: #30353a;
    padding: 120px 0 90px;
    z-index: 1;
}

.all-time-hit-bg-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.02;
    z-index: -1;
}


.all-time-hit__single {
    position: relative;
    width: 100%;
    /* padding-right: 15px;
    padding-left: 15px; */
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    margin-bottom: 30px;
}

.all-time-hit__inner {
    position: relative;
    display: block;
}

.all-time-hit__img {
    position: relative;
    display: block;
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.all-time-hit__img:before {
    z-index: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    content: "";
    background-image: -moz-linear-gradient(90deg, rgb(14, 17, 23) 0%, rgba(14, 17, 23, 0) 65%);
    background-image: -webkit-linear-gradient(90deg, rgb(14, 17, 23) 0%, rgba(14, 17, 23, 0) 65%);
    background-image: -ms-linear-gradient(90deg, rgb(14, 17, 23) 0%, rgba(14, 17, 23, 0) 65%);
}

.all-time-hit-shape {
    position: absolute;
    top: -5px;
    bottom: -5px;
    right: -5px;
    left: -5px;
    background-image: -moz-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
    transform: scaleY(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.all-time-hit__img img {
    width: 100%;
}

.all-time-hit__content {
    z-index: 2;
    position: absolute;
    bottom: 33px;
    left: 40px;
}

.all-time-hit__title {
    font-size: 20px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 26px;
    margin-bottom: 4px;
}

.all-time-hit__title a {
    color: white;
    transition: all 500ms ease;
    font-size: 18px;
}

.all-time-hit__single:hover .all-time-hit__img {
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.3);
}

.section-title__title {
    color: #fff;
}

.all-time-hit-shape {
    position: absolute;
    top: -5px;
    bottom: -5px;
    right: -5px;
    left: -5px;
    background-image: -moz-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(220, 53, 69) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(220, 53, 69) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(220, 53, 69) 100%);
    transform: scaleY(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.all-time-hit__single:hover .all-time-hit-shape {
    transform: scaleY(1);
}



/* Glass Card counter */
.sectionClass {
    /* padding: 20px 0px 50px 0px; */
    position: relative;
    display: block;
}

.fullWidth {
    width: 100% !important;
    display: table;
    float: none;
    padding: 0;
    min-height: 1px;
    height: 100%;
    position: relative;
}


.sectiontitle {
    background-position: center;
    margin: 30px 0 0px;
    text-align: center;
    min-height: 20px;
}

.sectiontitle h2 {
    font-size: 30px;
    color: #222;
    margin-bottom: 0px;
    padding-right: 10px;
    padding-left: 10px;
}


.headerLine {
    width: 160px;
    height: 2px;
    display: inline-block;
    background: #101F2E;
}


.projectFactsWrap {
    display: flex;
    /* margin-top: 30px; */
    flex-direction: row;
    flex-wrap: wrap;
}


#projectFacts .fullWidth {
    padding: 0;
}

.projectFactsWrap .item {
    width: 25%;
    height: 100%;
    padding: 50px 0px;
    text-align: center;
}

.projectFactsWrap .item:nth-child(1) {
    background: rgb(16, 31, 46);
}

.projectFactsWrap .item:nth-child(2) {
    background: rgb(220 53 69);
}

.projectFactsWrap .item:nth-child(3) {
    background: rgb(21, 38, 56);
}

.projectFactsWrap .item:nth-child(4) {
    background: rgb(220 53 69);
}

.projectFactsWrap .item p.number {
    margin-top: 14px;
    font-size: 40px;
    padding: 0;
    font-weight: bold;
}

.projectFactsWrap .item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin: 0;
    padding: 10px;
    font-family: 'Open Sans';
}


.projectFactsWrap .item span {
    width: 60px;
    background: rgba(255, 255, 255, 0.8);
    height: 2px;
    display: block;
    margin: 1px auto;
}


.projectFactsWrap .item i {
    vertical-align: middle;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.8);
}


.projectFactsWrap .item:hover i,
.projectFactsWrap .item:hover p {
    color: white;
}

.projectFactsWrap .item:hover span {
    background: white;
}

@media (max-width: 786px) {
    .projectFactsWrap .item {
        flex: 0 0 50%;
    }
}



/* testimionial */
.heading {
    text-align: center;
    color: #1a1617;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
   
}

.white-heading {
    color: #ffffff;
}

.heading:after {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 50%;
    height: 40px;
    width: 180px;
    border-radius: 4px;
    transform: translateX(-50%);
    background: url(img/heading-line.png);
    background-repeat: no-repeat;
    background-position: center;
}

.white-heading:after {
    background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
    background-repeat: no-repeat;
    background-position: center;
}

.heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
}

.white-heading span {
    color: #ffffff;
}

/*-----Testimonial-------*/

.testimonial:after {
    position: absolute;
    top: -0 !important;
    left: 0;
    content: " ";
    background: url(img/testimonial.bg-top.png);
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}

.testimonial {
    min-height: 375px;
    position: relative;
    background: url(https://i.ibb.co/PTJDkgb/testimonials.jpg);
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: center;
    background-size: cover;
}

#testimonial4 .carousel-inner:hover {
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

#testimonial4 .carousel-inner:active {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

#testimonial4 .carousel-inner .item {
    overflow: hidden;
}

.testimonial4_indicators .carousel-indicators {
    left: 0;
    margin: 0;
    width: 100%;
    font-size: 0;
    height: 20px;
    bottom: 15px;
    padding: 0 5px;
    cursor: e-resize;
    overflow-x: auto;
    overflow-y: hidden;
    position: absolute;
    text-align: center;
    white-space: nowrap;
}

.testimonial4_indicators .carousel-indicators li {
    padding: 0;
    width: 14px;
    height: 14px;
    border: none;
    text-indent: 0;
    margin: 2px 3px;
    cursor: pointer;
    display: inline-block;
    background: #ffffff;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators .active {
    padding: 0;
    width: 14px;
    height: 14px;
    border: none;
    margin: 2px 3px;
    background-color: #9dd3af;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar {
    height: 3px;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb {
    background: #eeeeee;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.testimonial4_control_button .carousel-control {
    top: 175px;
    opacity: 1;
    width: 40px;
    bottom: auto;
    height: 40px;
    font-size: 10px;
    cursor: pointer;
    font-weight: 700;
    overflow: hidden;
    line-height: 38px;
    text-shadow: none;
    text-align: center;
    position: absolute;
    background: transparent;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
    transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
}

.testimonial4_control_button .carousel-control.left {
    left: 7%;
    top: 50%;
    right: auto;
}

.testimonial4_control_button .carousel-control.right {
    right: 7%;
    top: 50%;
    left: auto;
}

.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover {
    color: #000;
    background: #fff;
    border: 2px solid #fff;
}

.testimonial4_header {
    top: 0;
    left: 0;
    bottom: 0;
    width: 550px;
    display: block;
    margin: 30px auto;
    text-align: center;
    position: relative;
}

.testimonial4_header h4 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonial4_slide {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    margin: auto;
    padding: 20px;
    position: relative;
    text-align: center;
}

.testimonial4_slide img {
    top: 0;
    left: 0;
    right: 0;
    width: 136px;
    height: 136px;
    margin: auto;
    display: block;
    color: #f2f2f2;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    position: relative;
    border-radius: 50%;
    box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}

.testimonial4_slide p {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.4;
    margin: 40px 0 20px 0;
}

.testimonial4_slide h4 {
    color: #ffffff;
    font-size: 22px;
}

.testimonial .carousel {
    padding-bottom: 50px;
}

.testimonial .carousel-control-next-icon,
.testimonial .carousel-control-prev-icon {
    width: 35px;
    height: 35px;
}


/* category */


.custom-carousel-wrapper {
    overflow: hidden;
    padding: 2rem;
}

.custom-carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    cursor: grab;
    user-select: none;
}

.custom-carousel-track::-webkit-scrollbar {
    display: none;
}

.custom-carousel-card {
    flex: 0 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    min-width: 400px;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.custom-carousel-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.custom-carousel-card h3 {
    font-size: 1rem;
    color: #666;
}

.custom-carousel-card h2 {
    margin: 0.5rem 0;
    font-size: 1.4rem;
}

.custom-carousel-card p {
    font-size: 0.95rem;
    color: #444;
}

.custom-carousel-card button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #eee;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: bold;
}