/* ========================================================================== */
/*                                 GLOBAL STYLES                              */
/* ========================================================================== */
/*
* This file is intended for general, global styles that apply across the entire website.
* It can include typography, base colors, and other overarching visual rules.
*/

.text-purple {
    color: #764293 !important;
}

.download-btn {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    text-decoration: none;
    padding: 0px 30px;
    color: #ffffff;
    font-size: 1.5rem;
    background-color: #764294;
    position: relative;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    transition: all 0.3s ease; /* Smooth transition for hover */
}

.download-btn:hover {
    color: #764294;
    background-color: #ffffff;
}

/* ========================================================================== */
/*                                 HERO STYLES                              */
/* ========================================================================== */

.service_hero_aerospace .back_img_wrap {
    background-image: url('../images/index_service1.png');
}

.service_hero_defense .back_img_wrap {
    background-image: url('../images/product_new2.png');
}

.service_hero_medical .back_img_wrap {
    background-image: url('../images/index_service3.png');
}

/* Service Page Hero Section */
.service-hero-section {
    position: relative;
    height: 450px;
    width: 100%;
}

.service-hero-section .back_img_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-hero-section .back_img_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.service-hero-section .back_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: auto;
}

.service-hero-section .banner_main_wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 2;
    top: 0;
}

.back-button-wrap a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6c757d;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.back-button-wrap a:hover {
    background-color: #5a6268;
}

.back-button-wrap a i {
    margin-right: 8px;
}
