:root {
    --primary: #3c3b8b;
    --secondary: #e82e3b;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Poppins', sans-serif;
}

.bg-primary-custom {
    background: var(--primary);
}

.btn-primary-custom {
    background: var(--secondary);
    color: #fff;
}

.btn-primary-custom:hover {
    background: #c8202f;
}

/* HERO CAROUSEL */
.carousel-item {
    height: 100vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.carousel-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

@media(max-width:768px) {
    .carousel-overlay h1 {
        font-size: 2.2rem;
    }
}

/* COUNTERS */
.counter-box {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.counter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

/* SECTION */
.section-title {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.card-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

footer {
    background: linear-gradient(135deg, #1f1f3a, #2b2a6e);
    color: #cfd1ff;
    font-size: 15px;
}

footer h5,
footer h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

footer p {
    color: #cfd1ff;
    line-height: 1.7;
}

footer ul {
    padding-left: 0;
}

footer ul li {
    list-style: none;
    margin-bottom: 8px;
}

footer ul li a {
    color: #cfd1ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer ul li a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.15);
}

footer .bottom-footer a {
    color: #cfd1ff;
    margin-left: 10px;
    text-decoration: none;
}

footer .bottom-footer a:hover {
    color: var(--secondary);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    footer {
        text-align: center;
    }

    footer .bottom-footer {
        margin-top: 15px;
    }
}

.navbar-brand img {
    max-height: 30px;
}

/* HERO CAROUSEL – CONSISTENT HEIGHT */
.carousel-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 90vh;
        min-height: 520px;
    }
}

.carousel-overlay {
    background: linear-gradient(rgba(28, 27, 70, 0.75),
            rgba(28, 27, 70, 0.85));
}

.client-logo-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.client-logo-box img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo-box:hover {
    transform: translateY(-5px);
}

.client-logo-box:hover img {
    filter: grayscale(0%);
}

.industry-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.industry-card i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 15px;
    transition: all 0.35s ease;
}

.industry-card h6 {
    font-weight: 600;
    margin: 0;
    color: #333;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.industry-card:hover i {
    color: var(--secondary);
    transform: scale(1.1);
}

.expertise-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.expertise-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    transition: all 0.35s ease;
}

.expertise-card h6 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.expertise-card p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.expertise-card:hover i {
    color: var(--secondary);
    transform: scale(1.1);
}

/* TRUST BAR */
.trust-bar {
    background: #f6f7ff;
    border-bottom: 1px solid #e3e6ff;
}

.trust-item {
    padding: 15px;
}

.trust-item i {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.trust-item h6 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 14px;
    margin: 0;
    color: #555;
}

/* Mobile polish */
@media (max-width: 576px) {
    .trust-item i {
        font-size: 26px;
    }
}

/* STATS / COUNTERS */
.stats-section {
    background: linear-gradient(180deg, #f6f7ff, #ffffff);
}

.counter-box {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(232, 46, 59, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrap i {
    font-size: 30px;
    color: var(--secondary);
}

.counter {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.counter-box h6 {
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.counter-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Mobile tuning */
@media (max-width: 768px) {
    .counter {
        font-size: 2.6rem;
    }
}

/* CALL TO ACTION */
.cta-section {
    background: linear-gradient(135deg,
            var(--primary),
            #2b2a6e);
    color: #ffffff;
}

.cta-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-text {
    font-size: 1.05rem;
    color: #e6e7ff;
    max-width: 650px;
}

.btn-cta {
    background: var(--secondary);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #c8202f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/* Mobile CTA */
@media (max-width: 768px) {
    .cta-title {
        font-size: 1.9rem;
    }

    .cta-text {
        margin: 0 auto;
    }
}

/* PRODUCT PREVIEW */
.product-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card h6 {
    font-weight: 700;
    color: #222;
    margin: 0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

footer {
  background: #1f1f3a;
  color: #ccc;
}

footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #fff;
}
/* CAPABILITIES */
.capability-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.cap-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(60, 59, 139, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cap-icon i {
    font-size: 28px;
    color: var(--primary);
}

.capability-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.capability-card p {
    font-size: 0.95rem;
    color: #555;
}
/* CORE VALUES */
.value-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 14px;
    text-align: center;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.value-card i {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 15px;
}

.value-card h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    color: #555;
}
.material-card, .capability-card {
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.material-card i {
    font-size: 32px;
    color: #3c3b8b;
    margin-bottom: 10px;
}

.material-card:hover,
.capability-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
