      /* Styles */

:root {
            --primary: #ff3131;
            --primary-dark: #d42a2a;
            --primary-light: #EDEDED;
            --primary-extra-light: #E6E6E6;
            --light: #ffffff;
            --dark: #1a1a1a;
            --gray-100: #f8f9fa;
            --gray-200: #e9ecef;
            --gray-300: #E6E6E6;
            --gray-700: #495057;
            --gray-900: #212529;
            --shadow: 0 5px 15px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
            --gradient: linear-gradient(45deg, #ff3131, #d42a2a);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--gray-700);
            background-color: var(--light);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.3;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 4px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        
        .btn:hover::before {
            opacity: 1;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--light);
            color: var(--light);
        }
        
        .btn-outline:hover {
            background: var(--light);
            color: var(--primary);
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 36px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Logo with Icon */
        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: var(--dark);
            transition: var(--transition);
        }
        
        .logo-text span {
            color: var(--primary);
        }
        
        .logo-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            transition: var(--transition);
            overflow: hidden;
          
        }

        .logo-icon img {
            width: 82%;
            height: 85%;
            object-fit: contain;
        }






        /* Need a job css */

/* ===== JOB LISTINGS STYLES ===== */
#need-job {
    padding: 80px 0;
}

.jobs-search-container {
    margin-bottom: 40px;
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.jobs-filter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.jobs-search {
    display: flex;
    gap: 15px;
}

.jobs-search input {
    flex: 1;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.job-card {
    background: var(--light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-top: 3px solid var(--primary);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.job-title {
    font-size: 22px;
    color: var(--primary-dark);
    margin: 0;
}

.job-type {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.job-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.job-company, .job-location, .job-salary {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--gray-700);
}

.job-company i, .job-location i, .job-salary i {
    margin-right: 10px;
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.job-description {
    color: var(--gray-700);
    flex-grow: 1;
    margin-bottom: 25px;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.job-posted {
    color: var(--gray-700);
    font-size: 14px;
    font-style: italic;
}

.apply-btn {
    padding: 10px 25px;
    font-size: 14px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    transition: var(--transition);
}

.apply-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 49, 49, 0.3);
}

.jobs-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--light);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--gray-300);
}

.page-link:hover, .page-link.active {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .jobs-search {
        flex-direction: column;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .job-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .apply-btn {
        width: 100%;
    }
}



        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 15px 0;
            transition: var(--transition);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }
        
        nav ul li a:hover:after,
        nav ul li a.active:after {
            width: 100%;
        }
        
        nav ul li a:hover,
        nav ul li a.active {
            color: var(--primary);
        }
        
       /* Mobile Toggle */
        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
            background: none;
            border: none;
            padding: 5px 10px;
            z-index: 1001;
        }




        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 700px;
            background: var(--primary);
            display: flex;
            align-items: center;
            color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero-content {
            flex: 1;
            max-width: 650px;
            text-align: left;
            position: relative;
            z-index: 2;
            padding-right: 30px;
        }
		
        .hero h1 {
            font-size: 3.5rem;
            color: var(--light);
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
        }
        
        .hero-btns {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .hero-image {
            flex: 1;
            position: relative;
			overflow: visible;
            height: 100%;
            max-width: 45%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

		.hero-image-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: 40%, 50%;
            border-radius: 0px;
            
        }
        
        /* Hero decorative elements */
        .hero::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 15%),
                radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 15%),
                ;
            z-index: 1;
        }
        
        /* B-BBEE Section - Enhanced Design */
        .bbee-section {
            position: relative;
            background: linear-gradient(135deg, #2c3e50, #1a1a1a);
            color: white;
            padding: 60px 0;
            margin-top: -1px;
            z-index: 10;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .bbee-container {
            position: relative;
            z-index: 2;
        }
        
        .bbee-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            padding: 30px;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        .bbee-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .bbee-text {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .bbee-badge {
            display: inline-block;
            background: var(--gradient);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(255,49,49,0.3);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }




        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        /* Enhanced Service Cards */
        .service-card {
            background: var(--light);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            text-align: center;
            padding: 40px 30px;
            position: relative;
            z-index: 1;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gray-100);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border-top: 3px solid var(--primary);
        }
        
        .service-card:hover::before {
            opacity: 0.05;
        }
        
        .service-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            box-shadow: 0 8px 20px rgba(255,49,49,0.2);
        }
        
        .service-icon i {
            font-size: 36px;
            color: var(--light);
        }
        
        .service-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-dark);
            position: relative;
            display: inline-block;
        }
        
        .service-card h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--primary);
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Service List */
        .service-list {
            list-style-type: none;
            padding-left: 0;
            text-align: left;
            margin-top: 25px;
        }
        
        .service-list li {
            margin-bottom: 12px;
            padding-left: 30px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .service-list li:hover {
            transform: translateX(5px);
        }
        
        .service-list li:before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .service-list li:hover:before {
            transform: scale(1.2);
        }

        /* Process Section - Mobile First */
        .process-steps {
            display: flex;
            flex-direction: column;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .process-steps:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: calc(100% - 80px);
            background: var(--gray-300);
            z-index: 1;
        }

        .step {
            position: relative;
            z-index: 2;
            text-align: center;
            margin-bottom: 40px;
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .step:last-child {
            margin-bottom: 0;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border: 2px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: var(--light);
            margin: 0 auto 20px;
        }

        /* Desktop Layout */
        @media (min-width: 992px) {
            .process-steps {
                flex-direction: row;
                justify-content: space-between;
            }

            .process-steps:before {
                top: 40px;
                left: 0;
                width: 100%;
                height: 2px;
                transform: none;
            }

            .step {
                flex: 1;
                margin-bottom: 0;
            }
        }
        
        /* Stats Section */
        .stats {
            background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            color: var(--light);
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .stat-item h3 {
            font-size: 50px;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .stat-item p {
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }








/*  more CSSfor thank you page */
.detail-item:nth-child(5),
.detail-item:nth-child(6) {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 1.05rem;
}







        /* Enhanced Form Styling */


/* consent checkbox */
.consent-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 4px;
    margin-right: 12px;
    min-width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.consent-checkbox label {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-700);
    cursor: pointer;
    text-align: left;
    font-weight: normal;
}


/*
        .zoho-form-container {
            background: var(--light);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border: 1px solid var(--gray-200);
            transition: all 0.4s ease;
        }
        
        .zoho-form-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }
        
        .zoho-form-title {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .zoho-form-title h2 {
            font-size: 28px;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .zoho-form-title p {
            color: var(--gray-700);
            font-size: 18px;
        }    */
        
        .form-content {
            padding: 40px;
            background: var(--gray-100);
            border-radius: 12px;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            color: var(--dark);
            font-size: 16px;
        }
        
        .form-control {
            width: 100%;
            padding: 14px 20px;
            border: 2px solid var(--gray-300);
            border-radius: 8px;
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
            transition: var(--transition);
            background: white;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(255, 49, 49, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .file-upload {
            position: relative;
            display: block;
        }
        
        .file-upload-btn {
            display: block;
            width: 100%;
            padding: 14px;
            background: var(--gray-200);
            color: var(--gray-700);
            border: 2px dashed var(--gray-300);
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .file-upload-btn:hover {
            background: var(--gray-300);
            border-color: var(--primary);
            color: var(--primary);
        }






.error-message {
            color: #ff3131;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }
        .form-group.error .error-message {
            display: block;
        }
        .form-group.error input,
        .form-group.error textarea {
            border-color: #ff3131;
        }
        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: none;
        }







        
        /* Footer */
        footer {
            background: var(--dark);
            color: var(--gray-300);
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            color: var(--light);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--primary);
            bottom: 0;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--gray-300);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.3rem;
            }
            
            .hero-image {
                max-width: 40%;
            }
        }
        







        @media (max-width: 768px) {
          
			 .mobile-toggle {
                display: block;
            }
			
			nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--light);
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                z-index: 1000;
                display: none;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
                padding: 10px 0;
            }

            
              nav ul li {
                margin: 0;
                padding: 12px 20px;
                border-bottom: 1px solid var(--gray-200);
            }
            
            nav ul li:last-child {
                border-bottom: none;
            }
            
            nav ul li a {
                display: block;
                padding: 10px 0;
            }
            
            

            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-content {
                padding-right: 0;
                text-align: center;
            }
            
            .hero-btns {
                justify-content: center;
            }
            
            .hero-image {
                display: none;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            /* Logo adjustments */
            .logo-icon {
                width: 40px;
                height: 40px;
                margin-right: 10px;
            }
            
            .logo-text {
                font-size: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
            }
            
            .hero {
                min-height: 600px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            /* Logo adjustments */
            .logo-icon {
                width: 35px;
                height: 35px;
            }
            
            .logo-text {
                font-size: 18px;
            }
        }
        
        /* Tab Content */
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        /* HR News */
        .news-grid {
            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .news-card {
            background: var(--light);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .news-img {
            height: 200px;
            overflow: hidden;
        }
        
        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .news-card:hover .news-img img {
            transform: scale(1.05);
        }
        
        .news-content {
            padding: 25px;
        }
        
        .news-date {
            font-size: 14px;
            color: var(--primary);
            margin-bottom: 10px;
            display: block;
        }
        
        .news-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .news-content p {
            margin-bottom: 15px;
        }
        
        .news-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }
        
        .news-link i {
            margin-left: 5px;
            transition: var(--transition);
        }
        
        .news-link:hover i {
            transform: translateX(5px);
        }
        
        /* Service Benefits */
        .benefits-section {
            background-color: var(--gray-100);
            padding: 25px;
            border-radius: 8px;
            margin-top: 20px;
        }
        
        .benefits-title {
            color: var(--primary-dark);
            margin-bottom: 15px;
            text-align: center;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
        }
        
        .benefit-icon {
            color: var(--primary);
            margin-right: 10px;
            font-size: 18px;
            flex-shrink: 0;
            margin-top: 3px;
        }
        
        /* Industry Badges */
        .industry-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        
        .industry-badge {
            background: var(--gradient);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        
        /* Enhanced Client Focus & Methodology Section */
        .approach-section {
            background-color: var(--gray-100);
            padding: 80px 0;
        }
        
        .approach-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .approach-column {
            background: var(--light);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .approach-column:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .column-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary);
        }
        
        .column-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .column-icon i {
            font-size: 28px;
            color: var(--light);
        }
        
        .column-title {
            font-size: 28px;
            color: var(--primary-dark);
            margin: 0;
        }
        
        .approach-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .approach-list li {
            margin-bottom: 18px;
            padding-left: 40px;
            position: relative;
            font-size: 18px;
            line-height: 1.6;
        }
        
        .approach-list li:before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 4px;
            color: var(--primary);
            font-size: 22px;
        }
        
        .methodology-content p {
            margin-bottom: 25px;
            font-size: 18px;
            line-height: 1.7;
        }
        
        .benefits-title {
            color: var(--primary-dark);
            margin: 30px 0 20px;
            font-size: 24px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .benefits-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--primary);
            bottom: 0;
            left: 0;
        }
        
        .benefits-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .benefits-list li {
            margin-bottom: 16px;
            padding-left: 40px;
            position: relative;
            font-size: 18px;
            line-height: 1.6;
        }
        
        .benefits-list li:before {
            content: "\f192";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 6px;
            color: var(--primary);
            font-size: 20px;
        }
        




        /* ADDED: Section backgrounds */
        .section.services {
            background-color: var(--gray-200);
        }

        .section.process {
            background: linear-gradient(to bottom, var(--gray-100), var(--gray-200));
            padding-bottom: 120px;
            margin-bottom: -40px;
        }

        .section#need-job {
            background-color: var(--gray-100);
        }

        .section#other-services {
            background-color: var(--gray-100);
        }

        /* Enhanced Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 15%),
                radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 15%),
                radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 15%);
            z-index: 1;
        }

        .contact-container {
            position: relative;
            z-index: 2;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
        }

        .contact-info {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient);
        }

        .contact-info h3 {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--primary-dark);
            position: relative;
        }

        .contact-info h3::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--primary);
            bottom: -10px;
            left: 0;
        }

        .contact-item {
            display: flex;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-right: 20px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            background: var(--gradient);
            color: white;
            transform: scale(1.1);
        }

        .contact-details h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .contact-details p {
            font-size: 16px;
            color: var(--gray-700);
        }

        .social-links {
            display: flex;
            margin-top: 40px;
        }
        
        .social-links a {
            width: 45px;
            height: 45px;
            background: var(--gray-200);
            color: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--primary);
            color: var(--light);
            transform: translateY(-5px);
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        .contact-form h3 {
            font-size: 24px;
            margin-bottom: 30px;
            color: var(--dark);
            position: relative;
        }

        .contact-form h3::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--primary);
            bottom: -10px;
            left: 0;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }

        .form-control {
            width: 100%;
            padding: 14px 20px;
            border: 2px solid var(--gray-200);
            border-radius: 8px;
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(255, 49, 49, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }