/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Highbrow Colors */
    --color-bg-deep: #070B0F;
    --color-accent: #F26522;
    --color-btn-dark: #2B2F36;
    --color-white: #ffffff;
    --color-gray-text: #CFCFCF;

    --color-primary: var(--color-accent);
    --color-secondary: #ffb347;

    --gradient-highbrow: linear-gradient(135deg, var(--color-accent), #ffb347);
    --gradient-primary: var(--gradient-highbrow);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 5%;
    --container-max-width: 1200px;

    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-gray-900);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-white {
    color: var(--color-white) !important;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: #070B0F;
    padding: 18px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo span {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

/* Link Underline Slide Animation */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(45deg);
    margin-left: 8px;
    margin-bottom: 3px;
    transition: var(--transition-smooth);
    opacity: 0.6;
}

.has-mega-menu:hover .nav-arrow {
    transform: rotate(-135deg);
    margin-bottom: -2px;
    border-color: var(--color-accent);
}

/* Mega Menu Base */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    margin-top: 20px;
    background: #111111;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0.3s;
    z-index: 999;
    width: 700px;
    max-width: 1200px;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* About Mega Menu (2 Columns) */
.about-mega {
    min-width: 600px;
}

.about-mega .mega-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.mega-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mega-icon {
    font-size: 1.2rem;
    color: var(--color-accent);
    background: rgba(242, 101, 34, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.mega-text {
    display: flex;
    flex-direction: column;
}

.mega-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.mega-desc {
    font-size: 0.85rem;
    color: var(--color-gray-text);
    line-height: 1.4;
}

/* Services Mega Menu (3 Columns) */
.services-mega {
    min-width: 800px;
}

.services-mega .mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mega-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.mega-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(242, 101, 34, 0.1);
    border-color: var(--color-accent);
}

.mega-card .mega-icon {
    margin-bottom: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-smooth);
}

/* Highbrow Hero Section */
.hero.dark-theme {
    position: relative;
    min-height: 100vh;
    background-color: var(--color-bg-deep);
    overflow: visible;
    display: flex;
    align-items: center;
    padding: 0 5%;
    z-index: 1;
}

.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(242, 101, 34, 0.05), transparent 70%);
    animation: heroZoom 20s linear infinite;
    z-index: 1;
}

.hero-light-streaks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 100px,
            rgba(242, 101, 34, 0.03) 101px,
            transparent 102px);
    animation: moveStreaks 15s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes moveStreaks {
    from {
        transform: translateX(-100px);
    }

    to {
        transform: translateX(0);
    }
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(242, 101, 34, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 101, 34, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    perspective: 1000px;
    transform: rotateX(45deg) scale(2);
    transform-origin: center top;
    z-index: 0;
    opacity: 0.5;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.hero-container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    display: block;
    /* Highbrow is left-aligned, no split */
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
    max-width: 800px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(30px);
}

.hero-title .accent {
    color: var(--color-accent);
    position: relative;
    text-shadow: 0 0 15px rgba(242, 101, 34, 0.4);
}

.hero-title .accent::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.15) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

.hero-subtext {
    font-size: 1.4rem;
    color: var(--color-gray-text);
    margin-bottom: 48px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
}

/* Primary Dark Grey Arrow Button */
.btn-highbrow {
    background-color: var(--color-btn-dark);
    color: var(--color-white);
    padding: 18px 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
}

.btn-highbrow .arrow-icon {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease;
}

.btn-highbrow:hover {
    background-color: #3d434d;
    box-shadow: 0 0 20px rgba(242, 101, 34, 0.2);
}

.btn-highbrow:hover .arrow-icon {
    transform: translateX(5px);
}

/* Responsive Mobile Styles */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        /* Hide for mobile drawer later */
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #070B0F;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 25px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        display: flex;
        max-height: 80vh;
        overflow-y: auto;
    }

    .has-mega-menu {
        width: 100%;
        text-align: center;
    }

    .mega-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        min-width: unset;
        opacity: 1;
        visibility: visible;
        display: none;
        padding: 20px;
        background: rgba(255, 255, 255, 0.03);
        box-shadow: none;
        border: none;
        border-radius: 0;
    }

    .mega-menu.open {
        display: block;
    }

    .services-mega {
        min-width: unset;
    }

    .mega-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtext {
        margin: 0 auto 40px;
    }

    .hero-btns {
        justify-content: center;
    }

    .navbar .btn-primary {
        display: none;
        /* Hide on mobile to save space */
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.arrow {
    width: 30px;
    height: 30px;
    border-bottom: 3px solid var(--color-white);
    border-right: 3px solid var(--color-white);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
    opacity: 0.5;
}

@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    40% {
        transform: translateY(-10px) rotate(45deg);
    }

    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* About Section */
.about {
    background: #0a0a0a;
    padding: 100px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--color-white);
}

.about-content .about-description {
    margin-bottom: 35px;
    color: var(--color-gray-text);
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content {
        order: 1;
    }

    .about-image {
        order: 2;
        margin-top: 30px;
    }
}

