/* Color Palette */
:root {
    --navy: #0f172a;
    --slate: #475569;
    --brand-primary: #2563eb;
    --primary-light: rgba(37, 99, 235, 0.1);
}

.text-navy {
    color: var(--navy);
}

.text-slate {
    color: var(--slate);
}

.text-primary-light {
    color: var(--primary-light);
}

/* Process Card Styling */
.process-card-light {
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent !important;
}

    .process-card-light:hover {
        transform: translateY(-5px);
        border-bottom: 4px solid var(--brand-primary) !important;
    }

    .process-card-light .display-4 {
        line-height: 1;
        -webkit-text-stroke: 1px var(--brand-primary);
        opacity: 0.3;
    }

    .process-card-light:hover .display-4 {
        opacity: 1;
        color: var(--brand-primary);
        -webkit-text-stroke: 0px;
    }

/* Icons */
.icon-box i {
    transition: transform 0.3s ease;
}

.service-light-card:hover .icon-box i {
    transform: scale(1.1);
}





/* Service Card Adjustments for many items */
.service-light-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-light-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08) !important;
    background: #fdfdfd;
}

.service-features-light li {
    font-size: 0.875rem;
    color: var(--slate);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.bg-primary-soft {
    background-color: rgba(37, 99, 235, 0.08);
}

/* 1. Force dark text by default on the light badge */
.tech-badge-light {
    background-color: #f8f9fa; /* Light gray background */
    color: #212529 !important; /* Dark text (overrides Bootstrap .badge white) */
    border: 1px solid #dee2e6; /* Optional: adds definition */
    cursor: pointer; /* Shows it's interactive */
    transition: all 0.3s ease; /* Smooth color transition */
}

/* 2. Turn text blue and slightly lift the badge on hover */
.tech-badge-light:hover {
    color: #0d6efd !important; /* Bootstrap Primary Blue */
    border-color: #0d6efd; /* Optional: Blue border on hover */
    background-color: #fff; /* Optional: White bg on hover */
    transform: translateY(-2px); /* subtle lift effect */
}

/* 3. Ensure the icon inside inherits the color change */
.tech-badge-light i {
    color: white;
}

/* Custom bright green for dark mode */
.text-success-light {
    color: #8af79c !important; /* A bright, neon-like green */
}

/* Process Steps (Light) */
.process-step-light {
    border-right: 1px solid #e2e8f0;
}

.step-number-light {
    font-size: 3rem;
    font-weight: 800;
    color: #e2e8f0; /* Light gray outline */
    transition: color 0.3s ease;
}

.process-step-light:hover .step-number-light {
    color: var(--brand-primary);
}

/* Typography Overrides for Light Theme */
.text-secondary {
    color: #475569 !important; /* Professional slate gray */
}

/* Tech Stack Card Styling */
.tech-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    filter: grayscale(100%); /* Keeps it professional and uniform */
    opacity: 0.7;
}

    .tech-card:hover {
        filter: grayscale(0%); /* Pops to color on hover */
        opacity: 1;
        transform: scale(1.05);
        background: #ffffff;
        border-color: var(--brand-primary);
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
    }

.bg-navy {
    background-color: #0f172a;
}

/* Custom Form Styling */
.custom-input {
    background-color: #fcfdfe;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--navy);
    transition: all 0.3s ease;
}

    .custom-input:focus {
        background-color: #ffffff;
        border-color: var(--brand-primary);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        outline: none;
    }

.form-label {
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

/* Sidebar Hover Effect */
.col-lg-5 .d-flex {
    transition: transform 0.3s ease;
}

    .col-lg-5 .d-flex:hover {
        transform: translateX(10px);
    }

/* Success Animation Styles */
.success-check-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(37, 99, 235, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.bg-slate-50 {
    background-color: #f8fafc;
}

.border-dashed {
    border-style: dashed !important;
}

.btn-navy {
    background-color: #0f172a;
    color: white;
}

.btn-navy:hover {
    background-color: #1e293b;
    color: white;
}
/* HoneyPot Anti-Spam Hidden Field */
.hp-field {
    display: none !important;
    visibility: hidden !important;
    position: absolute;
    left: -9999px;
}

/*  Kendo Grid - Inquery */
.bi-star-fill.text-warning {
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5));
    animation: starPulse 2s infinite;
}

@keyframes starPulse {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

/*  Solutions page */

.solution-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent;
}

    .solution-card:hover {
        transform: translateY(-10px);
        border-color: rgba(37, 99, 235, 0.2);
        box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.12) !important;
    }

.icon-sq {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-navy {
    background-color: #020617;
}

/* Case Study Page */
.bg-navy {
    background-color: #020617;
}

.text-primary-light {
    color: #93c5fd;
}

.bg-slate-50 {
    background-color: #f8fafc;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #cbd5e1;
}

.tracking-widest {
    letter-spacing: 0.1em;
}
.next-project-hover {
    transition: background-color 0.4s ease;
}

    .next-project-hover:hover {
        background-color: #f1f5f9 !important;
    }

    .next-project-hover i.bi {
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .next-project-hover:hover i.bi {
        transform: scale(1.1) rotate(-5deg);
        opacity: 0.2 !important;
    }

.bg-navy {
    background-color: #020617;
}
.architecture-container svg .svc-box {
    animation: boxPulse 3s infinite ease-in-out;
}

@keyframes boxPulse {
    0% {
        stroke-width: 2px;
        opacity: 1;
    }

    50% {
        stroke-width: 4px;
        opacity: 0.8;
    }

    100% {
        stroke-width: 2px;
        opacity: 1;
    }
}

.architecture-container {
    max-width: 900px;
    margin: 0 auto;
}

/* About Page */
.icon-sq-lg {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem; /* Larger icons for values */
}

.values-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0; /* Subtle border for definition */
}

    .values-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }

.tracking-widest {
    letter-spacing: 0.1em;
}
/* Re-using this for consistency */

.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }

    .team-card img {
        width: 150px; /* Adjust size as needed */
        height: 150px;
        object-fit: cover;
    }

/* Ensure these are present from previous sections */
.icon-sq-lg {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.bg-primary-soft {
    background-color: rgba(37, 99, 235, 0.1);
}

.text-navy {
    color: #0f172a;
}

.text-primary-light {
    color: #f9faff /*#93c5fd */;
}

.bg-navy {
    background-color: #020617;
}
/* Use the darker navy for sections */

/* Login Page */
/* Global matching styles */
.custom-input {
    height: 75px !important;
    padding-top: 1.7rem !important;
    font-size: 1.1rem !important;
}

.form-floating > label {
    padding: 1.25rem !important;
}

.bg-navy {
    background-color: #020617 !important;
}

.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .hover-lift:hover {
        transform: translateY(-2px);
        box-shadow: 0 1rem 3rem rgba(37, 99, 235, 0.25) !important;
    }

/* Maintain the 40/60 split on wide screens */
@@media (min-width: 992px) {
    .col-lg-5 {
        width: 40%;
    }

    .col-lg-7 {
        width: 60%;
    }
}

/* Register new user page*/
/* Custom spacing to fix the 'tiny' feel */
.custom-input {
    height: 75px !important;
    padding-top: 1.7rem !important;
    font-size: 1.1rem !important;
}

.form-floating > label {
    padding: 1.25rem !important;
}

.bg-navy {
    background-color: #4b4e4e !important;
}

.border-dashed {
    border-style: dashed !important;
}

/* Column Ratio adjustment for wide screens */
@@media (min-width: 992px) {
    .col-lg-5 {
        width: 40%;
    }

    .col-lg-7 {
        width: 60%;
    }
}