﻿/* ===== COLAID Brand Override ===== */
:root {
    --colaid-primary: #7B2CFF;
    --colaid-primary-dark: #4A189C;
    --colaid-soft: rgba(123, 44, 255, 0.18);
    --colaid-glow: rgba(123, 44, 255, 0.35);
}

/* Links */
a:hover, a:focus {
    color: var(--colaid-primary) !important;
}

/* ===== Primary Buttons ===== */

.btn {
    background: linear-gradient(135deg, #7B2CFF, #5B1FCC) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 22px rgba(123, 44, 255, 0.35);
}

    /* Hover Effect */

    .btn:hover {
        transform: translateY(-2px);
        background: linear-gradient(135deg, #7B2CFF, #5B1FCC) !important;
        color: #ffffff !important;
        box-shadow: 0 12px 30px rgba(123, 44, 255, 0.5);
    }

    /* Click (pressed) state */

    .btn:active {
        transform: translateY(0);
        box-shadow: 0 6px 16px rgba(123, 44, 255, 0.35);
    }


    /* Secondary Button */

    .btn.btn-alt {
        background: transparent !important;
        color: #ffffff !important;
        border: 2px solid rgba(255, 255, 255, 0.6) !important;
        border-radius: 10px;
        padding: 12px 28px;
        transition: all 0.25s ease;
    }

        /* Hover Secondary */

        .btn.btn-alt:hover {
            border-color: #7B2CFF !important;
            color: #7B2CFF !important;
            background: rgba(123, 44, 255, 0.08) !important;
        }


/* Navbar active link / underline effect */
.navbar-nav .nav-item a.active,
.navbar-nav .nav-item a:hover {
    color: var(--colaid-primary) !important;
}

/* Hero background (make it purple-ish) */
.hero-area {
    background: radial-gradient(circle at 30% 20%, rgba(123, 44, 255, 0.22) 0%, rgba(0,0,0,0) 40%), linear-gradient(180deg, #0b0720 0%, #070413 100%) !important;
}

/* Cards / feature boxes hover highlight */
.single-feature:hover {
    border-color: var(--colaid-primary) !important;
    box-shadow: 0 12px 30px rgba(123, 44, 255, 0.18) !important;
}

/* Icons */
.single-feature i {
    color: var(--colaid-primary) !important;
}

/* Pricing highlight (if template uses active class) */
.single-table:hover .btn,
.single-table .btn:hover {
    background: var(--colaid-primary) !important;
}

/* Scroll-top button */
.scroll-top {
    background: var(--colaid-primary) !important;
}

    .scroll-top:hover {
        background: var(--colaid-primary-dark) !important;
    }

.navbar-brand img {
    filter: drop-shadow(0 8px 18px rgba(123, 44, 255, 0.35));
}

/* ===== Feature Cards Styling ===== */

.single-feature {
    background: #ffffff;
    border-radius: 14px;
    padding: 32px 24px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

    /* Icon container */

    .single-feature .icon-box {
        width: 58px;
        height: 58px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #7B2CFF, #5B1FCC) !important;
        margin-bottom: 18px;
    }

    .single-feature i {
        font-size: 26px;
        color: #ffffff !important;
    }

    /* Hover effect */

    .single-feature:hover {
        transform: translateY(-6px);
        border-color: rgba(123, 44, 255, 0.35);
        box-shadow: 0 18px 40px rgba(123, 44, 255, 0.15);
    }

    /* Titles */

    .single-feature h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    /* Text */

    .single-feature p {
        font-size: 14px;
        line-height: 1.7;
        color: #555;
    }


/* ===== Footer Styling ===== */

.footer {
    background: linear-gradient(180deg, #080414 0%, #04020a 100%);
    color: rgba(255,255,255,0.85);
}

/* Top spacing */

.footer-top {
    padding: 70px 0 40px;
}

/* Logo */

.footer .logo img {
    max-width: 150px;
    margin-bottom: 18px;
}

/* Text */

.footer p {
    font-size: 14px;
    line-height: 1.7;
}

/* Footer titles */

.footer h3 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 600;
}

/* Links */

.footer a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    transition: all 0.2s ease;
}

    .footer a:hover {
        color: #7B2CFF;
    }

/* Social icons */

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 15px;
}

    .footer-social li a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(123, 44, 255, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
    }

        .footer-social li a:hover {
            background: #7B2CFF;
        }

/* Contact list */

.f-contact ul li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.f-contact i {
    color: #7B2CFF;
    margin-top: 3px;
}

/* Bottom bar */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    font-size: 13px;
}