/* Services Section */
.services {
    background-color: #0d0d0d;
    padding: 100px 0;
}

.services .section-title {
    color: var(--color-white);
    margin-bottom: 60px;
    font-size: 3.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background-color: #121212;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: #161616;
    border-color: rgba(242, 101, 34, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.service-icon {
    margin-bottom: 25px;
    color: var(--color-primary);
}

.service-card h3 {
    color: var(--color-white);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--color-gray-text);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
    /* Pushes button to bottom */
}

.btn.full-width {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
}

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

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

/* Home Impact Section */
.home-impact {
    background-color: #080808;
    padding: 100px 0;
}

.home-impact .section-title,
.home-impact .section-title.fade-in.visible {
    font-size: 3.2rem;
    transform: translateY(-20px);
}

.home-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.home-impact-card {
    background-color: #121212;
    padding: 50px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 4px solid var(--color-primary);
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-impact-card:hover {
    transform: translateY(-5px);
    background-color: #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.impact-icon-wrapper {
    margin-bottom: 20px;
}

.home-impact-card .impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.home-impact-card .impact-label {
    font-size: 1rem;
    color: var(--color-gray-text);
}

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

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

/* Clients Section */
.clients {
    background-color: #030303;
    padding: 100px 0;
}

.clients .section-title {
    font-size: 3.2rem;
    transform: translateY(-20px);
}

.clients-panel {
    background-color: #121212;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.client-logo-item {
    transition: var(--transition-smooth);
    opacity: 0.7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Public Services Section */
.public-services {
    background-color: #050505;
    padding: 100px 0;
}

.public-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.public-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--color-white);
}

.public-content .public-description {
    margin-bottom: 35px;
    color: var(--color-gray-text);
    font-size: 1.1rem;
    line-height: 1.7;
}

.public-image img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 12px 30px;
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 10px 20px rgba(242, 101, 34, 0.3);
}

@media (max-width: 992px) {
    .public-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .public-content {
        order: 1;
    }

    .public-image {
        order: 2;
        margin-top: 30px;
    }
}

/* CTA & Newsletter Section */
.home-cta-newsletter {
    background-color: #000000;
    padding: 120px 0 80px;
}

/* CTA Block */
.cta-block {
    margin-bottom: 150px;
}

.cta-block h2 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 25px;
}

.cta-block p {
    font-size: 1.2rem;
    color: var(--color-gray-text);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 8px;
}

/* Newsletter Block */
.newsletter-block {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Optional subtle divider if needed, removed conceptually to match image cleanly, but using proper spacing */
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.newsletter-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    width: 100%;
    gap: 15px;
}

.newsletter-input {
    flex-grow: 1;
    background-color: #1a1c23;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px 25px;
    color: var(--color-white);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.newsletter-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(242, 101, 34, 0.2);
}

.newsletter-input::placeholder {
    color: var(--color-gray-text);
}

.subscribe-btn {
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cta-block h2 {
        font-size: 2.2rem;
    }

    .cta-block p {
        font-size: 1rem;
    }

    .cta-block {
        margin-bottom: 80px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .subscribe-btn {
        width: 100%;
    }
}

/* Footer */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 24px;
    display: block;
}

