/* Hero Custom Styling -------------- */

.z-index-1 {
    z-index: 1;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

.tracking-tight {
    letter-spacing: -0.05em;
}

.hero-btn-primary {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 202, 240, 0.2);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(13, 202, 240, 0.4) !important;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.glass-card {
    background: rgba(20, 25, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-glow {
    box-shadow: 0 0 10px rgba(13, 202, 240, 0.8);
}

.float-anim-1 {
    animation: float1 8s ease-in-out infinite;
}

.float-anim-2 {
    animation: float2 10s ease-in-out infinite reverse;
}

@keyframes float1 {
    0% {
        transform: translateY(0px) rotate(2deg);
    }

    50% {
        transform: translateY(-20px) rotate(0deg);
    }

    100% {
        transform: translateY(0px) rotate(2deg);
    }
}

@keyframes float2 {
    0% {
        transform: translateY(0px) rotate(-3deg);
    }

    50% {
        transform: translateY(-15px) rotate(-1deg);
    }

    100% {
        transform: translateY(0px) rotate(-3deg);
    }
}

/* Responsive Typography and Layout --------- */

@media (max-width: 1024px) {
    .responsive-btn-pad {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }

    .responsive-btn-pad i {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem !important;
    }

    .hero-content-pad {
        margin-top: 2rem !important;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.8rem !important;
    }

    .hero-subtitle {
        font-size: 1.15rem !important;
        margin-bottom: 2.5rem !important;
    }

    .responsive-btn-pad {
        padding: 0.9rem 1.5rem !important;
        font-size: 1.05rem !important;
        width: 85% !important;
        margin: 0 auto !important;
    }

    .responsive-btn-pad i {
        font-size: 1.3rem !important;
    }

    .hero-content-pad {
        margin-top: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.3rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    .responsive-btn-pad {
        padding: 0.8rem 1.2rem !important;
        font-size: 1rem !important;
        width: 100% !important;
    }

    .responsive-btn-pad i {
        font-size: 1.15rem !important;
    }

    .hero-content-pad {
        margin-top: 0 !important;
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    /* Trust Indicators Mobile Fix */
    .trust-indicators-container {
        justify-content: center !important;
        gap: 0 !important;
        flex-wrap: nowrap !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    .trust-indicators-container .col-auto {
        flex: 1 1 33.333% !important;
        max-width: 33.333% !important;
        min-width: 33.333% !important;
        margin: 0 !important;
        text-align: center !important;
        padding: 0 0.1rem !important;
    }

    .trust-indicators-container h2 {
        font-size: 1.15rem !important;
        margin-bottom: 0.15rem !important;
    }

    .trust-indicators-container span {
        font-size: 0.5rem !important;
        letter-spacing: 0.02em !important;
        display: block;
        line-height: 1.2;
        white-space: normal;
    }
}

/* Catchy Premium Feature Card Styling (Dark on Light) ------------- */

.feature-card-catchy {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
    z-index: 2;
}

.feature-card-bg-catchy {
    background: radial-gradient(circle at top right, rgba(13, 202, 240, 0.15) 0%, transparent 60%);
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.feature-card-catchy:hover {
    transform: translateY(-12px);
    border-color: rgba(13, 202, 240, 0.5);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.2), 0 0 25px rgba(13, 202, 240, 0.2);
    z-index: 3;
}

.feature-card-catchy:hover .feature-card-bg-catchy {
    opacity: 1;
    background: radial-gradient(circle at center, rgba(13, 202, 240, 0.2) 0%, transparent 70%);
}

.feature-icon-catchy {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, #0dcaf0 0%, #055160 100%);
    box-shadow: 0 10px 20px rgba(13, 202, 240, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card-catchy:hover .feature-icon-catchy {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 30px rgba(13, 202, 240, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive Scaling for Cards ----------------- */

@media (max-width: 991.98px) {
    .feature-card-catchy {
        padding: 2.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .feature-card-catchy {
        padding: 2rem !important;
    }

    .feature-icon-catchy {
        width: 65px;
        height: 65px;
        margin-bottom: 1rem !important;
    }

    .feature-icon-catchy i {
        font-size: 1.5rem !important;
    }

    .feature-card-catchy h3 {
        font-size: 1.25rem !important;
    }

    .feature-card-catchy p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 480px) {
    .feature-card-catchy {
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }

    .feature-icon-catchy {
        width: 55px;
        height: 55px;
        margin-bottom: 0.75rem !important;
    }

    .feature-icon-catchy i {
        font-size: 1.25rem !important;
    }

    .feature-card-catchy h3 {
        font-size: 1.15rem !important;
        margin-bottom: 0.75rem !important;
    }

    .feature-card-catchy p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
}

/* Infinite Brand Ticker Styles ----------------- */

.brand-ticker-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
}

.brand-ticker {
    display: inline-flex;
    animation: ticker 25s linear infinite;
}

.brand-ticker:hover {
    animation-play-state: paused;
}

.brand-slot {
    min-width: 180px;
    height: 60px;
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand-slot:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(13, 202, 240, 0.15) !important;
    border-color: rgba(13, 202, 240, 0.3) !important;
}

.brand-slot span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-fade-left,
.ticker-fade-right {
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.ticker-fade-left {
    background: linear-gradient(to right, #f8f9fa 0%, transparent 100%);
}

.ticker-fade-right {
    background: linear-gradient(to left, #f8f9fa 0%, transparent 100%);
}

/* Our Services Section Styling ------------------------ */

.bento-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(13, 202, 240, 0.2);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(13, 202, 240, 0.08), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    box-shadow: 0 8px 15px rgba(15, 23, 42, 0.2);
    transition: all 0.3s ease;
    z-index: 1;
}

/* Feature specific gradient overrides ---------------- */

.bento-card:hover .bento-icon-box {
    background: linear-gradient(135deg, #0dcaf0 0%, #055160 100%);
    box-shadow: 0 10px 20px rgba(13, 202, 240, 0.3);
    transform: scale(1.05);
}

.bento-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.bento-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Large bento specific adjustments ------------- */

.bento-card.large-bento .bento-title {
    font-size: 1.75rem;
}

.bento-card.large-bento .bento-desc {
    font-size: 1.05rem;
}

/* Inline styles extracted to CSS for Desktop ----------- */

.bento-icon-lg {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.bento-desc-lg {
    max-width: 85%;
}

.bento-globe-deco {
    font-size: 18rem;
    bottom: -50px;
    right: -40px;
    z-index: 0;
    opacity: 0.04;
    transform: rotate(-15deg);
    pointer-events: none;
}

/* ABSOLUTE MOBILE OVERRIDES L, M, S         */

@media (max-width: 767.98px) {

    div.bento-card {
        padding: 1.25rem !important;
        border-radius: 1rem !important;
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        position: relative !important;
        background: #ffffff !important;
        z-index: 10 !important;
    }

    div.bento-card div.bento-icon-box {
        width: 48px !important;
        height: 48px !important;
        min-height: 48px !important;
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

    div.bento-card h3.bento-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
        display: block !important;
        width: 100% !important;
        flex-shrink: 0 !important;
        color: #1e293b !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

\    div.bento-card p.bento-desc {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        margin-bottom: 0 !important;
        color: #64748b !important;
        position: relative !important;
        z-index: 20 !important;
    }

    div.bento-card i.bento-globe-deco {
        display: none !important;
    }
}

@media (max-width: 480px) {
    div.bento-card {
        padding: 1rem !important;
        height: 260px !important;
        min-height: 260px !important;
        max-height: 260px !important;
    }

    div.bento-card div.bento-icon-box {
        width: 42px !important;
        height: 42px !important;
        min-height: 42px !important;
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }

    div.bento-card h3.bento-title {
        font-size: 1rem !important;
    }

    div.bento-card p.bento-desc {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
    }
}