 .materials-container {
        background-image: url('https://img1.wsimg.com/isteam/ip/1f77e8f2-cf02-40c5-9ae1-bf055126771d/WhatsApp%20Image%202023-11-22%20at%2021.55.45.jpeg'); 
        background-size: cover;
        background-position: center;
        min-height: 80vh; 
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
	 	width: 100%;
    }
    
    .materials-container::before {
        content: '';
		z-index: 1;
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.4); 
    }

    .materials-content {
        position: relative;
        z-index: 1;
        text-align: center;
        color: #fff;
        max-width: 1200px;
        padding: 0 20px;
    }

    .materials-content h1 {
        font-size: 3.5rem!important;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 10px;
        color: #fff!important;
    }

    .materials-content h2 {
        font-size: 1.5rem!important;
        font-weight: 400;
        color: #fff!important;
        margin-bottom: 30px;
    }

    /* Red Double Chevron */
    .scroll-down-arrow {
        margin-top: 40px;
        display: inline-block;
        animation: bounce 2s infinite;
        cursor: pointer;  
    }
    .scroll-down-arrow svg {
        width: 60px;
        height: auto;
        fill: #FF0000; 
    }

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

    /* 2. INTRO SECTION */
    .intro-section {
        padding: 80px 20px;
        text-align: center;
        max-width: 1000px;
        margin: 0 auto;
    }
    .intro-section h2 {
        font-size: 2.5rem!important;
        font-weight: 500;
        
        margin-bottom: 10px;
    }
    .intro-section h3 {
        font-size: 1.25rem!important;
        font-weight: 600;
        margin-bottom: 30px;
        color: #333;
    }
    .intro-section p {
        margin-bottom: 20px;
        font-size: 1.1rem;
        color: #444;
    }

    /* 3. CARDS GRID */
    .cards-section {
        padding: 0 20px 80px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 Columns */
        gap: 40px;
		align-items: stretch;
    }

    .hire-card {
        background: #fff;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 2px;
        overflow: hidden;
        border: 1px solid #eee;
    }

    .card-image img {
        width: 100%;
        height: 300px!important;
        object-fit: cover;
        display: block;
    }

    .card-header {
        background-color: #EF3333!important; /* Bright Red */
        color: white!important;
        text-align: center;
        padding: 15px!important;
        margin-top: 10px;
        margin-left: 25px;
        margin-right: 25px;
        font-weight: 700;
		border: unset;
        font-size: 1.2rem;
        text-transform: uppercase;
    }

    .card-body {
        padding: 25px;
    }

    .card-body p {
        margin-bottom: 15px;
        font-size: 1rem;
    }

    .card-body ul {
        padding-left: 20px;
        margin: 0;
    }
    .card-body li {
        margin-bottom: 5px;
    }

    /* 4. ENVIRONMENTAL (BLACK) SECTION */
    .environmental-section {
        background-color: #000;
        color: #fff;
		width: 100%;
        padding: 80px 20px;
    }
    
    .env-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 50px;
        align-items: center;
    }
    
    .env-content {
        flex: 1;
    }
    .env-image {
        flex: 1;
    }
    .env-image img {
        width: 100%;
        border-radius: 12px;
        display: block;
    }

    .env-content h2 {
        font-weight: 500;
        font-size: 2rem!important;
        margin-bottom: 20px;
        color: #fff!important;
    }
    
    .env-feature {
        display: flex;
        margin-top: 30px;
        gap: 20px;
    }
    
    .env-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        background: transparent; 
    }
    /* Controls the Base64 Images */
    .env-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .env-text h4 {
        color: #fff!important;
        margin-bottom: 5px;
        font-size: 24px!important;
        font-weight: 700;
    }
    .env-text p {
        color: #ccc;
        font-size: 0.95rem;
        margin: 0;
    }

    /* 5. TRUST / CTA SECTION */
    .trust-section {
        padding: 80px 20px;
        background: #fff;
        text-align: center;
		width: 100%;
    }
    .trust-container {
        max-width: 800px;
        margin: 0 auto;
    }
    .trust-container h2 {
        font-weight: 500;
        font-size: 2rem!important;
        margin-bottom: 20px;
    }

    /* --- BUTTON STYLES --- */
    .trust-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: rgb(0, 165, 111);
        color: white!important;
        padding: 15px 30px;
        border-radius: 2px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        margin-top: 30px;
        gap: 10px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px -3px 0px 0px inset;
        border: none;
    }

    /* Hover State */
    .trust-btn:hover {
        background-color: rgb(4, 129, 88);
        color: white;
    }

    /* Active State */
    .trust-btn:active {
        background-color: rgb(3, 109, 74);
        color: #fff;
    }

    /* Focus State (Standard) */
    .trust-btn:focus {
        outline: 2px solid rgb(4, 129, 88);
        outline-offset: 2px;
    }

    /* Focus Visible (Keyboard Navigation) */
    .trust-btn:focus-visible {
        outline: 2px solid rgb(4, 129, 88);
        outline-offset: 2px;
        box-shadow: 0 0 0 3px color-mix(in srgb, rgb(4, 129, 88) 30%, transparent);
    }

    /* Focus Not Visible (Mouse Click) */
    .trust-btn:focus:not(:focus-visible) {
        outline: none;
        box-shadow: none;
    }

    .trust-btn svg {
        fill: white;
        width: 20px;
        height: 20px;
    }
    /* ----------------------------- */

    /* 6. ENQUIRY FORM (BLACK) */
    .enquiry-section {
        background-color: #000;
        color: white;
        padding: 80px 20px;
		width: 100%;
    }


	.enquiry-section .form-group {
		position: relative;
	}


	.enquiry-section .form-group.error::before {
		content: '';
		position: absolute;
		left: -12px;
		top: 0;
		height: 100%;
		width: 6px;
		background-color: red;
	}


	.enquiry-section .error-message {
		font-size: 14px;
		margin-top: 8px;
		color: red;
		display: none;
	}

	.enquiry-section .form-group.error .error-message {
		display: block!important;
	}

	.enquiry-section .submit-btn:disabled {
		background-color: grey!important;
		color: #c2bdbd!important;
		cursor: not-allowed!important;
	}

    .enquiry-container {
        max-width: 900px;
        margin: 0 auto;
    }
    .enquiry-container h2 {
        text-align: center;
        text-transform: uppercase;
        font-weight: 800;
        font-size: 2rem!important;
        color: #fff!important;
    }
    .enquiry-container > p {
        text-align: center;
        color: #ccc;
        margin-bottom: 40px;
    }

    /* Form Grid System */
    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .form-full {
        grid-column: span 2;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #fff;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="date"],
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: none;
        border-radius: 0;
        font-size: 1rem;
        background: #fff;
        color: #333;
    }
    
    .checkbox-group {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 5px;
    }
    .checkbox-item {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }
    .checkbox-item input[type="checkbox"] {
        width: 20px;
        height: 20px;
        accent-color: #fff; 
        cursor: pointer;
    }

    /* Red Submit Button */
    .submit-btn {
        width: 100%;
        background-color: #EF3333;
        color: white;
        border: none;
        padding: 15px;
        font-size: 1.2rem;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        margin-top: 20px;
       
    }
    .submit-btn:hover {
        background-color: #d12c2c;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .cards-grid {
            grid-template-columns: 1fr;
        }
        .env-wrapper {
            flex-direction: column-reverse;
        }
        .form-grid {
            grid-template-columns: 1fr;
        }
        .form-full {
            grid-column: span 1;
        }
        .materials-content h1 {
            font-size: 2.2rem;
        }
        .intro-section h2 {
            font-size: 1.8rem;
        }
    }