.footer-brand p {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer h4 {
    margin-bottom: 24px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    opacity: 0.7;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.footer-contact p {
    opacity: 0.7;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    flex: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.5;
}

.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {

    .hero-container,
    .about-container,
    .highlight-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-content p,
    .about-content p,
    .highlight-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .nav-links {
        display: none;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Hero */
.about-hero {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: var(--color-bg-deep);
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/about-hero.png');
    background-size: cover;
    background-position: center;
    animation: aboutHeroZoom 15s linear infinite;
    z-index: 1;
}

@keyframes aboutHeroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.85) 80%, rgba(0, 0, 0, 1) 100%);
    z-index: 2;
}

.about-hero-container {
    position: relative;
    z-index: 3;
    padding-left: 5%;
}

.about-hero-content {
    max-width: 800px;
}

.about-hero-content h1 {
    font-size: 4.5rem;
    color: var(--color-white);
    margin-top: 20px;
    line-height: 1.1;
    font-weight: 800;
}

.about-hero-content p {
    font-size: 1.4rem;
    color: var(--color-gray-text);
    margin-top: 15px;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.breadcrumb a {
    color: var(--color-gray-text);
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--color-white);
}

.breadcrumb .separator {
    color: var(--color-gray-text);
    opacity: 0.5;
}

.breadcrumb .current {
    color: var(--color-accent);
}

/* Page Transitions */
body.inner-page .navbar {
    background: #070B0F !important;
    padding: 18px 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Who We Are Section */
.section-divider {
    height: 1px;
    background-color: #000000;
    margin: 0;
}

.who-we-are {
    background-color: #070B0F;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.who-we-are .section-title,
.who-we-are .section-title.fade-in.visible {
    font-size: 3.2rem;
    transform: translateY(-20px);
}

.who-we-are .section-title,
.who-we-are .section-title span {
    color: var(--color-white) !important;
    -webkit-text-fill-color: var(--color-white) !important;
    background: none !important;
}

.who-we-are::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.who-we-are-text p {
    font-size: 1.2rem;
    color: #CFCFCF;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 600px;
}

.who-we-are-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.who-we-are-image:hover {
    transform: scale(1.02);
}

.who-we-are-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Scroll Animations */
.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-left.visible,
.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .who-we-are-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .who-we-are-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mission & Vision Section */
.mission-vision {
    background-color: #070B0F;
    padding: 80px 0;
}

.mission-vision-card {
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 101, 34, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mission-vision-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.mission-vision-card .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-vision-card .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent) !important;
    margin: 0;
}

.mission-vision-card .card-content p {
    font-size: 1.1rem;
    color: #CFCFCF;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .mission-vision-card {
        padding: 30px;
    }

    .mission-vision-card .card-title {
        font-size: 1.5rem;
    }
}

/* Our Impact Section */
.our-impact .section-title,
.our-impact .section-title.fade-in.visible {
    font-size: 3.2rem;
    transform: translateY(-20px);
    color: var(--color-white) !important;
    background: none !important;
    -webkit-text-fill-color: var(--color-white) !important;
}

.our-impact {
    background-color: #070B0F;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.our-impact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.impact-card {
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 50px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.impact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(242, 101, 34, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.impact-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.impact-label {
    font-size: 1.1rem;
    color: var(--color-gray-text);
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

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

    .impact-number {
        font-size: 2.5rem;
    }
}

/* Our Core Values Section */
.core-values {
    background-color: #070B0F;
    padding: 100px 0;
}

.values-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.section-title-orange {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: #161616;
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.value-card:hover {
    transform: translateY(-5px);
    background-color: #1a1a1a;
    border-color: rgba(242, 101, 34, 0.2);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.value-desc {
    font-size: 1.05rem;
    color: var(--color-gray-text);
    line-height: 1.6;
    margin: 0;
}

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

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

    .section-title-orange {
        font-size: 2.2rem;
    }
}

/* CTA Section */
.about-cta {
    background-color: #070B0F;
    padding: 120px 0;
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 25px;
}

.cta-subtext {
    font-size: 1.25rem;
    color: var(--color-gray-text);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Newsletter Section */
.about-newsletter {
    background-color: #000000;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    white-space: nowrap;
}

.newsletter-form-inline {
    display: flex;
    flex-grow: 1;
    max-width: 800px;
    gap: 15px;
}

.newsletter-form-inline input {
    flex-grow: 1;
    background: rgba(43, 47, 54, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.newsletter-form-inline input:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(43, 47, 54, 0.8);
}

.btn-subscribe {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    padding: 0 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: #ff7a3d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(242, 101, 34, 0.2);
}

@media (max-width: 992px) {
    .cta-title {
        font-size: 2.8rem;
    }

    .newsletter-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .newsletter-form-inline {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .cta-title {
        font-size: 2.2rem;
    }

    .newsletter-form-inline {
        flex-direction: column;
    }

    .btn-subscribe {
        padding: 15px;
    }
}

/* Safe & Smart City Page Styles */
.smart-city-hero {
    position: relative;
    padding: 150px 0 100px;
    background-color: #050505;
    color: var(--color-white);
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.smart-city-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Using a linear gradient as a placeholder for a dark server room/tech background if an image isn't available */
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.7), #050505), url('assets/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.6;
    z-index: 0;
}

.smart-city-hero .services-hero-container {
    position: relative;
    z-index: 2;
}

.smart-city-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.smart-city-hero .breadcrumb {
    background-color: rgba(26, 28, 35, 0.8);
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.smart-city-intro {
    background-color: #050505;
    padding: 80px 0 60px;
}

/* Solutions & Services Section */
.smart-city-solutions {
    background-color: #050505;
    padding: 20px 0 120px;
}

.solutions-panel {
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
}

.solutions-panel-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.col-header {
    margin-bottom: 25px;
    text-align: center;
}

.col-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.col-header p {
    color: var(--color-white);
    font-size: 0.95rem;
}

/* Process List (Left Column) */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #9b72ff;
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.process-text {
    color: var(--color-white);
    font-weight: 500;
    font-size: 1rem;
}

/* Offerings List (Right Column) */
.offerings-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offering-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid;
    /* Color driven by inline style */
    border-radius: 6px;
    padding: 16px 20px;
}

.offering-title {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Careers Hero Section */
.careers-hero {
    height: 70vh;
    min-height: 500px;
}

.careers-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.85)),
        url('assets/hero-vibe.png') center/cover no-repeat;
    z-index: 0;
}

.careers-hero .services-hero-container {
    max-width: 650px;
    margin-left: 0;
    padding-left: 0;
}

.careers-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
}

.careers-hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-gray-text);
    line-height: 1.6;
    max-width: 550px;
}

@media (max-width: 768px) {
    .careers-hero {
        height: 60vh;
        min-height: 400px;
    }

    .careers-hero h1 {
        font-size: 2.5rem;
    }
}

/* Why Work With Us Section */
.why-work-with-us {
    background-color: #050505;
    padding: 100px 0 120px;
}

.why-work-with-us .section-title {
    margin-bottom: 60px;
}

.why-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-work-card {
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 35px 30px;
    transition: var(--transition-smooth);
}

.why-work-card:hover {
    border-color: rgba(242, 101, 34, 0.25);
    transform: translateY(-3px);
}

.why-work-icon {
    margin-bottom: 25px;
}

.why-work-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.why-work-desc {
    font-size: 0.95rem;
    color: var(--color-gray-text);
    line-height: 1.6;
    margin: 0;
}

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

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

/* Our Culture Section */
.our-culture {
    background-color: #0a0a0a;
    padding: 100px 0 120px;
}

.culture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.culture-text p {
    color: var(--color-gray-text);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.culture-text p:last-child {
    margin-bottom: 0;
}

.culture-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Open Positions Section */
.open-positions {
    background-color: #050505;
    padding: 100px 0 120px;
}

.open-positions .section-title {
    margin-bottom: 50px;
}

/* Search Bar */
.jobs-search-bar {
    position: relative;
    display: flex;
    align-items: center;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px 20px;
    margin-bottom: 20px;
}

.jobs-search-icon {
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    margin-right: 12px;
}

.jobs-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-white);
    font-size: 0.95rem;
    font-family: inherit;
}

