:root {
    --primary: #1a1a61;
    --secondary: #e7ad4c;
    --light: #f8f9fa;
    --dark: #212529;
}

body {
    font-family: 'Tahoma', Arial, sans-serif;
    color: var(--dark); /* Default text color */
}

.bg-primary {
    background-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: #242c57; /* Slightly darker primary */
    border-color: #242c57;
    color: #fff;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #d19a3b; /* Slightly darker secondary */
    border-color: #d19a3b;
    color: #fff;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
}

.hero,
.page-hero {
    background: linear-gradient(135deg, var(--primary), #3a4a8a);
    color: white;
    padding: 150px 0 100px;
    width: 100%;
}

.page-hero {
    text-align: center;
}

.service-card,
.project-card,
.service-card-detail {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover,
.project-card:hover,
.service-card-detail:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-img,
.project-img,
.service-detail-img {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.service-img {
    height: 200px;
}

.service-detail-img {
    height: 250px;
    margin-bottom: 20px;
}

.service-img img,
.project-img img,
.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-img img,
.project-card:hover .project-img img,
.service-card-detail:hover .service-detail-img img {
    transform: scale(1.1);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 50px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
}

.skill-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--secondary);
    border-radius: 4px;
}

.service-section {
    padding: 80px 0;
}

.service-section:nth-of-type(odd) {
    background-color: var(--light);
}

.service-detail-list ul {
    list-style: none;
    padding-right: 0;
}

.service-detail-list ul li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-detail-list ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary);
    position: absolute;
    right: 0;
    top: 3px;
}

.trends-section {
    background-color: var(--light);
    padding: 40px;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.additional-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.additional-images-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

footer {
    background-color: var(--primary);
    color: white;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero,
    .page-hero {
        padding: 120px 0 80px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .service-section {
        padding: 60px 0;
    }

    .additional-images-grid {
        grid-template-columns: 1fr;
    }
}
.scada-landing-banner {
  position: relative;
  overflow: hidden;
  height: auto;
}

.scada-landing-banner h1,
.scada-landing-banner p {
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}
