
:root {
    --primary-color: #004372;
    --accent-color: #ff6600;
    --text-light: #ffffff;
    --text-dark: #333333;
    --prokse-light-blue: #328bc6;
    --prokse-dark-blue: #00305E;
    --section-padding: 5rem 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    padding: 0.5rem 2rem; /* Reduced from 1rem to 0.5rem */
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    padding: 0.5rem 0; /* Added to reduce vertical padding */
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.nav-items .language-select:hover {
    background-color: rgba(255,255,255,0.1);
}

.nav-items .language-select option {
    background-color: #2c3e50;
    padding: 8px;
}
/* Hero Section before
.hero {
    height: 100vh;
    background-position: center;
    background-size: cover;
    position: relative;
}
*/
/* Hero section to play with backimage color gradient*/
.hero {
    position: relative;
    background-image: url('../backimg/brighter_image2_StartPage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 20vh;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.hero-overlay {
    background: linear-gradient(to bottom right,
    rgba(var(--prokse-light-blue), 0.9),
    rgba(var(--prokse-dark-blue), 0.7)
    );
}

/* Sections */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Cards */
.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    margin: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #004999; /* ProKSE blue for headings */
    margin-bottom: 15px;
}

.service-card p {
    color: #333333; /* Dark gray for better readability */
    line-height: 1.6;
}
/* Old
.service-card img {
    transition: all 0.3s ease;
}
.service-card img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
Old end */
.service-card img {
    transition: all 0.3s ease;
    max-width: 350px;
    max-height: 175px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.service-card img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
/* Here is the background for Services section Delete text below if dont needed */
#services {
    background: linear-gradient(to bottom right, #0b789c, #004999);
    padding: 60px 0;
}

#services .section-title {
    color: #ffffff; /* Making sure section title is white for contrast */
    margin-bottom: 40px;
}

#services .section-description {
    color: #ffffff; /* Making sure section description is white for contrast */
    margin-bottom: 30px;
}
/* Customer Carousel */
.customer-carousel {
    background: #f8f9fa;
    padding: 3rem 0;
}

.customer-logo {
    /*new add start delete if looking bad*/
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /*new add end*/
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    max-height: 80px;
    width: auto;
}

.customer-logo:hover {
    filter: grayscale(0%);
}

/* Projects by Industry Section*/
.industry-projects .card {
    transition: transform 0.2s ease-in-out;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.industry-projects .card:hover {
    transform: translateY(-5px);
}

.industry-projects .bi {
    opacity: 0.8;
}

.industry-projects .card-body {
    padding: 2rem;
}

.text-primary {
    color: #004372 !important; /* You can change this to match your brand color */
}
.icon-wrapper {
    text-align: center;
    margin-bottom: 1rem;
}

.icon-wrapper i {
    font-size: 2.5rem; /* Adjust size as needed */
    color: #0066cc; /* Use GE's brand color or your preferred color */
}
/* Contact Section */
.contact-section {
    background: var(--primary-color);
    color: var(--text-light);
}

.contact-form input,
.contact-form textarea {
    border: none;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}