.jobs-search-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.jobs-search-clear {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0 5px;
    transition: color 0.2s;
}

.jobs-search-clear:hover {
    color: var(--color-white);
}

/* Results Meta */
.jobs-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.jobs-count {
    font-size: 0.9rem;
    color: var(--color-gray-text);
}

.jobs-sort {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--color-gray-text);
    cursor: pointer;
}

/* Category Heading */
.jobs-category {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 25px;
}

/* Job Cards */
.job-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.job-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 30px;
    cursor: pointer;
}

.job-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.job-card-subtitle {
    font-size: 0.9rem;
    color: var(--color-gray-text);
    margin: 0;
}

.job-toggle-btn {
    background: #F26522;
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.job-card-open .job-toggle-btn {
    transform: rotate(180deg);
}

/* Job Details (Collapsed by default) */
.job-card-details {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.job-card-open .job-card-details {
    max-height: 400px;
    padding: 0 30px 30px;
}

.job-meta-line {
    font-size: 0.9rem;
    color: var(--color-gray-text);
    margin-bottom: 10px;
}

.job-skills {
    font-size: 0.9rem;
    color: var(--color-gray-text);
    margin-bottom: 15px;
}

.job-posted {
    font-size: 0.9rem;
    color: var(--color-white);
    margin-bottom: 5px;
}

.job-number {
    font-size: 0.85rem;
    color: var(--color-gray-text);
    margin-bottom: 15px;
}

.job-read-more {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0;
    transition: color 0.2s;
}

.job-read-more:hover {
    color: var(--color-primary);
}

.job-apply-btn {
    float: right;
    margin-top: -30px;
    padding: 10px 25px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .job-card-header {
        padding: 20px;
    }

    .job-card-details {
        padding: 0 20px;
    }

    .job-card-open .job-card-details {
        padding: 0 20px 20px;
    }

    .job-apply-btn {
        float: none;
        margin-top: 15px;
        display: inline-block;
    }
}

/* Jobs Pagination */
.jobs-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    padding: 20px 0;
}

.page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--color-gray-text);
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.page-num:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
}

.page-num.active {
    color: var(--color-white);
    border-bottom: 2px solid #F26522;
    border-radius: 0;
}

.page-dots {
    font-size: 0.9rem;
    color: var(--color-gray-text);
    padding: 0 5px;
}

.page-next {
    font-size: 1.1rem;
}

/* Powered By */
.jobs-powered-by {
    text-align: center;
    padding: 40px 0 0;
    margin-top: 30px;
}

.powered-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 30px;
}

.jobs-powered-by p {
    font-size: 0.95rem;
    color: var(--color-gray-text);
}

.jobs-powered-by a {
    color: var(--color-white);
    transition: color 0.2s;
}

.jobs-powered-by a:hover {
    color: #F26522;
}

/* Privacy Policy Page */
.policy-hero {
    background-color: #0a0a0a;
    padding: 140px 0 60px;
}

.policy-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 15px;
}

.policy-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.policy-breadcrumbs a {
    color: var(--color-gray-text);
    transition: color 0.2s;
}

.policy-breadcrumbs a:hover {
    color: var(--color-white);
}

.policy-breadcrumbs span {
    color: var(--color-gray-text);
}

.breadcrumb-active {
    color: #F26522 !important;
}

/* Policy Content */
.policy-content {
    background-color: #050505;
    padding: 80px 0 100px;
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #F26522;
    margin-bottom: 15px;
    font-style: italic;
}

