/* --- Variables & Reset --- */
:root {
    --primary-color: #1A7F3C;
    --primary-dark: #145e2d;
    --secondary-color: #2EBF66;
    --secondary-light: #e8f5e9;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f9f9f9;
    --dark-bg: #1a1a1a;
    --gradient-green: linear-gradient(135deg, #1A7F3C 0%, #2EBF66 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;

    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

.text-green {
    color: var(--secondary-color);
}

.text-gray {
    color: #cccccc;
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.text-link:hover {
    gap: 12px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 191, 102, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 191, 102, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.full-width {
    width: 100%;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
}

.header.scrolled .logo {
    color: var(--primary-color);
}

.highlight {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.header.scrolled .nav-links a {
    color: var(--text-dark);
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--secondary-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 4px;
}

.header.scrolled .btn-nav:hover {
    color: var(--white) !important;
    background: var(--primary-color);
}

/* --- Mobile Menu --- */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px auto;
    transition: var(--transition);
}

.header.scrolled .bar {
    background-color: var(--text-dark);
}

/* --- Page Hero (Sub-pages) --- */
.page-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(26, 127, 60, 0.9), rgba(20, 94, 45, 0.9)), url('../assets/images/hero-bg.png') center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    padding-top: var(--header-height);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--white);
    font-weight: 500;
}

.breadcrumb span {
    margin: 0 10px;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('../assets/images/hero-bg.png') no-repeat center center/cover;
    background-attachment: fixed;
    /* Parallax Effect */
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(26, 127, 60, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(90deg, #2EBF66, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* --- About Section --- */
.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.about p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--secondary-light);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    margin-top: 30px;
}

.compliance-badge i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: inline-block;
}

.stat-item span {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.stat-item p {
    margin: 0;
    font-weight: 500;
}

/* --- Services Section --- */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover::before {
    width: 100%;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* --- Industries Slider --- */
.industries {
    overflow: hidden;
    padding-bottom: 120px;
    background: var(--white);
}

.industries-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.industries-track {
    display: flex;
    width: max-content;
    animation: slide 30s linear infinite;
}

.industries-track:hover {
    animation-play-state: paused;
}

.industry-item {
    min-width: 250px;
    height: 350px;
    margin-right: 30px;
    background: var(--white);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
}

.industry-item .industry-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 0;
}

.industry-item:hover .industry-bg {
    transform: scale(1.1);
}

.industry-item .industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
    /* Neutral dark by default */
    z-index: 1;
    transition: background 0.3s ease;
}

.industry-item:hover .industry-overlay {
    background: linear-gradient(to top, rgba(26, 127, 60, 0.95), rgba(26, 127, 60, 0.5));
    /* Green on hover */
}

.industry-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition);
}

.industry-item:hover .industry-content {
    transform: translateY(0);
}

.industry-content i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Scrolls half width (assuming duplication) */
}

/* --- Why Choose Us --- */
.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.dummy-image {
    width: 100%;
    height: 400px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 1.5rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.check-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* --- Careers --- */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.job-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
}

.job-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.job-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.job-type {
    display: inline-block;
    padding: 4px 10px;
    background: var(--secondary-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.job-loc {
    display: block;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.job-loc i {
    margin-right: 5px;
}

/* --- Contact & Footer --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--secondary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.footer {
    background: #111;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid #333;
    padding-bottom: 60px;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.mom-badge {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 4px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 25px;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #aaa;
}

.footer ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
}

/* --- Modal --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: fadeUp 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.show {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* --- Responsive --- */
@media (max-width: 992px) {

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-dark);
        font-size: 1.2rem;
    }
}

/* --- Rolling Stack Services --- */
.rolling-stack-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.stack-card {
    position: sticky;
    top: 150px;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.05);
    /* Stronger shadow on top */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

/* Stacking effect spacing and z-index */
.stack-card.card-1 {
    top: 120px;
    z-index: 1;
}

.stack-card.card-2 {
    top: 140px;
    z-index: 2;
}

.stack-card.card-3 {
    top: 160px;
    z-index: 3;
}

.stack-card.card-4 {
    top: 180px;
    z-index: 4;
}

.stack-card:hover {
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.stack-content {
    flex: 1;
    padding-right: 50px;
}

.stack-content h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.stack-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.stack-features {
    list-style: none;
}

.stack-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.stack-features i {
    color: var(--secondary-color);
    background: var(--secondary-light);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

.stack-visual {
    width: 200px;
    height: 200px;
    background: var(--light-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: var(--transition);
}

.stack-card:hover .stack-visual {
    background: var(--secondary-light);
    transform: scale(1.05) rotate(3deg);
}

@media (max-width: 900px) {
    .rolling-stack-container {
        padding: 0 10px;
    }

    .stack-card {
        padding: 30px;
        flex-direction: column-reverse;
        text-align: center;
        margin-bottom: 30px;
    }

    .stack-content {
        padding-right: 0;
    }

    .stack-visual {
        margin-bottom: 30px;
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }

    .stack-features li {
        justify-content: center;
        text-align: left;
    }
}

/* --- Big Page Refinements --- */

/* Enhanced Page Hero */
.page-hero {
    height: 60vh;
    min-height: 500px;
    background-attachment: fixed;
    /* Parallax feel */
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 127, 60, 0.95), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.page-hero .hero-content {
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-hero .breadcrumb {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

.page-hero .breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.page-hero .breadcrumb a:hover {
    color: var(--secondary-color);
}

/* --- Mission, Vision, Values (About Page) --- */
.mission-section {
    position: relative;
    background: var(--light-bg);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--primary-light);
    border-radius: 50%;
    transform: translate(50%, -50%);
    opacity: 0.1;
    z-index: -1;
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: var(--light-bg);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* --- Team Grid (About Page) --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-image {
    width: 100%;
    height: 300px;
    background: #e0e0e0;
    /* Placeholder grey */
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 25px;
}

.team-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-info span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- Process Steps (Services Page) --- */
.process-wrapper {
    position: relative;
    padding: 50px 0;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-icon-box {
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 4px solid var(--light-bg);
    z-index: 2;
    flex-shrink: 0;
}

.process-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.process-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    margin-left: 3rem;
    right: auto;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(46, 191, 102, 0.15);
    /* Light Green, transparent */
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.process-step:nth-child(even) .step-number {
    right: 100%;
    margin-right: 3rem;
    left: auto;
    margin-left: 0;
}

.process-connector {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--light-bg);
    transform: translateX(-50%);
    z-index: 0;
}

/* --- Accordion / FAQ (Services Page) --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.accordion-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: var(--transition);
}

.accordion-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.accordion-header i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.accordion-header.active {
    background: var(--light-bg);
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--white);
}

.accordion-body p {
    padding: 15px 0 25px 0;
    color: var(--text-light);
}

/* --- Industry Detail Grid (Industries Page) --- */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.industry-card {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.industry-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-card-bg {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s ease;
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(to top, rgba(26, 127, 60, 0.9), rgba(26, 127, 60, 0.4));
}

.industry-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: translateY(-10px);
    color: var(--white);
}

.industry-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.industry-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.industry-card:hover .industry-text p {
    max-height: 100px;
    opacity: 1;
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .process-connector {
        display: none;
    }
}