/* Extracted from index.php — keep selectors unchanged */

:root {
            --deep-green: #0a4d1c;
            --bright-green: #1a5928;
            --maanyag-gold: #ffcc00;
            --soft-white: #f4f7f5;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--soft-white);
            color: #333;
        }

        .navbar {
            background: white;
            border-bottom: 4px solid var(--maanyag-gold);
        }

        .navbar-brand img {
            height: 50px;
        }

        .hero {
            background: linear-gradient(rgba(10, 77, 28, 0.9), rgba(10, 77, 28, 0.9)), url('assets/img/maanyag-hero.jpg');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: white;
            clip-path: ellipse(150% 100% at 50% 0%);
        }

        .btn-gold {
            background-color: var(--maanyag-gold);
            color: var(--deep-green);
            font-weight: 700;
            border: none;
            transition: 0.3s;
        }

        .btn-gold:hover {
            background-color: white;
            transform: scale(1.05);
        }

        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-weight: 800;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 5px;
            background: var(--maanyag-gold);
        }

        .text-center .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .card-job {
            border: none;
            border-radius: 15px;
            transition: 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .card-job:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        footer {
            background: var(--deep-green);
            color: white;
            padding: 60px 0 30px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: var(--maanyag-gold);
            color: var(--deep-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        @media (max-width: 992px) {
            .hero {
                padding: 64px 0 80px;
                clip-path: none;
            }
            .navbar-brand img {
                height: 40px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 48px 0 56px;
            }
            footer {
                padding: 36px 0 20px;
            }
            .brand-text {
                font-size: 0.8rem;
            }
        }