.policy-section p {
    font-size: 1.05rem;
    color: var(--color-gray-text);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 2.2rem;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }
}

/* Emerging Services Section */
.emerging-services {
    background-color: #050505;
    background-image: repeating-linear-gradient(-45deg,
            transparent,
            transparent 80px,
            rgba(255, 255, 255, 0.008) 80px,
            rgba(255, 255, 255, 0.008) 81px);
    padding: 100px 0 120px;
}

.emerging-services .section-title {
    margin-bottom: 60px;
}

.emerging-category {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F26522;
    margin-bottom: 15px;
    margin-top: 40px;
}

.emerging-category:first-of-type {
    margin-top: 0;
}

.emerging-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.emerging-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 16px 22px;
    transition: var(--transition-smooth);
    cursor: default;
}

.emerging-chip:hover {
    border-color: rgba(242, 101, 34, 0.25);
    transform: translateY(-2px);
}

.emerging-chip span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-white);
}

.emerging-chip svg {
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .emerging-chip {
        padding: 12px 18px;
    }

    .emerging-chip span {
        font-size: 0.85rem;
    }
}

/* Careers CTA Section */
.careers-cta {
    background-color: #0d0d0d;
    background-image: repeating-linear-gradient(-45deg,
            transparent,
            transparent 80px,
            rgba(255, 255, 255, 0.01) 80px,
            rgba(255, 255, 255, 0.01) 81px);
    padding: 120px 0;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .solutions-panel {
        padding: 30px 20px;
    }
}

/* Safe & Smart City CTA & Newsletter Section */
.smart-city-cta-newsletter {
    background-color: #000000;
    padding: 0;
}

.smart-city-cta-block {
    background-color: #111111;
    padding: 120px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* clean separation line */
}

.smart-city-cta-text {
    font-size: 1.25rem;
    color: var(--color-gray-text);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-dual-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.smart-city-newsletter-wrapper {
    background-color: #000000;
    padding: 80px 0 100px;
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .cta-dual-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-outline-light {
        width: 100%;
        max-width: 300px;
    }
}

/* Footer Redesign */
.footer {
    background-color: #000000;
    padding: 60px 0 30px;
    color: var(--color-white);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-white);
}

.brand-col .logo {
    font-size: 2rem;
    margin-bottom: 20px;
}

.brand-desc {
    color: var(--color-gray-text);
    line-height: 1.6;
    max-width: 300px;
}

.links-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.links-subgrid ul {
    list-style: none;
    padding: 0;
}

.links-subgrid ul li {
    margin-bottom: 15px;
}

.links-subgrid ul li a {
    color: var(--color-gray-text);
    transition: var(--transition-smooth);
}

.links-subgrid ul li a:hover {
    color: var(--color-accent);
}

.contact-col .social-links {
    margin-bottom: 25px;
}

.contact-col .social-links a {
    color: var(--color-gray-text);
    transition: var(--transition-smooth);
}

.contact-col .social-links a:hover {
    color: var(--color-accent);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--color-gray-text);
    line-height: 1.4;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

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

    .contact-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-col {
        grid-column: span 1;
    }

    .links-subgrid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: var(--color-navy);
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.contact-hero h1 {
    font-size: 5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 25px;
}

.contact-hero p {
    font-size: 1.4rem;
    color: var(--color-gray-text);
    line-height: 1.6;
}

.contact-info {
    background-color: #070B0F;
    padding: 100px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 101, 34, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-card-icon {
    margin-bottom: 25px;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
}

.contact-card-text {
    font-size: 1.1rem;
    color: var(--color-gray-text);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .contact-hero h1 {
        font-size: 3.5rem;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .contact-hero h1 {
        font-size: 2.8rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section Styles */
.container-large {
    max-width: 1300px;
}

.contact-form-section {
    background-color: #070B0F;
    padding: 60px 0 100px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
}

.section-title-alt {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 40px;
}

.contact-main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    color: var(--color-white);
    font-family: inherit;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1.1rem;
    border-radius: 8px;
    margin-top: 10px;
}

.form-disclaimer {
    margin-top: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 30px;
}

.form-disclaimer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 20px;
}

.form-disclaimer p:last-child {
    margin-bottom: 0;
}

.form-disclaimer a {
    color: var(--color-accent);
}

.map-container {
    margin-bottom: 40px;
}

.additional-info-card {
    background-color: #121212;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.additional-info-card h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 25px;
}

.additional-info-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.additional-info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-gray-text);
}

.additional-info-list li strong {
    color: var(--color-white);
}

@media (max-width: 1100px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

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

    .form-disclaimer {
        padding: 20px;
    }
}

