/* Back To Top Button */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* WhatsApp Button */
/* WhatsApp Floating Button Styling */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 84px;
    right: 21px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    background-color: #20ba5a;
    color: #FFF;
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.25);
}

/* Icon Alignment */
.whatsapp-icon {
    margin-top: 0;
}

/* Responsive adjustment for mobile screens */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 85px;
        right: 23px;
        font-size: 25px;
    }
}


/* Hero section */
/* Premium Hero Core Layout */
.premium-hero-section {
    background: radial-gradient(circle at 80% 80%, #200b3b 0%, #7a6ad8 60%);
    background: var(--gradient) !important;
    min-height: 100vh;
    padding: 120px 0 80px 0;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    font-family: 'Inter', sans-serif;
    /* Fallback to clean sans-serif */
}

/* Background Linear Thin Accent Line mimicking the layout asset */
.premium-hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 80%;
    height: 120%;
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    transform: rotate(-25deg);
    pointer-events: none;
}

/* Glassmorphic Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: #00e676;
    /* Vibrant active green */
    border-radius: 50%;
    box-shadow: 0 0 8px #00e676;
}

/* Typography matching high-fidelity graphic scale */
.hero-title {
    font-family: 'Conthrax', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.hero-description {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
}

/* High Fidelity Buttons */
.btn-premium-primary {
    background-color: #ffffff;
    color: #0b0712 !important;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-premium-primary:hover {
    background-color: transparent;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.btn-premium-outline {
    background-color: transparent;
    color: #ffffff !important;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-premium-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* 3D Floating Graphic Treatment */
.hero-graphic-wrapper {
    position: relative;
    animation: floatingArt 6s ease-in-out infinite;
}

.hero-3d-graphic {
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(147, 51, 234, 0.25));
}

@keyframes floatingArt {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Sleek Slide Switchers mimicking layout indices */
.hero-tabs-navigation {
    border: none !important;
    gap: 15px;
}

.hero-tabs-navigation .nav-link {
    background: transparent !important;
    border: none;
    color: rgba(255, 255, 255, 0.3) !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
}

.hero-tabs-navigation .nav-link.active {
    color: #ffffff !important;
}

.hero-tabs-navigation .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #a855f7;
    transition: width 0.3s ease;
}

.hero-tabs-navigation .nav-link.active::after {
    width: 100%;
}

/* Mobile & Tablet Fine-Tuning */
@media (max-width: 991.98px) {
    .premium-hero-section {
        padding: 100px 0 60px 0;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-3d-graphic {
        max-height: 340px;
        margin-top: 20px;
    }
}

/* Custome */
.text-purple {
    color: var(--purple) !important;
}

.text-blue {
    color: var(--blue) !important;
}

/* Breadcrumb */
/* Custom styling for a polished, professional look */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    font-size: 0.95rem;
    /* Slightly smaller for hierarchy */
    letter-spacing: 0.5px;
}

/* Custom separator (e.g., a sleek forward slash or chevron) */
.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    /* Subtle white separator */
    content: "/";
}

/* Elegant text state for the inactive links */
.text-muted-custom {
    color: rgba(255, 255, 255, 0.7);
}

.text-muted-custom:hover {
    color: #fff;
    /* Smooth highlight color on hover */
}

/* Smooth transition utility */
.transition-all {
    transition: all 0.2s ease-in-out;
}