/* --- Brand Variables & Typography --- */
:root {
    --brand-orange: #f26522; 
    --brand-dark: #1a1a1a;
}

body {
    font-family: 'Poppins', sans-serif; 
    color: #4a4a4a;
    overflow-x: hidden;
}

/* --- Utility Classes --- */
.text-brand { color: var(--brand-orange) !important; }
.bg-brand { background-color: var(--brand-orange) !important; color: white; }

/* Interactive Button Hover Effects */
.btn-brand {
    background-color: var(--brand-orange);
    color: white;
    border: none;
    padding: 12px 28px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.3);
}
.btn-brand:hover {
    background-color: #d1551a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.5);
}
.btn-outline-dark {
    transition: all 0.3s ease;
}
.btn-outline-dark:hover {
    transform: translateY(-2px);
}

/* --- Hero Banner Section --- */
.hero-section {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2070') center/cover;
    height: 85vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.2;
    letter-spacing: -1px;
}

.highlight-text {
    color: var(--brand-orange);
    position: relative;
    display: inline-block;
}

/* --- Industry Image Cards --- */
.industry-card {
    border: none;
    border-radius: 12px; 
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.industry-card:hover {
    transform: translateY(-15px);
}

.industry-card img {
    height: 320px;
    object-fit: cover;
    filter: brightness(0.6);
    transition: filter 0.4s ease, transform 0.6s ease;
}

.industry-card:hover img {
    filter: brightness(0.3);
    transform: scale(1.1); 
}

.industry-card-content {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    color: white;
    text-align: center;
    transition: bottom 0.3s ease;
}

/* --- Footer Styles --- */
.footer {
    background-color: var(--brand-dark);
    color: #a0a0a0;
    padding: 70px 0 30px;
}
.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
}
.footer a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
}
.footer a:hover {
    color: var(--brand-orange);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.85rem;
}
/* --- Inner Page Header --- */
.page-header {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?q=80&w=2070') center/cover;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 50px;
}

/* --- Core Value Cards --- */
.value-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: var(--brand-orange);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--brand-orange);
    margin-bottom: 20px;
}

/* --- Mission & Vision Boxes --- */
.mission-box {
    background: #f8f9fa;
    border-left: 4px solid var(--brand-orange);
    padding: 40px;
    border-radius: 0 12px 12px 0;
    height: 100%;
}
/* --- Solutions Page Specific --- */

/* The Hero Image specifically for Solutions */
.page-header-solutions {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=2070') center/cover;
}

/* Solution Offerings Cards */
.solution-card {
    border: none;
    border-radius: 12px;
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(242, 101, 34, 0.15);
}

.solution-icon-wrap {
    width: 70px;
    height: 70px;
    background-color: rgba(242, 101, 34, 0.1);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.solution-card:hover .solution-icon-wrap {
    background-color: var(--brand-orange);
    color: white;
    transform: rotateY(180deg); /* Cool flip effect on hover */
}

/* --- How It Works (Process Timeline) --- */
.process-step {
    position: relative;
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--brand-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 25px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background-color: var(--brand-orange);
    transform: scale(1.15);
}

/* The connecting line between steps (Desktop only) */
@media (min-width: 992px) {
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50px;
        right: -50%;
        width: 100%;
        height: 2px;
        background-color: #e0e0e0;
        z-index: 1;
        border-top: 2px dashed #ccc;
    }
}
/* --- Industries Page Specific --- */

/* Industry Hero Header */
.page-header-industries {
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('https://images.unsplash.com/photo-1513828583688-c52646db42da?q=80&w=2070') center/cover;
}

/* Industry Square Grid */
.sector-card {
    height: 400px;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.sector-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s ease;
}

.sector-card:hover img {
    transform: scale(1.1);
}

.sector-card:hover .sector-overlay {
    background: linear-gradient(to top, var(--brand-orange) 20%, rgba(242, 101, 34, 0.4) 80%);
}

.sector-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.sector-card:hover .sector-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Featured Icon Box */
.feature-box-small {
    padding: 20px;
    border-radius: 10px;
    background: white;
    border-bottom: 3px solid #eee;
    transition: all 0.3s ease;
}

.feature-box-small:hover {
    border-color: var(--brand-orange);
    transform: translateY(-5px);
}
/* --- Contact Page Specific --- */

/* Contact Hero Header */
.page-header-contact {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1516387938699-a93567ec168e?q=80&w=2071') center/cover;
}

/* Floating Contact Info Cards */
.contact-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    border-left: 4px solid var(--brand-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background-color: rgba(242, 101, 34, 0.1);
    color: var(--brand-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 20px;
}

/* Custom Form Input Glow */
.form-control:focus, .form-select:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 0.25rem rgba(242, 101, 34, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--brand-dark);
}