:root {
            --primary: #0f2a44;
            --secondary: #c89b3c;
            --light: #f5f7fa;
            --dark: #1a1a1a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        

        /* HERO SECTION */
        .hero1 {
            background: linear-gradient(rgba(15,42,68,0.85), rgba(15,42,68,0.85)),
                       url('images/Safaris.jpg') no-repeat center center/cover;
            color: #fff;
            padding: 100px 20px;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: auto;
        }

        /* CONTAINER */
        .container1 {
            max-width: 1100px;
            margin: auto;
            padding: 60px 20px;
        }

        /* SECTION TITLE */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary);
        }

        .section-title p {
            color: #555;
            margin-top: 10px;
        }

        /* JOB GRID */
        .jobs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .job-card {
            background: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .job-card:hover {
            transform: translateY(-8px);
        }

        .job-card h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .job-card span {
            display: inline-block;
            font-size: 0.9rem;
            background: var(--light);
            padding: 5px 12px;
            border-radius: 20px;
            margin-bottom: 15px;
        }

        .job-card p {
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .apply-btn {
            display: inline-block;
            text-decoration: none;
            background: var(--secondary);
            color: #fff;
            padding: 10px 22px;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: background 0.3s ease;
        }

        .apply-btn:hover {
            background: #a57f2e;
        }

        /* CTA SECTION */
        .cta {
            background: var(--primary);
            color: #fff;
            text-align: center;
            padding: 60px 20px;
            margin-top: 60px;
        }

        .cta h2 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .cta p {
            max-width: 700px;
            margin: auto;
            margin-bottom: 25px;
        }

        .cta a {
            background: var(--secondary);
            padding: 12px 28px;
            border-radius: 30px;
            text-decoration: none;
            color: #fff;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
        }

        
