body { font-family: 'Poppins', sans-serif; background-color: #f7f4fc; }
        .textblue{
            color:rgb(0 35 172) !important;
        }
        a{
            text-decoration:none;
        }
        .navbar-custom {
            background: rgba(255, 255, 255, 0.9) !important;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
        }
        /* Logo Sizing */
        .navbar-brand img {
            max-height: 60px; /* Adjust this based on your logo proportions */
            width: auto;
        }
        /* Nav Link Hover Effect */
        .nav-link {
            color: #475569 !important;
            font-weight: 600;
            font-size: 0.95rem;
            margin: 0 12px;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: #0d6efd;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .nav-link:hover::after { width: 20px; }
        .nav-link:hover { color: #0d6efd !important; }
        .btn-download {
            background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
            color: white !important;
            border: none;
            padding: 10px 24px;
            border-radius: 12px;
            font-weight: 700;
            box-shadow: 0 4px 14px rgba(13, 110, 253, 0.2);
            transition: all 0.3s ease;
        }
        .btn-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
        }
.hero-bg-gradient {
        background: radial-gradient(circle at 80% 20%, rgba(13, 110, 253, 0.08), transparent 40%),
                    radial-gradient(circle at 10% 80%, rgba(13, 110, 253, 0.05), transparent 40%);
        background-color: #f8fafc;
        position: relative;
        overflow: hidden;
    }
    /* Adding the Hover Lift specifically for the trigger card */
    .hover-lift {
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .hover-lift:hover {
        transform: translateY(-5px);
        background-color: #ffffff !important;
        box-shadow: 0 1rem 3rem rgba(13, 110, 253, 0.15) !important;
    }
    
    /* Ensure the icon pulses slightly on card hover */
    .hover-lift:hover .bi-play-circle {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }
    /* Floating Background Icons */
    .bg-floating-icon {
        position: absolute;
        color: rgba(13, 110, 253, 0.15); /* Very subtle blue */
        z-index: 0;
        animation: float-alt 10s ease-in-out infinite;
    }

    @keyframes float-alt {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-30px) rotate(10deg); }
    }

    /* The "Intriguing" Hover Effect for the 3 Boxes */
    .info-card {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background-color:#ffffff !important;
        border: 1px solid rgba(0,0,0,0.05) !important;
        z-index: 2;
    }

    .info-card:hover {
        transform: translateY(-8px);
        border-color: #0d6efd !important;
        box-shadow: 0 15px 30px rgba(13, 110, 253, 0.1) !important;
    }

    .product-shadow {
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
    }
    /* Container adjustment to show dots below text */
.carousel-indicators-steps {
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center;
}

/* Base Dot Styling */
.carousel-indicators-steps [data-bs-target] {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: #bfdbfe !important; /* Light Blue */
    border: none !important;
    opacity: 1 !important;
    transition: all 0.3s ease-in-out !important;
}

/* Active Morphing to Rectangle */
.carousel-indicators-steps .active {
    width: 30px !important; /* Expansion */
    border-radius: 5px !important; /* Rectangular */
    background-color: #0d6efd !important; /* Bootstrap Primary Blue */
}

/* Position arrows so they don't block content */
.carousel-control-prev, .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 35%;
}
    /* 1. Subtle Theme Gradient Background */
    .bg-vibrant-gradient {
        background: radial-gradient(circle at top right, rgba(13, 110, 253, 0.05) 0%, #f8fafc 50%, rgba(139, 92, 246, 0.05) 100%);
    }

    /* 2. Glassmorphism Card Hover */
    .problem-card-vibrant {
        background: rgba(255, 255, 255, 0.7) !important;
        backdrop-filter: blur(10px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border: 1px solid rgba(255, 255, 255, 0.8) !important;
    }

    .problem-card-vibrant:hover {
        transform: translateY(-10px);
        background: #ffffff !important;
        border-color: rgba(13, 110, 253, 0.2) !important;
        box-shadow: 0 20px 40px rgba(13, 110, 253, 0.1) !important;
    }

    /* 3. Colorful Icon Boxes */
    .icon-box-vibrant {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }

    .problem-card-vibrant:hover .icon-box-vibrant {
        transform: scale(1.1) rotate(5deg);
    }

    /* Custom Color Palette Classes */
    .bg-soft-rose   { background: #fff1f2; color: #e11d48; }
    .bg-soft-indigo { background: #e0e7ff; color: #4338ca; }
    .bg-soft-emerald { background: #ecfdf5; color: #10b981; }
    .bg-soft-amber  { background: #fffbeb; color: #d97706; }
    .bg-soft-blue   { background: #eef2ff; color: #0d6efd; }
    .bg-soft-purple { background: #f5f3ff; color: #7c3aed; }

    /* Gradient Text Header */
    .text-gradient-primary {
        background: linear-gradient(90deg, #0d6efd, #6610f2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    /* 1. Colorful Section Background - Mint to Blue soft transition */
    .section-features-vibrant {
        background: linear-gradient(165deg, #f0fdfa 0%, #f8fafc 50%, #eff6ff 100%);
        border-top: 1px solid rgba(13, 110, 253, 0.05);
    }

    /* 2. Glass-Float Image Styling - No Gutter, pure margins */
    .feature-visual-vibrant {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        border-radius: 40px;
        padding: 30px;
        border: 1px solid rgba(255, 255, 255, 1);
        box-shadow: 0 30px 60px rgba(13, 110, 253, 0.08);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .feature-visual-vibrant:hover {
        transform: translateY(-15px) rotate(1deg);
        box-shadow: 0 40px 80px rgba(13, 110, 253, 0.12);
    }

    /* 3. Colorful Icon Pill Accents */
    .feat-pill-icon {
        width: 44px;
        height: 44px;
        background: #ffffff;
        color: #0d6efd;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(13, 110, 253, 0.1);
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .pill-hover-trigger:hover .feat-pill-icon {
        background: #0d6efd;
        color: #ffffff;
        transform: scale(1.1);
    }

    /* Glass-style Spec Card */
    .spec-card {
        background: #f8fafc;
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 24px;
        padding: 40px;
        transition: all 0.3s ease;
        height: 100%;
    }

    .spec-card:hover {
        background: #ffffff;
        border-color: #0d6efd;
        box-shadow: 0 20px 40px rgba(13, 110, 253, 0.05);
    }

    /* Versatile Tag System */
    .version-tag {
        display: inline-block;
        padding: 6px 14px;
        background: #ffffff;
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 10px;
        font-size: 0.85rem;
        font-weight: 600;
        color: #475569;
        margin: 4px;
        transition: all 0.2s ease;
    }

    .spec-card:hover .version-tag {
        border-color: rgba(13, 110, 253, 0.2);
        color: #0d6efd;
    }

    .spec-icon-header {
        width: 50px;
        height: 50px;
        background: #0d6efd;
        color: white;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        box-shadow: 0 10px 20px rgba(13, 110, 253, 0.15);
    }
    /* 1. Deep Bootstrap Navy Background */
    .section-engine-sapphire {
        background: linear-gradient(180deg, #051b35 0%, #020c1a 100%);
        position: relative;
        overflow: hidden;
    }

    /* 2. Primary Blue Animated Rings */
    .ring {
        position: absolute;
        border-radius: 50%;
        /* Using Bootstrap Primary Blue with low opacity */
        border: 2px dashed rgba(13, 110, 253, 0.4); 
        animation: rotate-engine 20s linear infinite;
        box-shadow: 0 0 20px rgba(13, 110, 253, 0.1);
    }
    .ring-1 { width: 220px; height: 220px; animation-duration: 15s; }
    .ring-2 { width: 320px; height: 320px; animation-duration: 25s; animation-direction: reverse; border-color: rgba(13, 110, 253, 0.2); }

    @keyframes rotate-engine {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* 3. The Sapphire Hub */
    .core-hub-sapphire {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        z-index: 10;
        /* Primary Blue Glow */
        box-shadow: 0 0 60px rgba(13, 110, 253, 0.5); 
        border: 4px solid #0d6efd;
    }

    /* 4. Deep-Sea Glass Cards */
    .card-sapphire-glass {
        background: rgba(255, 255, 255, 0.03) !important;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(13, 110, 253, 0.2) !important;
        transition: all 0.4s ease;
    }

    .card-sapphire-glass:hover {
        transform: translateY(-8px);
        background: rgba(13, 110, 253, 0.08) !important;
        border-color: #0d6efd !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }

    /* Icon Circles with Primary Accents */
    .icon-primary-glow {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(13, 110, 253, 0.15);
        color: #0067ff;
        font-size: 1.4rem;
        transition: 0.3s;
    }

    .card-sapphire-glass:hover .icon-primary-glow {
        background: #0d6efd;
        color: #ffffff;
        box-shadow: 0 0 20px rgba(13, 110, 253, 0.6);
    }
    .tech-bg { background-color: #fbfcfd; }

    /* Requirement Cards */
    .req-card {
        background: #ffffff;
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 24px;
        padding: 35px;
        height: 100%;
        transition: all 0.3s ease;
    }

    /* Highlighted Download Card */
    .download-card-highlight {
        border: 2px solid #198754; /* Success Green */
        box-shadow: 0 15px 40px rgba(25, 135, 84, 0.08);
    }

    /* Requirement List Styling */
    .req-list { list-style: none; padding-left: 0; }
    .req-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 15px;
        font-size: 0.9rem;
        color: #475569;
    }
    .req-list li::before {
        content: "\F272"; /* Bootstrap Icon Check */
        font-family: "bootstrap-icons";
        position: absolute;
        left: 0;
        color: #0d6efd;
        font-weight: bold;
    }

    .spec-label { font-weight: 700; color: #1e293b; }
    .spec-value { float: right; font-weight: 800; color: #0d6efd; }

    /* Footer Action Bar */
    .action-bar-footer {
        background: #ffffff;
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 15px;
        padding: 20px;
    }
    /* Premium Styling - Minimal Custom CSS */
    .comp-container {
        border: 1px solid #dee2e6;
        overflow: hidden;
    }

    /* Soft Blue Tint for Pro Column */
    .bg-pro-soft {
        background-color: rgba(13, 110, 253, 0.05) !important;
    }

    /* Hover effect for rows */
    .row-hover:hover {
        background-color: #fbfcfd;
    }

    /* Mobile Responsive Wrapper */
    .table-responsive-custom {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .min-w-600 {
        min-width: 700px;
    }

    /* Custom Status Pills */
    .badge-soft-gray {
        background-color: #f1f5f9;
        color: #64748b;
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .badge-soft-blue {
        background-color: rgba(13, 110, 253, 0.15);
        color: #0d6efd;
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    /* Essential behavior styling not available in native Bootstrap */
    .faq-sticky-top {
        top: 100px;
    }

    /* Accordion Hover & Open Effects */
    .accordion-item-custom {
        transition: all 0.3s ease;
        border: 1px solid #dee2e6 !important;
    }

    .accordion-item-custom:hover {
        border-color: #0d6efd !important;
        box-shadow: 0 10px 20px rgba(13, 110, 253, 0.05) !important;
    }

    /* Keep the "Opened" color effect */
    .accordion-button:not(.collapsed) {
        background-color: white;
        color: #0d6efd !important;
    }

    /* Icon Circle Logic */
    .icon-box-faq {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* 1. Carousel Navigation & Indicators */
    .testimonial-card {
        background: #ffffff;
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 24px;
        position: relative;
    }

    /* Rectangular Indicators */
    .carousel-indicators [data-bs-target] {
        width: 30px;
        height: 6px;
        border-radius: 3px;
        background-color: #ffffff;
        margin: 0 5px;
    }

    /* 2. Success Metric Bar Styling */
    .metric-bar {
        background: #ffffff;
        border: 1px solid rgba(13, 110, 253, 0.1);
        border-radius: 20px;
        transition: all 0.3s ease;
    }
    .divider-end { border-right: 1px solid #eee; }

    /* Animated Status Dot */
    .status-pulse {
        width: 10px; height: 10px;
        background-color: #198754;
        border-radius: 50%;
        display: inline-block;
        animation: pulse-green 2s infinite;
    }

    @keyframes pulse-green {
        0% { box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(25, 135, 84, 0); }
        100% { box-shadow: 0 0 0 0 rgba(25, 135, 84, 0); }
    }

    /* Progress Bar */
    .progress-custom { height: 10px; background-color: #e9ecef; border-radius: 10px; }
    .progress-fill-custom {
        width: 99%;
        background: linear-gradient(90deg, #0d6efd 0%, #00d4ff 100%);
        border-radius: 10px;
    }
    /* Vibrant Rating Cards with Right-Aligned Icons */
    .rating-card-filled {
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        transition: all 0.3s ease;
        position: relative;
    }

    /* Big Score Styling */
    .rating-score-big {
        font-size: 2.8rem;
        line-height: 1;
        font-weight: 800;
    }

    /* Soft background accents */
    .bg-google-soft { background-color: #f0f7ff; }
    .bg-user-soft { background-color: #f0fff4; }

    /* Vertical divider */
    .rating-divider {
        width: 1px;
        background-color: rgba(0, 0, 0, 0.1);
        height: 50px;
        margin-right: 20px;
    }

    /* Satisfaction Progress refined */
    .satisfaction-card-vibrant {
        background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    }
    /* Theme-consistent Deep Navy - Essential for branding */
    .bg-theme-dark {
        background-color: #1a202c !important;
    }

    /* Hover Animation - Kept as requested */
    .footer-link-hover {
        transition: all 0.3s ease;
        display: inline-block;
        text-decoration: none;
    }

    .footer-link-hover:hover {
        color: #ffffff !important;
        transform: translateX(5px);
    }

    .link-chevron {
    text-decoration: none;
}

.link-chevron::before {
    content: '\F285'; 
    font-family: "bootstrap-icons";
    font-size: 0.7rem;
    color: #ffffff;
    /* This is the key: give the icon a fixed width and margin */
    /* so the text starts exactly at the same spot every time */
    min-width: 1.2rem; 
    margin-top: 5px; /* Adjust this to align vertically with your font size */
    display: inline-block;
}
    .bg-client{
    background: #0070ba url(https://www.recovery-tools.org/assets/img/bg/clients.webp) no-repeat;
    background-repeat: repeat;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    }

/* HOME PAGE CSS */
/* Default state (Mobile & Tablet < 992px) */
.bg-home {
    /* Only the gradient is visible here */
    background: linear-gradient(90deg, #001a35 0%, #003050 100%);
    background-size: cover;
    color: #fff;
}

/* Large devices (Desktop >= 992px) */
@media (min-width: 992px) {
    .bg-home {
        /* Image + Gradient Overlay active only on desktop */
        background: 
            linear-gradient(90deg, rgba(0, 48, 80, 0.8) 0%, rgba(0, 48, 80, 0.4) 50%, rgba(0, 48, 80, 0) 100%),
            #0070ba url('https://www.recovery-tools.org/assets/img/bg/bannner.webp') no-repeat;
        background-position: center right;
        background-size: cover;
    }
}

/* Custom Letter Spacing Utility */
.ls-wide {
    letter-spacing: 2px;
}
/* Unique Award Card Highlight */
.card-hover-highlight {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-highlight:hover {
    transform: translateY(-8px);
    /* Vibrant blue border to match your Sapphire theme */
    border-color: #0061ff !important; 
    box-shadow: 0 1rem 3rem rgba(0, 97, 255, 0.12) !important;
}
/* Fancy Sidebar Accent Hover */
.card-hover-fancy {
    transition: all 0.3s ease-in-out;
    cursor: default;
}

.card-hover-fancy:hover {
    transform: translateX(15px); /* Nudges right for a 'fancy' interactive feel */
    background-color: #ffffff !important;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08) !important;
}

/* Specific border color intensifiers on hover */
.card-hover-fancy:hover.border-primary { border-color: #004dc7 !important; }
.card-hover-fancy:hover.border-info { border-color: #00b4d8 !important; }
.card-hover-fancy:hover.border-success { border-color: #198754 !important; }

/*ABOUT US PAGE CSS*/
/* Container Logic */
.team-member-wrapper {
    z-index: 1;
    /* Ensure the wrapper has a consistent height */
    height: 100%; 
}

/* The Background Square */
.team-accent-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    background-color: #0061ff;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotate(0deg);
}

/* Main Card Transition */
.team-main-card {
    transition: all 0.4s ease;
    background: #ffffff;
    /* This ensures the card doesn't physically grow */
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Social Reveal Logic - FIXED */
.team-social-links {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 5px 0;
    /* Start hidden and pushed down */
    transform: translateY(100%); 
    opacity: 0;
    transition: all 0.4s ease;
    border-top: 1px solid #f8f9fa;
    z-index: 2;
}

/* Hover Effects */
.team-member-wrapper:hover .team-accent-frame {
    transform: rotate(-8deg) scale(1.05);
    opacity: 0.2;
}

.team-member-wrapper:hover .team-main-card {
    /* We move the card UP, but because it's translated, 
       it doesn't affect the position of other rows */
    transform: translateY(-15px);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 97, 255, 0.15) !important;
}

.team-member-wrapper:hover .team-social-links {
    /* Slide it up into view inside the card bottom */
    transform: translateY(0);
    opacity: 1;
}

.aspect-ratio-square {
    aspect-ratio: 1 / 1;
}
/*CONTACT PAGE CSS*/
/* Contact Form Specifics */
.form-control:focus {
    background-color: #ffffff !important;
    border-color: #0061ff !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 97, 255, 0.1);
    color: #001a35;
}

/* Ensure inputs are deep enough for the high-end feel */
.form-control-lg {
    font-size: 1rem;
    padding: 0.85rem 1.25rem;
}


/*PRODUCTS PAGE CSS*/
/* Prevent Compression on Small Screens */
.w-md-auto {
    @media (min-width: 768px) {
        width: auto !important;
    }
}
/* 3D Floating Animation for the Product Box */
.product-floating-animation {
    animation: floatProduct 5s ease-in-out infinite;
}

@keyframes floatProduct {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Link Hover */
.hover-white:hover {
    color: #ffffff !important;
    transition: color 0.3s ease;
}


/* Sidebar Link Hover Effect */
.hover-primary {
    transition: all 0.3s ease;
}

.hover-primary:hover {
    color: #0061ff !important;
    padding-left: 5px;
}