/* Homepage Hero Redesign */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.hero-bg-animated {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    transform: translate(-50%, -50%);
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: backgroundZoom 30s linear infinite alternate;
    opacity: 0.6;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

@keyframes backgroundZoom {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-title .accent {
    color: var(--color-accent);
    text-shadow: 0 0 30px rgba(242, 101, 34, 0.3);
}

.hero-subtext {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* Glassmorphism Button */
.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 35px;
    border-radius: 12px;
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--color-accent);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(242, 101, 34, 0.3);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-glass:hover .btn-arrow {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

/* Hero Aesthetic Refinement */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #000;
}

.hero-bg-animated {
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: brightness(0.6);
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-title .accent {
    color: var(--color-accent);
    text-shadow: 0 0 30px rgba(242, 101, 34, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-text);
    max-width: 600px;
    margin-bottom: 45px;
    line-height: 1.6;
}

.btn-hero-primary {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.btn-hero-primary svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-hero-primary:hover svg {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Services Page Styles */
.services-hero {
    position: relative;
    height: 45vh;
    width: 100%;
    overflow: visible;
    display: flex;
    align-items: center;
    background-color: #000;
    z-index: 1;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.5;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.services-hero-container {
    position: relative;
    z-index: 3;
}

.services-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb a {
    color: var(--color-gray-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--color-white);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
}

.breadcrumb .current {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.services-detailed {
    background-color: #070B0F;
    padding: 100px 0;
}

@media (max-width: 768px) {
    .services-hero {
        height: 40vh;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }
}

/* Expertise Section Styles */
.expertise-section {
    background-color: #000;
    padding: 100px 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.expertise-card {
    background-color: #0D0D0D;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.expertise-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 101, 34, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.expertise-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(242, 101, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-card h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 700;
}

.expertise-desc {
    color: var(--color-gray-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 30px;
    min-height: 45px;
}

.expertise-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 12px;
}

.stat-value {
    color: var(--color-accent);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    line-height: 1.3;
    font-weight: 500;
}

.btn-expertise {
    width: 100%;
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    transition: var(--transition-smooth);
}

.btn-expertise:hover {
    background-color: #d95a1e;
    transform: translateY(-2px);
}

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

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

/* Staffing Page Styles */
.staffing-hero .services-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&q=80&w=2000');
}

.empowerment-section {
    background-color: #0d0d0d;
    padding: 100px 0;
}

.empowerment-section .section-title {
    color: var(--color-white);
}

.empowerment-text {
    max-width: 800px;
    margin: 40px auto 0;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-gray-text);
}

/* Staffing Solutions Section */
.staffing-solutions {
    background-color: #070B0F;
    padding: 100px 0;
}

.staffing-solutions .section-title {
    color: var(--color-white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.solution-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(242, 101, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-item span {
    color: var(--color-white);
    font-size: 1.15rem;
    font-weight: 600;
}

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

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

/* Staffing Impact Section */
.staffing-impact {
    background-color: #0d0d0d;
    padding: 100px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.impact-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.impact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 101, 34, 0.2);
}

.impact-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.impact-metric {
    color: var(--color-white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.impact-label {
    color: var(--color-gray-text);
    font-size: 1rem;
    font-weight: 500;
}

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

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

/* Impact in Numbers Section */
.impact-section {
    background-color: #000;
    padding: 100px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.impact-card {
    background-color: #111;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.impact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 101, 34, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.impact-icon {
    margin-bottom: 5px;
}

.impact-value {
    color: var(--color-white);
    font-size: 2.5rem;
    font-weight: 800;
}

.impact-label {
    color: #888;
    font-size: 1rem;
    font-weight: 500;
}

/* Specific layout for 5 items: 3 on top, 2 on bot centered */
@media (min-width: 1025px) {
    .impact-card:nth-child(4) {
        grid-column: 1 / span 1.5;
        margin-left: 50%;
    }

    .impact-card:nth-child(5) {
        grid-column: 2 / span 1.5;
        margin-right: 50%;
    }
}

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

    .impact-card:nth-child(5) {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

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

    .impact-card:nth-child(5) {
        grid-column: span 1;
        max-width: 100%;
    }
}

/* Impact Section Styles */
.impact-section {
    background-color: #000;
    padding: 100px 0;
}

.impact-section .section-title {
    color: var(--color-white);
    margin-bottom: 60px;
}

.impact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.impact-card {
    background-color: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    width: 380px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.impact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 101, 34, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.impact-icon {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-value {
    color: var(--color-white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.impact-label {
    color: var(--color-gray-text);
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .impact-card {
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .impact-card {
        width: 100%;
    }
}

/* Staffing Impact Section */
.staffing-impact {
    background-color: #0d0d0d;
    padding: 100px 0;
}

.staffing-impact .section-title {
    color: var(--color-white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
}

.impact-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.impact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 101, 34, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.impact-icon {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-stat {
    color: var(--color-white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.impact-desc {
    color: var(--color-gray-text);
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

/* 3+2 Centering Logic for Desktop */
@media (min-width: 1025px) {
    .impact-grid>div:nth-child(4) {
        grid-column: 1 / 2;
        margin-left: 50%;
    }

    .impact-grid>div:nth-child(5) {
        grid-column: 2 / 3;
        margin-left: 50%;
    }
}

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

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

/* Staffing Benefits Section */
.staffing-benefits {
    background-color: #080808;
    background-image: linear-gradient(315deg, #080808 0%, #0d0d0d 74%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.staffing-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 20px);
    pointer-events: none;
}

.staffing-benefits .section-title {
    color: var(--color-white);
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background-color: #1a1a1a;
    border-color: rgba(242, 101, 34, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.benefit-title {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.benefit-desc {
    color: var(--color-gray-text);
    font-size: 1.05rem;
    line-height: 1.6;
}

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

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

    .benefit-card {
        padding: 30px;
    }
}

/* Staffing CTA & Newsletter Sections */
.staffing-cta {
    background-color: #0c0c0c;
    padding: 120px 0;
}

.cta-title {
    color: var(--color-white);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.cta-text {
    color: var(--color-gray-text);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
}

.staffing-newsletter {
    background-color: #000;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-title {
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex-grow: 1;
    max-width: 900px;
}

.newsletter-form input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 25px;
    color: var(--color-white);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
    .newsletter-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .newsletter-form {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .cta-title {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Consulting Services Page */
.consulting-hero .services-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&q=80&w=2000');
}

.transformation-section {
    background-color: #0d0d0d;
    padding: 100px 0;
}

.transformation-section .section-title {
    color: var(--color-white);
}

.transformation-text {
    max-width: 800px;
    margin: 40px auto 0;
    color: var(--color-gray-text);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Consulting Solutions Grid */
.consulting-solutions {
    background-color: #0d0d0d;
    padding: 100px 0;
}

.consulting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.consulting-card {
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.consulting-card:hover {
    transform: translateY(-5px);
    background-color: #1a1a1a;
    border-color: rgba(242, 101, 34, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.consulting-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(242, 101, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.consulting-card-title {
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.consulting-card-desc {
    color: var(--color-gray-text);
    font-size: 1rem;
    line-height: 1.6;
}

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

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

    .consulting-card {
        padding: 40px 20px;
    }
}

/* Consulting Impact Section */
.consulting-impact {
    background-color: #0c0c0c;
    padding: 100px 0;
}

.consulting-impact .section-title {
    color: var(--color-white);
    margin-bottom: 60px;
}

.consulting-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

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

.consulting-solutions .section-title {
    color: var(--color-white);
}

/* AIML Services Page */
.aiml-hero .services-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&q=80&w=2000');
}

.intelligence-section {
    background-color: #0d0d0d;
    padding: 100px 0;
}

.intelligence-section .section-title {
    color: var(--color-white);
}

.intelligence-text {
    max-width: 900px;
    margin: 40px auto 0;
    color: var(--color-gray-text);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* AIML Services Page */
.aiml-hero .services-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1593508512255-86ab42a8e620?auto=format&fit=crop&q=80&w=2000');
}

.intelligence-section {
    background-color: #0d0d0d;
    padding: 100px 0;
}

.intelligence-section .section-title {
    color: var(--color-white);
}

.intelligence-text {
    max-width: 900px;
    margin: 40px auto 0;
    color: var(--color-gray-text);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* AIML How We Help Section */
.how-we-help {
    background-color: #080808;
    padding: 120px 0;
}

.how-we-help .section-title,
.how-we-help .section-subtitle {
    color: var(--color-white);
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 30px auto 0;
}

.how-we-help-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

.help-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.help-column.center-col {
    flex: 1.5;
}

.help-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
}

.left-col .help-feature-item {
    justify-content: flex-end;
    text-align: right;
}

.right-col .help-feature-item {
    justify-content: flex-start;
    text-align: left;
}

.help-feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(242, 101, 34, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.help-feature-title {
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 700;
}

/* Mockup UI Styling */
.mockup-ui {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.mockup-header {
    background: #1a1a1a;
    padding: 15px 25px;
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mockup-label {
    color: #666;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.mockup-content {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.mockup-prompt-box {
    background: #1c1c1c;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #333;
}

.mockup-responses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mockup-response-box {
    background: #1c1c1c;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-response-box.highlighted {
    border-color: rgba(242, 101, 34, 0.3);
    background: rgba(242, 101, 34, 0.05);
}

.mockup-response-box.highlighted .mockup-label {
    color: var(--color-primary);
}

.mockup-rating {
    margin-top: 10px;
}

.rating-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.rating-buttons span {
    flex: 1;
    height: 35px;
    background: #222;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.9rem;
    cursor: default;
}

.rating-buttons span.active {
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    color: #555;
    font-size: 0.7rem;
}

.section-footer-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .how-we-help-grid {
        flex-direction: column;
        gap: 60px;
    }

    .help-column {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .left-col .help-feature-item,
    .right-col .help-feature-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .help-column.center-col {
        order: -1;
    }
}

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

/* AIML Model Training Section */
.model-training {
    background-color: #0d0d0d;
    padding: 100px 0;
}

.model-training .section-title {
    color: var(--color-white);
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.training-card {
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.training-card:hover {
    transform: translateY(-5px);
    background-color: #1a1a1a;
    border-color: rgba(242, 101, 34, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.training-icon {
    width: 65px;
    height: 65px;
    background-color: rgba(242, 101, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.training-card-title {
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.training-card-desc {
    color: var(--color-gray-text);
    font-size: 1rem;
    line-height: 1.6;
}

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

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

    .training-card {
        padding: 40px 20px;
    }
}

/* Model Training & Data Grid */
.model-training {
    background-color: #0d0d0d;
    padding: 100px 0;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.training-card {
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.training-card:hover {
    transform: translateY(-5px);
    background-color: #1a1a1a;
    border-color: rgba(242, 101, 34, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.training-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(242, 101, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.training-card-title {
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.training-card-desc {
    color: var(--color-gray-text);
    font-size: 1rem;
    line-height: 1.6;
}

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

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

/* AI Applications & Integration Grid */
.ai-applications {
    background-color: #080808;
    padding: 100px 0;
}

.ai-applications .section-title {
    color: var(--color-white);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.apps-card {
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.apps-card:hover {
    transform: translateY(-5px);
    background-color: #1a1a1a;
    border-color: rgba(242, 101, 34, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.apps-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(242, 101, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.apps-card-title {
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.apps-card-desc {
    color: var(--color-gray-text);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 500px;
}

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

/* AIML Technologies Section */
.aiml-tech {
    background-color: #0c0c0c;
    padding: 100px 0;
}

.aiml-tech .section-title {
    color: var(--color-white);
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tech-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray-text);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: default;
}

.tech-pill:hover {
    background: rgba(242, 101, 34, 0.1);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .tech-pill {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* AIML Impact Section */
.aiml-impact {
    background-color: #080808;
    padding: 100px 0;
}

.aiml-impact .section-title {
    color: var(--color-white);
    margin-bottom: 60px;
}

.aiml-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

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

.aiml-impact-card {
    background-color: #15171B;
    /* Dark gray to match reference */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--transition-smooth);
}

.aiml-impact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 101, 34, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.aiml-impact-card .impact-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.aiml-impact-card .impact-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
    line-height: 1;
}

.aiml-impact-card .impact-desc {
    font-size: 0.95rem;
    color: var(--color-gray-text);
    margin: 0;
}

/* AIML CTA & Newsletter */
.aiml-cta {
    background-color: #0d0d0d;
    padding: 120px 0;
}

.cta-title {
    color: var(--color-white);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.cta-text {
    color: var(--color-gray-text);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.newsletter-section {
    background-color: #000000;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-title {
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 1000px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(242, 101, 34, 0.05);
}

.newsletter-form .btn {
    padding: 15px 40px;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Technology Page Styles */
.tech-hero .services-hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?auto=format&fit=crop&q=80&w=2070');
    background-size: cover;
    background-position: center;
}

.innovation-section {
    padding: 100px 0;
    background-color: #0a0a0a;
    color: var(--color-white);
}

.innovation-section .section-title,
.innovation-section .section-description {
    color: var(--color-white);
}

/* Technology Solutions Grid */
.tech-solutions {
    padding: 100px 0;
    background-color: #080808;
}

.tech-solutions .section-title {
    color: var(--color-white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.tech-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(242, 101, 34, 0.3);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: rgba(242, 101, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.tech-card-title {
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.tech-card-desc {
    color: var(--color-gray-text);
    font-size: 1rem;
    line-height: 1.6;
}

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

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

/* Advanced AI/ML Services */
.advanced-aiml {
    padding: 100px 0;
    background-color: #0b0b0b;
}

.advanced-aiml .section-title {
    color: var(--color-white);
    margin-bottom: 60px;
}

/* Technology Stack Section */
.tech-stack-section {
    padding: 80px 0;
    background-color: #0d0d0d;
}

.tech-stack-section .section-title {
    color: var(--color-white);
    margin-bottom: 50px;
}

/* Reusing tech-pills styles from AIML page if needed, 
   but adding specific spacing for this page */
.tech-stack-section .tech-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Technological Impact Section */
.tech-impact {
    position: relative;
    padding: 120px 0;
    background-color: #050505;
    overflow: hidden;
}

.tech-impact .section-title {
    color: var(--color-white);
}

.tech-impact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(242, 101, 34, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(242, 101, 34, 0.05) 0%, transparent 50%);
    opacity: 0.6;
}

.impact-cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.impact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 40px;
    width: 320px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.impact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(242, 101, 34, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.impact-card-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.impact-card-stat {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.impact-card-label {
    font-size: 1.1rem;
    color: var(--color-gray-text);
    font-weight: 500;
}

@media (max-width: 768px) {
    .impact-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .impact-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Tech CTA & Newsletter Tweaks */
.tech-cta {
    padding: 100px 0;
    background-color: #080808;
    color: var(--color-white);
}

.tech-cta .section-title {
    color: var(--color-white);
}

.tech-cta .section-description {
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--color-white);
}

.newsletter-section {
    padding: 60px 0;
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    width: 100%;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    color: var(--color-white);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}