/* slider dot css start */

ul.slick-dots {
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0px;
    list-style: none;
    right: 0;
    text-align: center;
    justify-content: center;
    margin-bottom: 20px;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 31px;
    margin: 0;
    padding: 13px 2px;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 5px;
    height: 5px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

li.slick-active button {
    border: 3px solid #ffffff87;
    border-radius: 50%;
}

.slick-dots li button:before {
    content: "•";
    font-size: 40px;
    line-height: 42px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 21px;
    height: 21px;
    text-align: center;
    opacity: 1.25;
    color: rgb(186 41 68 / 65%)
}

.slick-arrow {
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: 50px;
    width: 50px;
    height: 50px;
    margin: auto;
    background-color: transparent;
    border-radius: 60px;
    border: 1px solid #fff;
    cursor: pointer;
    outline: none;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.slick-arrow.slick-prev {
    right: 135px;
}

.slick-arrow.slick-next {
    right: 35px;
}

.slick-arrow:before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.slick-arrow:hover {
    background-color: #900000;
}

.slick-arrow.slick-prev:before {
    transform: rotate(-45deg) translate(2px, 2px);
}

.slick-arrow.slick-next:before {
    transform: rotate(135deg) translate(2px, 2px);
}

.slider-progress span.active {
    width: 100%;
}

@keyframes fadeindown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.fadeindown {
    animation: fadeindown 2s infinite;
}

/* .img-wrap{
    background: linear-gradient(-45deg, #e96e21, #e99921, #d6427a, #8731db);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
} */
/* slider dot css end */


.chy-pr-btn-3 {
    display: inline-flex;
    position: relative;
    flex: 0 0 auto;
    overflow: hidden;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;

    color: #fff;
    padding: 18px 24px;
    border-radius: 31px;
    transition: .5s cubic-bezier(0, 0, .2, 1);
    cursor: pointer
}

.chy-pr-btn-3 svg {
    margin-left: 25px
}

.chy-pr-btn-3 .text {
    position: relative;
    z-index: 1
}

.chy-pr-btn-3 svg {
    position: relative;
    z-index: 1;
    height: 1em;
}

.chy-pr-btn-3:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 77%;
    height: 100%;
    background: #e96e21;
    border-radius: 0 0 31px;
    transition: .5s cubic-bezier(0, 0, .2, 1)
}

.chy-pr-btn-3:hover {
    color: #fff;
    letter-spacing: .5px
}

.chy-pr-btn-3:hover:after {
    width: 100%
}

.aniamtion-key-1 {
    position: relative;
    animation-name: animation-1;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes animation-1 {
    0% {

        transform: translateY(0);
    }

    100% {

        transform: translateY(30px);
    }
}

/* -------------------------------------------------------------------------- */
/*                          HYPER-MODERN BORDER BEAM CARDS                      */
/* -------------------------------------------------------------------------- */
@keyframes border-beam {
    0% {
        offset-distance: 0%;
    }

    100% {
        offset-distance: 100%;
    }
}

.service-card-modern {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(to bottom, rgba(10, 34, 45, 0.4), rgba(10, 34, 45, 0.9));
    border: 1px solid rgba(65, 220, 179, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Darkening overlay for text readability */
.service-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 34, 45, 0.4), rgba(10, 34, 45, 0.9));
    z-index: 1;
    transition: opacity 0.5s ease;
}

.service-card-modern:hover::before {
    background: linear-gradient(to bottom, rgba(10, 34, 45, 0.6), rgba(10, 34, 45, 0.95));
}

.service-card-modern::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 0deg, transparent, #41dcb3, transparent 25%);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 5;
    pointer-events: none;
}

.service-card-modern:hover::after {
    opacity: 1;
    animation: border-beam 4s linear infinite;
    offset-path: rect(0% 100% 100% 0% round 40px);
}

.service-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(65, 220, 179, 0.05);
}

.spotlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--x) var(--y), rgba(65, 220, 179, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 2;
}

.service-card-modern:hover .spotlight {
    opacity: 1;
}

.glass-icon-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 3;
}

.service-card-modern:hover .glass-icon-container {
    transform: scale(1.15) rotate(10deg);
    border-color: rgba(65, 220, 179, 0.4);
    background: rgba(65, 220, 179, 0.1);
}

.service-card-image-bg {
    transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}

.service-card-modern:hover .service-card-image-bg {
    opacity: 0.5 !important;
    filter: grayscale(0.4) brightness(0.5);
    transform: scale(1.2);
}

.card-title-modern {
    background: linear-gradient(to bottom right, #fff, #41dcb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
}

.card-description {
    position: relative;
    z-index: 3;
}

.service-card-modern:hover .card-title-modern {
    filter: drop-shadow(0 0 8px rgba(65, 220, 179, 0.3));
}
