/* --- Start of main.css --- */
html { font-size: 87.5%; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Ubuntu', sans-serif; line-height: 1.6; color: #333; background: linear-gradient(135deg, #ffffff 0%, #f0fff0 100%); min-height: 100vh; background-attachment: fixed; overflow-x: hidden; transition: background 0.4s ease, color 0.4s ease; }
/* Add this class via JS when mobile menu is open */
body.no-scroll {
    overflow: hidden;
}
.container { max-width: 1400px; margin: 0 auto; padding: 0 15px; }
a { text-decoration: none; color: inherit; }

/* --- Header Styles --- */
header.site-header {
    padding: 12px 0;
    position: sticky; /* Changed from absolute for better flow */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Increased z-index */
    background-color: rgba(255, 255, 255, 0.9); /* Added background for sticky */
    backdrop-filter: blur(5px); /* Optional: blur effect */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Added shadow for sticky */
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .logo {
    margin-left: -10px;
    flex-shrink: 0;
    z-index: 1001; /* Ensure logo is above mobile nav overlay */
}
header .logo img {
    height: 60px; /* Slightly reduced default height */
    display: block;
    max-width: 100%;
}
header nav.main-nav { /* Added class for specificity */
    /* Removed background/border-radius/shadow for default view */
    flex-grow: 1;
    margin-left: 25px;
    margin-right: 15px;
    transition: background 0.4s ease;
}
header nav.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align items to the right */
    padding: 0;
    margin: 0;
    width: 100%;
    gap: 10px; /* Space between main menu items */
}
header nav.main-nav ul li {
    position: relative;
}
header nav.main-nav ul li a {
    color: #444;
    font-weight: 500; /* Slightly bolder */
    font-size: 1rem; /* Slightly larger */
    padding: 10px 15px; /* Adjusted padding */
    border-radius: 20px; /* Add rounding */
    transition: color 0.2s ease, background-color 0.2s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
header nav.main-nav ul li a:hover,
header nav.main-nav ul li a.active {
    color: #0056b3;
    background-color: rgba(0, 123, 255, 0.08); /* Subtle background on hover/active */
}

/* Header Dropdown Menu CSS */
.has-dropdown > a.dropdown-toggle::after { content: '\25BC'; font-size: 0.6em; margin-left: 8px; display: inline-block; vertical-align: middle; transition: transform 0.3s ease; }
.has-dropdown.dropdown-open > a.dropdown-toggle::after { transform: rotate(180deg); }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.98); /* Slightly less transparent */
    border-radius: 10px;
    padding: 12px 0;
    min-width: 240px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Increased shadow */
    z-index: 1000; /* Keep dropdown below header */
    list-style: none;
    margin: 10px 0 0 0; /* Added top margin */
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    border: 1px solid rgba(0,0,0,0.1); /* Slightly darker border */
}
.has-dropdown.dropdown-open > .dropdown-menu { display: block; opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { color: #333; padding: 10px 25px; display: block; white-space: nowrap; font-size: 0.95rem; /* Adjusted */ font-weight: 400; transition: background-color 0.2s ease, color 0.2s ease; }
.dropdown-menu li a:hover { background-color: rgba(0, 123, 255, 0.1); color: #0056b3; }
.dropdown-menu li a .product-type { font-size: 0.8em; color: #6c757d; margin-left: 8px; display: inline; font-style: italic; transition: color 0.4s ease; }

/* Header Right Section (Theme + Hamburger) */
.header-right-section {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between theme icons and hamburger */
}

/* Theme Icons Container */
.theme-icons {
    display: flex;
    align-items: center;
    /* Removed margin-left: auto; padding-left: 10px; flex-shrink: 0; */
}
.theme-toggle-icon { background: none; border: none; padding: 4px; margin-left: 8px; cursor: pointer; color: #444; transition: color 0.3s ease, transform 0.2s ease; display: inline-block; line-height: 0; }
.theme-toggle-icon svg { width: 26px; height: 26px; vertical-align: middle; }
.theme-toggle-icon:hover { color: #0056b3; transform: scale(1.1); }
.theme-toggle-icon.moon { display: none; }

/* --- Hamburger Menu --- */
.mobile-nav-toggle {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001; /* Ensure it's clickable above other header elements */
}
.hamburger-icon {
    display: block;
    width: 24px;
    height: 20px;
    position: relative;
}
.hamburger-icon .line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 1px;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.hamburger-icon .line-1 { top: 0; }
.hamburger-icon .line-2 { top: 50%; transform: translateY(-50%); }
.hamburger-icon .line-3 { bottom: 0; }

/* Hamburger animation when active */
.mobile-nav-toggle[aria-expanded="true"] .line-1 { transform: translateY(9px) rotate(45deg); }
.mobile-nav-toggle[aria-expanded="true"] .line-2 { opacity: 0; }
.mobile-nav-toggle[aria-expanded="true"] .line-3 { transform: translateY(-9px) rotate(-45deg); }

/* --- Button Styles --- */
.btn { display: inline-block; padding: 12px 28px; border: none; border-radius: 30px; cursor: pointer; font-weight: 700; font-family: 'Ubuntu', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease; font-size: 0.85rem; }
.btn-primary { background: linear-gradient(to right, #007bff, #0056b3); color: #fff; box-shadow: 0 4px 8px rgba(0, 86, 179, 0.3); }
.btn-primary:hover { background: linear-gradient(to right, #006dde, #004ca0); transform: translateY(-3px); box-shadow: 0 6px 12px rgba(0, 86, 179, 0.4); }
.btn-secondary { display: inline-block; padding: 9px 22px; border: 1px solid #6c757d; border-radius: 25px; cursor: pointer; font-weight: 600; font-family: 'Ubuntu', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; background-color: transparent; color: #6c757d; transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease; font-size: 0.8rem; }
.btn-secondary:hover { background-color: #6c757d; color: #fff; transform: translateY(-2px); }

/* --- Main Content --- */
main {
    min-height: 60vh;
    /* Removed padding-top, handled by sticky header */
}

/* --- Page Wrapper & Standard Sections --- */
.page-section { padding: 60px 0; }
.page-section.bg-light { background-color: rgba(248, 249, 250, 0.7); transition: background-color 0.4s ease; }
.page-title { font-size: 2.8rem; font-weight: 700; color: #1c2b4d; margin-bottom: 40px; text-align: center; transition: color 0.4s ease; }
.page-subtitle { font-size: 1.1rem; color: #4a5568; margin-bottom: 30px; text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.7; transition: color 0.4s ease; }

/* --- Footer --- */
.site-footer { background-color: #1c2b4d; color: #a0b3d1; padding: 60px 0 0 0; font-size: 0.9rem; transition: background-color 0.4s ease, color 0.4s ease; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 1.1rem; font-weight: 700; color: #ffffff; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background-color: #007bff; }
.footer-about .footer-logo img { max-height: 40px; margin-bottom: 15px; }
.footer-about p { margin-bottom: 20px; line-height: 1.7; font-size: 0.9em;}
.footer-links ul, .footer-legal ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li, .footer-legal ul li { margin-bottom: 10px; }
.footer-links ul li a, .footer-legal ul li a { color: #a0b3d1; transition: color 0.3s ease, padding-left 0.3s ease; font-size: 0.9em;}
.footer-links ul li a:hover, .footer-legal ul li a:hover { color: #ffffff; padding-left: 5px; }
.footer-contact address { font-style: normal; line-height: 1.7; margin-bottom: 10px; font-size: 0.9em;}
.footer-contact p { margin-bottom: 5px; font-size: 0.9em;}
.footer-contact p a { color: #a0b3d1; }
.footer-contact p a:hover { color: #ffffff; }
.social-icons a { display: inline-block; margin-right: 10px; color: #a0b3d1; width: 30px; height: 30px; transition: color 0.3s ease, transform 0.3s ease; }
.social-icons a:hover { color: #ffffff; transform: scale(1.1); }
.social-icons a svg { width: 18px; height: 18px; vertical-align: middle; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 20px 0; text-align: center; font-size: 0.85rem; color: #a0b3d1; }


/* --- Dark Theme Styles --- */
body.dark-theme { background: linear-gradient(135deg, #2c3e50 0%, #1a2833 100%); color: #e0e0e0; }
body.dark-theme header.site-header { background-color: rgba(26, 40, 51, 0.9); box-shadow: 0 2px 5px rgba(0,0,0,0.3); }
body.dark-theme header nav.main-nav ul li a { color: #c0c0c0; }
body.dark-theme header nav.main-nav ul li a:hover, body.dark-theme header nav.main-nav ul li a.active { color: #ffffff; background-color: rgba(255, 255, 255, 0.1); }
body.dark-theme .theme-toggle-icon { color: #c0c0c0; }
body.dark-theme .theme-toggle-icon:hover { color: #ffffff; }
body.dark-theme .theme-toggle-icon.sun { display: none; }
body.dark-theme .theme-toggle-icon.moon { display: inline-block; }
body.dark-theme .dropdown-menu { background-color: #2c3e50; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); border-color: rgba(255,255,255,0.15); }
body.dark-theme .dropdown-menu li a { color: #e0e0e0; }
body.dark-theme .dropdown-menu li a:hover { background-color: #3a4b5c; color: #ffffff; }
body.dark-theme .dropdown-menu li a .product-type { color: #adb5bd; }

/* Dark Hamburger */
body.dark-theme .hamburger-icon .line { background-color: #e0e0e0; }

body.dark-theme .btn-primary { background: linear-gradient(to right, #0ca6e9, #007bff); box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3); }
body.dark-theme .btn-primary:hover { background: linear-gradient(to right, #14b6ff, #006dde); box-shadow: 0 6px 12px rgba(0, 123, 255, 0.4); }
body.dark-theme footer.site-footer { color: #a0a0a0; background-color: #111827; } /* Specificity */
body.dark-theme .footer-col h4 { color: #e5e7eb;}
body.dark-theme .footer-links ul li a, body.dark-theme .footer-legal ul li a { color: #9ca3af; }
body.dark-theme .footer-links ul li a:hover, body.dark-theme .footer-legal ul li a:hover { color: #e5e7eb; }
body.dark-theme .footer-contact address, body.dark-theme .footer-contact p a { color: #9ca3af; }
body.dark-theme .footer-contact p a:hover { color: #e5e7eb; }
body.dark-theme .social-icons a { color: #9ca3af; }
body.dark-theme .social-icons a:hover { color: #e5e7eb; }
body.dark-theme .footer-bottom { color: #9ca3af; border-top-color: rgba(255, 255, 255, 0.2); }
body.dark-theme .page-section.bg-light { background-color: rgba(40, 50, 60, 0.7); }
body.dark-theme .page-title { color: #e5e7eb; }
body.dark-theme .page-subtitle { color: #b0b0b0; }

body.dark-theme .btn-secondary { border-color: #6c757d; color: #adb5bd;} body.dark-theme .btn-secondary:hover { background-color: #6c757d; color: #fff;}


/* =============================== */
/* ===== MOBILE & RESPONSIVE ===== */
/* =============================== */

@media (max-width: 992px) { /* Tablet */
    .footer-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; }
    .page-title { font-size: 2.4rem; }

    /* Show Hamburger, Hide Desktop Nav */
    .mobile-nav-toggle { display: block; }
    header nav.main-nav {
        display: none; /* Hide nav list by default */
        position: fixed; /* Take over screen */
        top: 0;
        left: 0;
        width: 80%; /* Adjust width as needed */
        max-width: 300px;
        height: 100vh; /* Full height */
        background-color: #ffffff; /* Solid background */
        padding: 80px 20px 20px 20px; /* Add padding top for close button/header space */
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start; /* Align items left */
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        overflow-y: auto; /* Allow scrolling if menu is long */
        margin: 0; /* Reset margin */
        z-index: 999; /* Below header/toggler */
    }
    header nav.main-nav.mobile-nav-open {
        display: flex; /* Show when open */
        transform: translateX(0);
    }
    header nav.main-nav ul {
        flex-direction: column; /* Stack list items */
        align-items: flex-start; /* Align items left */
        width: 100%;
        gap: 0; /* Reset gap */
    }
    header nav.main-nav ul li {
        width: 100%; /* Full width list items */
        border-bottom: 1px solid #eee; /* Separator */
    }
    header nav.main-nav ul li:last-child {
        border-bottom: none;
    }
    header nav.main-nav ul li a {
        padding: 15px 10px; /* Adjust padding */
        width: 100%; /* Full width links */
        font-size: 1.1rem; /* Larger font for mobile */
        border-radius: 0; /* Remove rounding */
    }
    header nav.main-nav ul li a:hover,
    header nav.main-nav ul li a.active {
        background-color: rgba(0, 123, 255, 0.05); /* Lighter hover */
    }
    .has-dropdown > a.dropdown-toggle::after {
        margin-left: auto; /* Push arrow to the right */
    }
    /* Mobile Dropdown adjustments */
    .dropdown-menu {
        position: static; /* No absolute positioning */
        display: none; /* Hidden by default */
        background-color: transparent;
        box-shadow: none;
        border: none;
        border-top: 1px dashed #ddd;
        width: 100%;
        padding: 10px 0 10px 20px; /* Indent submenu */
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none; /* No transition needed */
        margin: 0;
    }
    .has-dropdown.dropdown-open > .dropdown-menu {
        display: block; /* Show when parent is open */
    }
    .dropdown-menu li a {
        font-size: 1rem; /* Adjust font size */
        padding: 8px 10px;
    }
    .dropdown-menu li a:hover {
        background-color: rgba(0, 123, 255, 0.08);
    }

    /* Dark theme mobile nav */
    body.dark-theme header nav.main-nav {
        background-color: #2c3e50;
        box-shadow: 2px 0 10px rgba(0,0,0,0.4);
    }
    body.dark-theme header nav.main-nav ul li { border-bottom-color: #4a5b6c; }
    body.dark-theme header nav.main-nav ul li a { color: #e0e0e0; }
    body.dark-theme header nav.main-nav ul li a:hover,
    body.dark-theme header nav.main-nav ul li a.active {
        background-color: rgba(255, 255, 255, 0.08);
        color: #fff;
    }
    body.dark-theme .dropdown-menu {
        border-top-color: #555;
    }
    body.dark-theme .dropdown-menu li a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

}
@media (max-width: 768px) { /* Mobile */
     html { font-size: 87.5%; }
     .container { max-width: 95%; padding: 0 15px;}
     header .container { /* Adjust layout if needed, already flex */ }
     header .logo img { height: 55px; } /* Adjust logo size */
     .theme-icons { /* Might not need changes */ }

     .btn { padding: 10px 22px; font-size: 0.8rem;}
     .btn-secondary { padding: 8px 20px; font-size: 0.75rem;}

     .page-title { font-size: 2rem; }
     .page-subtitle { font-size: 1rem; }
     .page-section { padding: 50px 0; }

}
 @media (max-width: 576px) { /* Small Mobile */

     header .logo img { height: 50px; } /* Further adjust logo */
     .footer-grid { grid-template-columns: 1fr; text-align: center; }
     .footer-col { margin-bottom: 20px; }
     .footer-col h4::after { left: 50%; transform: translateX(-50%); }
     .footer-about .footer-logo img { display: block; margin: 0 auto 20px auto; }
     .social-icons { text-align: center; }
     .social-icons a { margin: 0 5px;}
     .page-title { font-size: 1.8rem; }
}

/* =========================================== */
/* ==== PAGE-SPECIFIC STYLES (Consolidated) ==== */
/* =========================================== */

/* About Page */
body.page-about .team-section { background-color: #f0f8ff; padding: 40px 0; }
body.page-about .team-member { text-align: center; margin-bottom: 30px; }
body.page-about .team-member img { max-width: 150px; border-radius: 50%; margin-bottom: 15px; }
body.dark-theme.page-about .team-section { background-color: rgba(30, 40, 55, 0.8); }
body.page-about .story-mission-section .about-image-container .about-main-icon { display: block; max-width: 100%; width: 300px; height: auto; margin: 0 auto; fill: #0d6efd; opacity: 0.85; } /* From about.php */
body.page-about .values-section { background-color: #f8f9fa; } /* From about.php */
body.page-about .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 20px; } /* From about.php */
body.page-about .value-card { background-color: #ffffff; padding: 30px 25px; border-radius: 8px; text-align: center; border: 1px solid #eee; box-shadow: 0 2px 8px rgba(0,0,0,0.06); } /* From about.php */
body.page-about .value-card-icon { margin-bottom: 15px; line-height: 1; } /* From about.php */
body.page-about .value-card-icon svg{ width: 45px; height: 45px; } /* From about.php */
body.page-about .value-card-icon .icon-integrity { fill: #0d6efd; } /* From about.php */
body.page-about .value-card-icon .icon-innovation { fill: #6f42c1; } /* From about.php */
body.page-about .value-card-icon .icon-client-focus { fill: #198754; } /* From about.php */
body.page-about .value-card-icon .icon-excellence { fill: #fd7e14; } /* From about.php */
body.page-about .value-card h3 { font-size: 1.25rem; margin-bottom: 10px; color: #1c2b4d; } /* From about.php */
body.page-about .value-card p { font-size: 0.95rem; color: #4a5568; line-height: 1.6; margin-bottom: 0; } /* From about.php */
body.dark-theme.page-about .values-section { background-color: rgba(40, 50, 60, 0.7); } /* From about.php */
body.dark-theme.page-about .value-card { background-color: #2c3e50; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); border-color: #4a5b6c; } /* From about.php */
body.dark-theme.page-about .value-card:hover { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); } /* From about.php */
body.dark-theme.page-about .value-card-icon .icon-integrity { fill: #5fa8ff; } /* From about.php */
body.dark-theme.page-about .value-card-icon .icon-innovation { fill: #a78bfa; } /* From about.php */
body.dark-theme.page-about .value-card-icon .icon-client-focus { fill: #34d399; } /* From about.php */
body.dark-theme.page-about .value-card-icon .icon-excellence { fill: #fb923c; } /* From about.php */
body.dark-theme.page-about .value-card h3 { color: #e5e7eb; } /* From about.php */
body.dark-theme.page-about .value-card p { color: #b0b0b0; } /* From about.php */
body.page-about .team-avatar-container { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 15px auto; border: 3px solid #dee2e6; box-shadow: 0 3px 10px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; background-color: #f8f9fa; overflow: hidden; } /* From about.php */
body.page-about .team-avatar-icon { width: 70%; height: 70%; fill: #6c757d; } /* From about.php */
body.page-about .team-avatar-icon.avatar-female { fill: #e83e8c; } /* From about.php */
body.page-about .team-avatar-icon.avatar-male { fill: #0d6efd; } /* From about.php */
body.page-about .team-member h4 { font-size: 1.15rem; margin-bottom: 5px; color: #1c2b4d; font-weight: 600; } /* From about.php */
body.page-about .team-member .title { font-size: 0.9rem; color: #6c757d; font-weight: 500; } /* From about.php */
body.dark-theme.page-about .team-avatar-container { border-color: #4b5563; background-color: #374151; box-shadow: 0 3px 10px rgba(0,0,0,0.4); } /* From about.php */
body.dark-theme.page-about .team-avatar-icon { fill: #9ca3af; } /* From about.php */
body.dark-theme.page-about .team-avatar-icon.avatar-female { fill: #f472b6; } /* From about.php */
body.dark-theme.page-about .team-avatar-icon.avatar-male { fill: #5fa8ff; } /* From about.php */
body.dark-theme.page-about .team-member h4 { color: #e5e7eb; } /* From about.php */
body.dark-theme.page-about .team-member .title { color: #9ca3af; } /* From about.php */


/* Contact Page */
body.page-contact .contact-form { max-width: 600px; margin: 0 auto; background: rgba(255, 255, 255, 0.9); padding: 30px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
body.page-contact .form-group { margin-bottom: 20px; }
body.page-contact label { display: block; margin-bottom: 5px; font-weight: 500; }
body.page-contact input[type="text"], body.page-contact input[type="email"], body.page-contact textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-family: inherit; }
body.page-contact textarea { min-height: 120px; }
body.dark-theme.page-contact .contact-form { background: rgba(40, 50, 60, 0.9); box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
body.dark-theme.page-contact label { color: #e0e0e0; }
body.dark-theme.page-contact input[type="text"], body.dark-theme.page-contact input[type="email"], body.dark-theme.page-contact textarea { background-color: #3a4b5c; border-color: #5a6b7c; color: #e0e0e0; }
/* Contact Form Feedback Messages */
body.page-contact .form-message { padding: 15px; margin-bottom: 20px; border-radius: 4px; font-size: 1rem; text-align: center; }
body.page-contact .form-message.success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
body.page-contact .form-message.error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
body.dark-theme.page-contact .form-message.success { background-color: #1a3a26; color: #a3e9b5; border: 1px solid #2a5c3a; }
body.dark-theme.page-contact .form-message.error { background-color: #4d2024; color: #f8b4b7; border: 1px solid #8a3d43; }


/* Highlight Boxes (Consolidated from subpages) */
.highlight-box { padding: 20px; margin-bottom: 20px; border-radius: 4px; border-left-width: 5px; border-left-style: solid; }
body.page-cloud-infrastructure .highlight-box { border-left-color: #0dcaf0; background-color: #f0fcff; }
body.page-ai-automation .highlight-box { border-left-color: #6f42c1; background-color: #f8f5ff; }
body.page-cybersecurity-compliance .highlight-box { border-left-color: #dc3545; background-color: #fff0f1; }
body.page-data-analytics .highlight-box { border-left-color: #198754; background-color: #eefcef; }
body.page-managed-it .highlight-box { border-left-color: #6c757d; background-color: #f3f4f6; }
body.page-on-demand-staffing .highlight-box { border-left-color: #0dcaf0; background-color: #f0f9ff; }
body.page-cloud-platforms-tech .highlight-box { border-left-color: #0d6efd; background-color: #f0f8ff; }
body.page-vmware-virtualization .highlight-box { border-left-color: #6f42c1; background-color: #f6f6ff; }
body.page-infrastructure_automation_tech .highlight-box { border-left-color: #fd7e14; background-color: #fff8e1; }
body.page-security_tools_tech .highlight-box { border-left-color: #dc3545; background-color: #fff0f1; }
body.page-asset-intelligence .highlight-box { border-left-color: #0d6efd; background-color: #f0f9ff; }
body.page-log-intelligence .highlight-box { border-left-color: #0d6efd; background-color: #f0f9ff; }
body.page-quiz-platform .highlight-box { border-left-color: #0dcaf0; background-color: #f0f9ff; }
body.page-solaxta-store .highlight-box { border-left-color: #6c757d; background-color: #f8f9fa; }

/* Dark Theme Highlight Boxes */
body.dark-theme .highlight-box { background-color: rgba(255, 255, 255, 0.05); color: #ccc; }
body.dark-theme.page-cloud-infrastructure .highlight-box { border-left-color: #20c997; }
body.dark-theme.page-ai-automation .highlight-box { border-left-color: #a07cff; }
body.dark-theme.page-cybersecurity-compliance .highlight-box { border-left-color: #ff7b7b; }
body.dark-theme.page-data-analytics .highlight-box { border-left-color: #34d399; background-color: rgba(25, 135, 84, 0.1); }
body.dark-theme.page-managed-it .highlight-box { border-left-color: #adb5bd; background-color: rgba(108, 117, 125, 0.1); }
body.dark-theme.page-on-demand-staffing .highlight-box { border-left-color: #22d3ee; background-color: rgba(13, 202, 240, 0.1); }
body.dark-theme.page-cloud-platforms-tech .highlight-box { border-left-color: #3b82f6; background-color: rgba(13, 110, 253, 0.1); }
body.dark-theme.page-vmware-virtualization .highlight-box { border-left-color: #a78bfa; background-color: rgba(111, 66, 193, 0.1); }
body.dark-theme.page-infrastructure_automation_tech .highlight-box { border-left-color: #fb923c; background-color: rgba(253, 126, 20, 0.1); }
body.dark-theme.page-security_tools_tech .highlight-box { border-left-color: #ff7b7b; background-color: rgba(220, 53, 69, 0.1); }
body.dark-theme.page-asset-intelligence .highlight-box { border-left-color: #3b82f6; background-color: rgba(13, 110, 253, 0.1); }
body.dark-theme.page-log-intelligence .highlight-box { border-left-color: #3b82f6; background-color: rgba(13, 110, 253, 0.1); }
body.dark-theme.page-quiz-platform .highlight-box { border-left-color: #22d3ee; background-color: rgba(13, 202, 240, 0.1); }
body.dark-theme.page-solaxta-store .highlight-box { border-left-color: #adb5bd; background-color: rgba(108, 117, 125, 0.1); }


/* --- Other Consolidated Styles (Keep adding relevant selectors from page <style> blocks) --- */
/* Example: Generic Service Card used on multiple pages */
.service-grid, .feature-grid, .role-grid, .category-grid, .platform-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.service-card, .feature-card, .role-card, .category-card, .platform-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.4s ease, border-color 0.4s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}
.service-card > *:last-child, .feature-card > *:last-child, .role-card > *:last-child, .category-card > *:last-child, .platform-card > *:last-child {
    margin-top: auto;
}
.service-card:hover, .feature-card:hover, .role-card:hover, .category-card:hover, .platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.service-card-icon, .feature-card-icon, .role-card-icon, .category-card-icon {
    margin-bottom: 20px;
    line-height: 1;
}
.service-card-icon svg, .feature-card-icon svg, .role-card-icon svg, .category-card-icon svg {
    width: 40px;
    height: 40px;
}
.service-card h3, .feature-card h3, .role-card h3, .category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1c2b4d;
    transition: color 0.4s ease;
}
.service-description, .feature-description, .role-description {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    text-align: left;
    flex-grow: 1;
    margin-bottom: 0;
     transition: color 0.4s ease;
}
.service-description ul, .feature-description ul, .role-description ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}
.service-description li, .feature-description li, .role-description li {
    margin-bottom: 5px;
}

/* Dark Theme for Generic Cards */
body.dark-theme .service-card, body.dark-theme .feature-card, body.dark-theme .role-card, body.dark-theme .category-card, body.dark-theme .platform-card {
    background-color: #2c3e50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: #4a5b6c;
}
body.dark-theme .service-card:hover, body.dark-theme .feature-card:hover, body.dark-theme .role-card:hover, body.dark-theme .category-card:hover, body.dark-theme .platform-card:hover {
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
body.dark-theme .service-card h3, body.dark-theme .feature-card h3, body.dark-theme .role-card h3, body.dark-theme .category-card h3 {
    color: #e5e7eb;
}
body.dark-theme .service-description, body.dark-theme .feature-description, body.dark-theme .role-description {
    color: #b0b0b0;
}
/* Add specific icon color overrides for dark theme if needed for each page */


/* Consolidated Benefits List */
.benefits-list { list-style: none; padding-left: 0; max-width: 700px; margin: 20px auto 0 auto; }
.benefits-list li { margin-bottom: 15px; font-size: 1.05rem; color: #333; display: flex; align-items: flex-start; gap: 10px; transition: color 0.4s ease;}
.benefits-list li svg { flex-shrink: 0; width: 1.2em; height: 1.2em; margin-top: 0.15em; fill: #198754; transition: fill 0.4s ease;}
body.dark-theme .benefits-list li { color: #ccc; }
body.dark-theme .benefits-list li svg { fill: #20c997; }

/* Consolidated Section Heading */
.section-heading { text-align: center; font-size: 2rem; margin-bottom: 40px; color: #1c2b4d; font-weight: 700; transition: color 0.4s ease; }
body.dark-theme .section-heading { color: #e5e7eb; }


/* Add other consolidated styles from pages here */


/* --- End of main.css --- */