:root {
    --primary: #0a1628;
    --primary-light: #1a2d4a;
    --accent: #00d4ff;
    --accent-dark: #0099cc;
    --text-light: #e8eef4;
    --text-muted: #8a9bb3;
    --surface: #111d33;
    --surface-light: #162439;
    --header-padding: 4px;
    --gradient: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
}

/* SECTION */
.section {
    padding: 4rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--primary);
    color: var(--text-light);
    line-height: 1.6;
}

/* HEADER */
.site-header {
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--surface-light);
    padding: 0.25rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header .navbar {
    padding: 0;
}

.site-header .navbar > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 96px;
    width: auto;
}

.site-header .navbar-nav {
    gap: 0.2rem;
    list-style: none;
    display: flex;
    align-items: center;
}

.site-header .nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 6px !important;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.site-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--text-light) !important;
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border-color: var(--accent);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 212, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator:hover {
    opacity: 0.8;
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.hero-scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    opacity: 0.6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(10px); }
    60% { transform: translateX(-50%) translateY(5px); }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 153, 204, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(36, 59, 85, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 59, 85, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    color: #ffffff;
    display: inline-block;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .no-highlight {
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
}

.hero-quote {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

.quote-author {
    display: block;
    margin-top: 0.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    color: var(--primary);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

/* SECTIONS */
.section-title {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* SERVICE CARDS */
.service-card {
    background-color: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FOOTER */
.site-footer {
    background-color: var(--surface);
    padding: 2rem 0 8px;
    margin-top: 0;
    border-top: 1px solid var(--surface-light);
}

.site-footer h5 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.25rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.75rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--surface-light);
    color: var(--text-muted);
}

.footer-bottom p {
    font-size: 0.75rem;
}

.footer-legal {
    margin-top: 0.5rem;
    font-size: 0.4rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* PAGE HERO */
.page-content {
    padding-top: 80px;
}

.page-hero {
    padding: 3.5rem 0 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* SOLUTION CARDS */
.solution-card {
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
}

.solution-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.solution-card:hover {
    border-color: var(--surface-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: var(--surface-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.solution-card h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.solution-card ul {
    list-style: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0;
}

.solution-card li {
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.solution-card li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* PARTNERS SECTION */
.partners-section {
    background-color: var(--surface);
}

.partner-card {
    background-color: #ffffff !important;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.partner-card img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-card:hover img {
    opacity: 1;
}

.partner-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* PORTFOLIO CARDS */
.portfolio-card {
    background-color: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.portfolio-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.portfolio-card h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.portfolio-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* PROJECT CARDS */
.project-card {
    background-color: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.project-card h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.project-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* MEDIA CARDS */
.media-card {
    background-color: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.media-card .date {
    color: var(--accent);
    font-size: 0.875rem;
}

.media-card h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin: 0.75rem 0;
}

.media-card p {
    color: var(--text-muted);
}

/* MEDIA GRID */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.media-card-with-image {
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: inherit;
    text-decoration: none;
}

.media-card-with-image:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.media-image {
    height: 180px;
    background: var(--surface-light);
    overflow: hidden;
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-content-wrapper {
    padding: 1.25rem;
}

.media-date {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.media-card-with-image h3 {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.media-description {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 991px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .media-grid {
        grid-template-columns: 1fr;
    }
}

/* PAGINATION */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.pagination-wrapper-bottom {
    margin-top: 2rem;
    margin-bottom: 0;
}

.pagination {
    display: flex;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    display: inline-block;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 6px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination li a:hover {
    background: var(--surface-light);
    color: var(--text-light);
    border-color: var(--accent);
}

.pagination li.active a {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
}

.pagination li.disabled a {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* CERTIFICATION CARDS */
.cert-card {
    background-color: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.cert-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.cert-card h4 {
    color: var(--text-light);
    font-size: 1rem;
}

/* CONTACT FORM */
.contact-form .form-control {
    background-color: var(--surface);
    border: 1px solid var(--surface-light);
    color: var(--text-light);
    padding: 0.75rem 1rem;
}

.contact-form .form-control:focus {
    background-color: var(--surface);
    border-color: var(--accent);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
}

.contact-form .form-label {
    color: var(--text-light);
}

.contact-info {
    margin-top: 2rem;
}

/* FAQ ACCORDION */
.accordion-item {
    background-color: var(--surface);
    border: 1px solid var(--surface-light);
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--surface);
    color: var(--text-light);
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: var(--surface-light);
    color: var(--accent);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background-color: var(--surface);
    color: var(--text-muted);
    border-top: 1px solid var(--surface-light);
}

/* LEGAL SECTIONS */
.legal-section h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-section h3 {
    color: var(--text-light);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p, .legal-section li {
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-section ul {
    padding-left: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

/* LOCATIONS GRID */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.location-card {
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    color: inherit;
    text-decoration: none;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.location-icon {
    width: 56px;
    height: 56px;
    background: var(--surface-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: var(--accent);
}

.location-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.location-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* CONTACT GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-icon-box {
    width: 44px;
    height: 44px;
    background: var(--surface);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 1.1rem;
}

.contact-details h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

.contact-details p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.contact-details a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent);
}

/* CONTACT FORM */
.contact-form {
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 16px;
    padding: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-light);
}

.contact-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--surface-light);
    border: 1px solid var(--surface-light);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--surface-light);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn-primary {
    background: var(--gradient);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: var(--primary);
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        padding: 1.25rem;
    }
}

/* ANIMATIONS */
.appear-from-bottom {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out !important;
}

.appear-from-bottom.visible {
    opacity: 1;
    transform: translateY(0) !important;
}

/* Ensure all cards have consistent animation */
.solution-card.appear-from-bottom,
.portfolio-card.appear-from-bottom,
.value-card.appear-from-bottom,
.location-card.appear-from-bottom,
.media-card.appear-from-bottom,
.media-card-with-image.appear-from-bottom {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out !important;
}

/* Project page figure fixes */
.figure-img { border: none !important; box-shadow: none !important; }
.figure { margin: 0 !important; display: block; }
.figure img { margin: 0 !important; padding: 0 !important; display: block; }
.figure-caption { color: var(--text-light) !important; font-size: 0.85rem; margin-top: 0.5rem; }
.row.align-items-start > div { align-self: flex-start; }
.row.justify-content-between { justify-content: space-between; }
.row.justify-content-between > div { flex: 0 0 auto; width: auto; }
.row.justify-content-between > div:last-child { margin-left: auto; }
.pdf-link { color: var(--text-light); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; }
.pdf-link:hover { color: var(--accent); }
.pdf-link-left { justify-content: flex-start; }
.pdf-link-right { justify-content: flex-end; }
.figure-center { text-align: center; }
.figure-center .figure { display: inline-block; text-align: left; }
.align-top { align-items: flex-start; }

/* HOMEPAGE EXPERTISE CARD */
.expertise-card {
    background: var(--surface) !important;
    border: 1px solid var(--surface-light) !important;
    border-radius: 12px !important;
    padding: 1.25rem !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    height: 180px !important;
    max-width: 340px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-shadow: 0 0 2px rgba(0, 212, 255, 0.15) !important;
}
.expertise-card:hover {
    border-color: var(--surface-light) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

/* ABOUT PAGE */
.section-title-no-line { color: var(--text-light); font-size: 2rem; font-weight: 600; margin-bottom: 1.5rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 992px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { background: var(--surface); border: 1px solid var(--surface-light); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; position: relative; overflow: hidden; height: 100%; text-align: left; display: flex; flex-direction: column; box-shadow: 0 0 2px rgba(0, 212, 255, 0.15); }
.value-card:hover { border-color: var(--surface-light); transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); }
.value-icon-title { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.value-icon { width: 56px; height: 56px; background: var(--surface-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; }
.value-card h4 { color: var(--text-light); font-size: 1.25rem; margin-bottom: 0; }
.value-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }
.locations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 992px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .locations-grid { grid-template-columns: 1fr; } }
.location-card { background: var(--surface); padding: 1.5rem; border-radius: 8px; text-align: center; box-shadow: 0 0 2px rgba(0, 212, 255, 0.15); }
.location-icon { font-size: 2rem; margin-bottom: 1rem; }
.location-card h4 { color: var(--text-light); margin-bottom: 0.5rem; }
.location-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }
.clients-list { list-style: none; padding: 0; }
.clients-list li { padding: 0.5rem 0; color: var(--text-muted); }
.history-list { list-style: none; padding: 0; }
.history-list li { padding: 0.75rem 0; color: var(--text-muted); }
.history-icon { width: 40px; height: 40px; background: var(--surface-light); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; margin-right: 0.75rem; font-size: 1rem; }
.history-list li a { color: var(--accent); text-decoration: none; }
.history-list li a:hover { text-decoration: underline; }
.business-list { list-style: none; padding: 0; }
.business-list li { padding: 0.75rem 0; color: var(--text-muted); padding-left: 1.5rem; position: relative; }
.business-list li::before { content: ''; position: absolute; left: 0; top: 1rem; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.chart-container { background: var(--surface); padding: 2rem; border-radius: 16px; margin: 2rem 0; }
@media (max-width: 576px) { .chart-container { padding: 0; } }

/* CERTIFICATIONS PAGE */
.section-title-no-line { color: var(--text-light); font-size: 2rem; font-weight: 600; margin-bottom: 1.5rem; }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; justify-items: center; }
@media (max-width: 992px) { .cert-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (max-width: 768px) { .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 576px) { .cert-grid { grid-template-columns: 1fr; gap: 1rem; } .cert-grid > div:empty { display: none; } .cert-grid > a { grid-column: 1 !important; } }
.cert-card { background: var(--surface); border: 1px solid var(--surface-light); border-radius: 12px; padding: 1.25rem; transition: all 0.3s ease; text-align: center; display: flex; flex-direction: column; justify-content: space-between; height: 180px; width: 100%; max-width: 280px; text-decoration: none; box-sizing: border-box; box-shadow: 0 0 2px rgba(0, 212, 255, 0.15); }
.cert-card:hover { border-color: var(--surface-light); transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); }
.cert-card img { max-width: 100%; width: auto; height: auto; max-height: 80px; margin: auto 0; border-radius: 6px; object-fit: contain; }
.cert-card p { color: var(--text-muted); font-size: 0.8rem; margin: 0.5rem 0 0 0; }
.cert-section-title { color: var(--text-light); font-size: 1.5rem; font-weight: 600; margin-bottom: 1.5rem; text-align: center; display: block; }
.cert-grid-single { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; justify-items: center; }
@media (max-width: 992px) { .cert-grid-single { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (max-width: 768px) { .cert-grid-single { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (max-width: 576px) { .cert-grid-single { grid-template-columns: 1fr; gap: 1rem; } .cert-grid-single > div:empty { display: none; } .cert-grid-single > a { grid-column: 1 !important; } }
@media (min-width: 577px) and (max-width: 992px) { .cert-grid-single > a { grid-column: 2; } }
@media (min-width: 577px) { .cert-grid-single > div:empty { visibility: hidden; min-height: 180px; } .cert-grid-single > div:empty::after { content: ''; display: block; } }
@media (min-width: 577px) { .cert-grid > div:empty { visibility: hidden; min-height: 180px; } .cert-grid > div:empty::after { content: ''; display: block; } }
.cert-grid-centered { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; justify-items: center; }
@media (max-width: 992px) { .cert-grid-centered { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (max-width: 768px) { .cert-grid-centered { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 576px) { .cert-grid-centered { grid-template-columns: 1fr; gap: 1rem; } }
@media (min-width: 577px) { .cert-grid-centered > a:last-child { grid-column: 2; } }
.cert-grid-2col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; justify-items: center; max-width: 620px; margin: 0 auto; }
@media (max-width: 768px) { .cert-grid-2col { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 576px) { .cert-grid-2col { grid-template-columns: 1fr; gap: 1rem; } }

/* PARTNERS PAGE */
.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (max-width: 768px) { .partners-grid { grid-template-columns: 1fr; } }
.partner-category { margin-bottom: 2rem; }
.partner-category h4 { color: var(--accent); font-size: 1.25rem; margin-bottom: 1rem; }
.partner-category ul { list-style: none; padding: 0; }
.partner-category li { color: var(--text-muted); padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.partner-category li::before { content: ''; position: absolute; left: 0; top: 0.9rem; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* CONTACT PAGE */
.location-card iframe { border-radius: 8px; margin: 1rem 0; }
.location-card a { text-decoration: none; }

/* MEDIA ARTICLE PAGE */
.article-back-btn { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-muted); text-decoration: none; font-size: 0.85rem; margin-bottom: 1rem; transition: color 0.3s ease; }
.article-back-btn:hover { color: var(--accent); }
.article-header { margin-bottom: 2rem; }
.article-title { font-size: 2rem; font-weight: 700; color: var(--text-light); margin-bottom: 0.5rem; line-height: 1.3; }
.article-date { color: var(--accent); font-size: 1rem; font-weight: 500; }
.article-content { color: var(--text-light); line-height: 1.8; }
.article-content p { margin-bottom: 1.5rem; font-weight: 400; text-align: justify; }
.article-content h3 { color: var(--text-light); font-size: 1.5rem; margin-top: 2.5rem; font-weight: 600; }
.article-content h4 { color: var(--text-light); font-size: 1.25rem; margin-top: 2rem; font-weight: 600; }
.article-content ul { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.article-content li { margin-bottom: 0.5rem; }
.article-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 1.5rem 0; display: block; }
.article-content .img-full-width { width: 100%; }
.article-content .img-row { display: flex; flex-wrap: wrap; margin: 1.5rem 0; gap: 1rem; }
.article-content .img-row .img-col { flex: 1; min-width: calc(50% - 0.5rem); }
.article-content .img-row .img-col img { width: 100%; margin: 0; }
.article-content video { width: 100%; max-width: 100%; border-radius: 8px; margin: 1.5rem 0; border: 1px solid var(--surface-light); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.article-image-caption { font-size: 0.75rem; font-weight: 300; color: var(--text-muted); text-align: left; margin-bottom: 0.25rem; font-style: italic; }
.article-references { margin-top: 0; padding-top: 0; border-top: none; }
.article-references p { margin-bottom: 0.25rem; font-weight: 400; }
.article-references a { color: var(--accent); text-decoration: none; }
.article-references a:hover { text-decoration: underline; }
.article-divider { border: none; border-top: 1px solid var(--surface-light); margin: 2rem 0; }
.back-to-top { margin-top: 1.5rem; text-align: right; }
.back-to-top a { color: var(--accent); text-decoration: none; font-size: 0.9rem; }
.back-to-top a:hover { text-decoration: underline; }

/* PORTFOLIO GRID & CARDS */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 992px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .portfolio-grid { grid-template-columns: 1fr; } }
.portfolio-card { background-color: var(--surface); border: 1px solid var(--surface-light); border-radius: 10px; overflow: hidden; transition: all 0.3s ease; display: block; text-decoration: none; color: inherit; }
.portfolio-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); }
.portfolio-card img { width: 100%; height: 200px; object-fit: cover; }
.portfolio-card .card-content { padding: 1rem; text-align: center; }
.portfolio-card h4 { color: var(--text-light); font-size: 1.1rem; margin: 0.75rem 0 0.5rem 0; }
.portfolio-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* BREADCRUMB NAV */
.breadcrumb-nav { margin-bottom: 1.5rem; }
.breadcrumb-nav a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; }
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav span { color: var(--text-muted); font-size: 0.9rem; margin: 0 0.5rem; }
.breadcrumb-nav .current { color: var(--text-light); }
