.nav-link {
    @apply text-gray-700 font-semibold text-[15px] transition-colors duration-300 relative;
}

/* Custom Underline Effect */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #ff7a18;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ff7a18;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #ff7a18;
}

.nav-link.active::after {
    width: 100%;
}

.whatsapp-float {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.slide.active {
    display: block !important;
}

.slide {
    display: none;
}

.dot.active {
    @apply bg-white;
}


.btn-custom-hover {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Sundor transition-er jonno */
    display: inline-block;
}

.btn-custom-hover:hover {
    background-color: #ff7a18 !important;
    /* Apnar dewa color */
    transform: translateY(-5px);
    /* Ektu upore uthbe (Translation) */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    /* Ektu shadow effect */
}

.partner-card {
    border: 1px solid transparent;
}

.partner-card:hover {
    border-color: #ff7a18;
    /* Apnar favorite orange color ta hover-e trigger hobe */
    color: #ff7a18;
    transform: scale(1.05);
    /* Ektu boro hobe hover korle */
}

/* Button Animation & Design */
.btn-read-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background-color: #ff7a18;
    /* Apnar favorite color */
    color: white;
    font-weight: 700;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(255, 122, 24, 0.2);
}

.btn-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-read-more:hover {
    background-color: #2563eb;
    /* Blue colour transform */
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.btn-read-more:hover::before {
    left: 100%;
}

.btn-read-more:hover svg {
    transform: translateX(5px);
}

.btn-read-more svg {
    transition: transform 0.3s ease;
}

/* Image Animation */
@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce-slow {
    animation: bounce-slow 4s infinite ease-in-out;
}

.smart-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #1e293b;
    color: white;
    padding: 12px 32px;
    border-radius: 99px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.smart-btn:hover {
    background: #ff7a18;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 122, 24, 0.4);
}

.smart-btn .icon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 5px;
    transition: transform 0.3s ease;
}

.smart-btn:hover .icon {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.2);
}

.why-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: white;
    color: #1e40af;
    /* Blue-800 */
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.125rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-btn-primary:hover {
    background-color: #ff7a18;
    /* Apnar favorite orange */
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 122, 24, 0.4);
}

.cta-btn-primary svg {
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover svg {
    transform: translateX(5px);
}

.cat-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.875rem;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-bottom: 2px solid #ff7a18;
    padding-bottom: 4px;
}

.category-card:hover .cat-link {
    color: #ff7a18;
    gap: 12px;
}
