/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    font-size: 16px;
    padding-bottom: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 116, 217, 0.1);
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 140px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    transition: transform 0.3s ease;
}

.nav-logo a:hover {
    transform: scale(1.02);
}

.nav-logo .logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.nav-logo h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #0074D9;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 28px 20px;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    color: #FF851B;
    border-bottom-color: #FF851B;
    background: rgba(255, 133, 27, 0.03);
}

.nav-link.active {
    color: #FF851B;
    border-bottom-color: #FF851B;
    background: rgba(255, 133, 27, 0.05);
    font-weight: 600;
}

/* Special styling for Contact Us button */
.nav-link.contact-btn {
    background: #FF851B;
    color: white;
    border-radius: 5px;
    margin: 8px 0 8px 12px;
    padding: 12px 20px;
    border-bottom: 3px solid #FF851B;
}

.nav-link.contact-btn:hover {
    background: #e6751a;
    color: white;
    border-bottom-color: #e6751a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 133, 27, 0.3);
}

.nav-link.contact-btn.active {
    background: #FF851B;
    color: white;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.nav-toggle:hover {
    background-color: rgba(0, 116, 217, 0.1);
}

.bar {
    width: 28px;
    height: 3px;
    background: #0074D9;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Hero Section */
.hero {
    padding: 170px 0 80px;
    background: linear-gradient(135deg, rgba(0, 116, 217, 0.8) 0%, rgba(255, 133, 27, 0.8) 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 800px;
    margin: 0;
    margin-left: 0;
    padding-left: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-align: left;
    margin-left: 0;
    padding-left: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.highlight {
    color: #FF851B;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-buttons .btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: linear-gradient(45deg, #0074D9, #005bb5);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 116, 217, 0.4);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(45deg, #005bb5, #004494);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 116, 217, 0.5);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #0074D9;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero {
    padding: 170px 0 80px;
    background: url('images/services/hero-tech.png');
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Button Base Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.5;
    outline: none;
}

.btn-primary {
    background: #0074D9;
    color: white;
    border-color: #0074D9;
}

.btn-primary:hover {
    background: #005bb5;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 116, 217, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #0074D9;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #0074D9;
    border: 2px solid #0074D9;
}

.btn-outline:hover {
    background: #0074D9;
    color: white;
    transform: translateY(-2px);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/services/hero-tech.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.hero-image {
    display: none;
}

.hero-bg-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.hero-graphic {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background: #f8fafc;
    overflow: hidden;
}

.partners-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    animation: scroll-partners 20s linear infinite;
    width: calc(200px * 8); /* 8 logos * 200px each */
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 4)); /* Move by 4 logos width */
    }
}

.partner-logo {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.partner-logo-img {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-placeholder {
    max-width: 150px;
    max-height: 80px;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.partner-placeholder:hover {
    border-color: #FF851B;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 133, 27, 0.2);
}

.partner-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.2;
}

.logo-placeholder {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #666;
    text-align: center;
    width: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Company Introduction Section */
.company-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.intro-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.intro-subtitle {
    font-size: 1.2rem;
    color: #0074D9;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2.5rem;
}

.intro-highlights {
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: #0074D9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.3rem;
}

.highlight-content p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.intro-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.intro-stats .stat-item {
    text-align: center;
}

.intro-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: #0074D9;
}

.intro-stats .stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.intro-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.intro-image {
    position: relative;
}

.intro-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.intro-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0074D9 0%, #FF851B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.intro-features {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1f2937;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 116, 217, 0.15);
}

.feature-badge i {
    color: #FF851B;
    font-size: 1rem;
}

/* Apprenticeships Section */
.apprenticeships {
    padding: 80px 0;
    background: white;
}

.apprenticeships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.apprenticeship-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.apprenticeship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.apprenticeship-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.apprenticeship-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.apprenticeship-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.card-link {
    color: #0074D9;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #005bb5;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0074D9 0%, #FF851B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.6s ease;
    box-sizing: border-box;
    overflow: hidden;
}

.testimonial-card.active {
    opacity: 1;
}

.testimonial-content {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    border: 1px solid #e5e7eb;
    width: 100%;
    box-sizing: border-box;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: #0074D9;
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1.15rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 1.5rem;
}

.author-image {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0074D9, #005bb5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 116, 217, 0.3);
    position: relative;
}

.author-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0074D9, #FF851B);
    z-index: -1;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.author-info span {
    color: #0074D9;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1.5rem 0;
}

.testimonial-dots {
    display: flex;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-dot.active {
    background: #0074D9;
    transform: scale(1.3);
    border-color: #ffffff;
    box-shadow: 0 0 0 2px #0074D9;
}

.testimonial-dot:hover {
    background: #0074D9;
    transform: scale(1.2);
}

.control-btn {
    width: 55px;
    height: 55px;
    border: none;
    background: linear-gradient(135deg, #0074D9, #005bb5);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 116, 217, 0.3);
}

.control-btn:hover {
    background: linear-gradient(135deg, #005bb5, #004494);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 116, 217, 0.4);
}

.control-btn:active {
    transform: translateY(0);
}

.control-btn:hover {
    background: #005bb5;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px;
    position: relative;
    width: 100%;
    bottom: 0;
}

/* Additional Page Styles */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #0074D9 0%, #FF851B 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-only {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-text h2,
.about-text-only h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-text h3,
.about-text-only h3 {
    font-size: 1.5rem;
    color: #0074D9;
    margin: 2rem 0 1rem;
}

.about-text p,
.about-text-only p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #374151;
}

.image-placeholder {
    background: #f3f4f6;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: #6b7280;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.values {
    padding: 80px 0;
    background: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #0074D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

.stats {
    padding: 80px 0;
    background: #1f2937;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FF851B;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #d1d5db;
}

.team {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100px;
    height: 100px;
    background: #0074D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 3rem;
    border: 3px solid #e5e7eb;
    transition: all 0.3s ease;
}

.team-placeholder:hover {
    background: linear-gradient(135deg, #0074D9 0%, #005bb5 100%);
    color: white;
    border-color: #0074D9;
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.role {
    color: #0074D9;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p:not(.role) {
    color: #6b7280;
    line-height: 1.6;
}

.nav-link.active {
    color: #0074D9;
}

.nav-link.active::after {
    width: 100%;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-info-section > p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #0074D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.contact-hours {
    font-size: 0.9rem;
    color: #9ca3af;
}

.social-section h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f3f4f6;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background: #2563eb;
    color: white;
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 1.75rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0074D9;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Messages */
.form-messages {
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-messages.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
    display: block;
}

.form-messages.error {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #FF851B;
    display: block;
}

/* Form Validation */
.error-message {
    color: #FF851B;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #FF851B;
    background-color: #fff7ed;
}

.form-group.error .error-message {
    display: block;
}

.form-group.valid input,
.form-group.valid select,
.form-group.valid textarea {
    border-color: #10b981;
    background-color: #f0fdf4;
}

/* Submit Button States */

.submit-btn {
    width: 100%;
    position: relative;
}

.btn-loading {
    display: none !important;
}

.btn-loading.show {
    display: inline !important;
}

.btn-text.hide {
    display: none;
}

.map-section {
    padding: 80px 0;
    background: #f8fafc;
}

.map-placeholder {
    height: 400px;
    background: #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6b7280;
}

.map-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.map-content h3 {
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.map-content p {
    margin-bottom: 1.5rem;
}

/* Services Page Styles */
.services-overview {
    padding: 60px 0;
    background: white;
}

.overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.overview-content p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
}

.main-services {
    padding: 80px 0;
    background: #f8fafc;
}

.service-detail-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
}

.service-header {
    background: linear-gradient(135deg, #0074D9 0%, #FF851B 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.service-header .service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.service-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.service-content {
    padding: 2rem;
}

.service-description {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-content h4 {
    color: #1f2937;
    margin: 1.5rem 0 1rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #374151;
}

.service-features i {
    color: #10b981;
    margin-right: 0.5rem;
    width: 16px;
}

.service-tracks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.track-tag {
    background: #e0f2fe;
    color: #0074D9;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.service-duration {
    display: flex;
    align-items: center;
    color: #6b7280;
    font-weight: 500;
}

.service-duration i {
    margin-right: 0.5rem;
}

.apprenticeships-section {
    padding: 80px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.apprenticeships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.apprenticeship-detail-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e5e7eb;
}

.apprenticeship-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.apprenticeship-icon {
    width: 60px;
    height: 60px;
    background: #0074D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.apprenticeship-detail-card h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.apprenticeship-detail-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.apprenticeship-details {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 500;
}

.detail-item i {
    margin-right: 0.25rem;
    color: #0074D9;
}

.why-choose-us {
    padding: 80px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #FF851B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0074D9 0%, #FF851B 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FF851B;
}

.contact-info p,
.address p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.address-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.address-link:hover {
    color: #FF851B;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #0074D9;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.copyright {
    color: #9ca3af;
}

.copyright a {
    color: #FF851B;
    text-decoration: none;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.story-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0074D9 0%, #FF851B 100%);
}

.quote-icon {
    color: #0074D9;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 2rem;
    font-style: italic;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0074D9 0%, #FF851B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-details span {
    color: #6b7280;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.success-metrics {
    display: flex;
    gap: 0.5rem;
}

.metric {
    background: #FF851B;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
}

.stat-highlight {
    text-align: center;
}

.stat-big {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF851B;
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 95px;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .nav-logo .logo {
        height: 85px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        z-index: 999;
        border-top: 1px solid rgba(0, 116, 217, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    .nav-link {
        padding: 20px 30px;
        border-bottom: 1px solid rgba(0, 116, 217, 0.1);
        border-left: none;
        border-right: none;
        border-top: none;
        font-size: 1.1rem;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(0, 116, 217, 0.08);
        border-bottom: 1px solid rgba(0, 116, 217, 0.1);
    }

    /* Mobile contact button styling */
    .nav-link.contact-btn {
        background: #FF851B;
        color: white;
        margin: 10px 20px;
        border-radius: 5px;
        border-bottom: 1px solid #FF851B;
    }

    .nav-link.contact-btn:hover {
        background: #e6751a;
        color: white;
        border-bottom: 1px solid #e6751a;
    }

    .nav-link.contact-btn.active {
        background: #FF851B;
        color: white;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        flex-direction: column;
        text-align: left;
        gap: 2rem;
    }

    .hero-content {
        text-align: left;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    /* Mobile intro section */
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .intro-title {
        font-size: 2rem;
    }

    .intro-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .intro-buttons {
        justify-content: center;
    }

    .intro-visual {
        height: 300px;
    }

    .placeholder-icon {
        font-size: 3rem;
    }

    .intro-features {
        bottom: 15px;
        left: 15px;
        right: 15px;
        gap: 8px;
    }

    .feature-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .feature-badge i {
        font-size: 0.9rem;
    }

    .hero-graphic {
        font-size: 4rem;
    }

    .hero-buttons {
        justify-content: flex-start;
        gap: 0.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .apprenticeships-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Success Stories Mobile */
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-stats {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .stat-big {
        font-size: 2rem;
    }

    /* Enhanced Testimonials Mobile Styles */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-carousel {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }

    .testimonial-container {
        margin: 0;
        width: 100%;
        overflow: hidden;
    }

    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .testimonial-content {
        padding: 2rem 1.5rem;
        margin: 0;
        min-height: 250px;
        width: 100%;
        box-sizing: border-box;
    }

    .testimonial-content::before {
        top: 0.5rem;
        left: 1rem;
        font-size: 3rem;
    }

    .testimonial-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        max-width: 100%;
        padding: 0;
        word-break: break-word;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
        text-align: center;
    }

    .author-image {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .author-info {
        text-align: center;
    }

    .author-info h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .author-info span {
        font-size: 0.85rem;
    }

    .testimonial-controls {
        gap: 1rem;
        margin-top: 2rem;
        padding: 1rem 0;
        flex-wrap: wrap;
    }

    .control-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .testimonial-dots {
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        order: -1;
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
    }

    .testimonial-dot.active {
        transform: scale(1.2);
    }

    /* Extra Small Mobile Adjustments */
    @media (max-width: 480px) {
        .testimonials {
            padding: 40px 0;
        }

        .testimonials-carousel {
            padding: 0 10px;
        }

        .testimonial-content {
            padding: 1.5rem 1rem;
            min-height: 220px;
        }

        .testimonial-content::before {
            font-size: 2.5rem;
            top: 0.2rem;
            left: 0.5rem;
        }

        .testimonial-content p {
            font-size: 0.95rem;
            margin-bottom: 1.2rem;
            line-height: 1.5;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .author-image {
            width: 50px;
            height: 50px;
            font-size: 1.3rem;
        }

        .author-info h4 {
            font-size: 0.95rem;
        }

        .author-info span {
            font-size: 0.8rem;
        }

        .control-btn {
            width: 40px;
            height: 40px;
            font-size: 0.9rem;
        }

        .testimonial-dots {
            padding: 0.4rem 0.8rem;
        }
    }

/* Responsive Partners Animation */
@media (max-width: 768px) {
    .partners-track {
        width: calc(180px * 8); /* Smaller width for mobile */
        animation: scroll-partners-mobile 25s linear infinite;
    }
    
    @keyframes scroll-partners-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-180px * 4));
        }
    }
    
    .partner-logo {
        width: 180px;
    }
    
    .logo-placeholder {
        width: 130px;
        padding: 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .partners-track {
        width: calc(160px * 8);
        animation: scroll-partners-small 30s linear infinite;
    }
    
    @keyframes scroll-partners-small {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-160px * 4));
        }
    }
    
    .partner-logo {
        width: 160px;
        height: 80px;
    }
    
    .logo-placeholder {
        width: 120px;
        padding: 12px;
        font-size: 0.8rem;
    }
}

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-section {
        padding: 1.5rem 0;
        border-bottom: 1px solid #374151;
    }
    
    .footer-section:last-child {
        border-bottom: none;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer {
        padding: 50px 20px 25px;
        position: relative;
        width: 100%;
        bottom: 0;
    }
    
    .contact-info p,
    .address p {
        justify-content: center;
        text-align: center;
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .address-link {
        display: inline-block;
        line-height: 1.6;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        padding: 60px 0;
    }

    .contact-info-section h2 {
        font-size: 2rem;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }

    .contact-icon {
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-form h2 {
        text-align: center;
    }

    .social-section {
        text-align: center;
        margin-top: 2rem;
    }

    .social-links-large {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .apprenticeship-card {
        padding: 1.5rem;
    }

    .testimonial-content {
        padding: 2rem 1.5rem;
    }

    .footer {
        padding: 40px 15px 20px;
        position: relative;
        width: 100%;
        bottom: 0;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section {
        padding: 1rem 0;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .contact-info p,
    .address p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        line-height: 1.5;
    }

    .social-links {
        gap: 1rem;
        margin-top: 1.2rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
        margin-top: 1rem;
    }
    
    .copyright p {
        line-height: 1.4;
    }

    .contact-content {
        padding: 40px 0;
    }

    .contact-info-section h2 {
        font-size: 1.75rem;
    }

    .contact-item {
        margin-bottom: 1.5rem;
    }

    .contact-text h3 {
        font-size: 1.1rem;
    }

    .contact-text p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .contact-form h2 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 12px;
    }

    .social-links-large {
        gap: 0.5rem;
    }

    .social-link-large {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Apprenticeships Page Styles */
.hero-small {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0074D9 0%, #FF851B 100%);
    color: white;
    text-align: center;
}

.hero-small-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-small-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-small-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FF851B;
}

.hero-small-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.apprenticeships-detail {
    padding: 80px 0;
}

.apprenticeship-detail-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.apprenticeship-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.apprenticeship-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0074D9, #FF851B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.apprenticeship-icon i {
    font-size: 1.5rem;
    color: white;
}

.apprenticeship-detail-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.apprenticeship-summary {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.apprenticeship-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0074D9;
}

.apprenticeship-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.apprenticeship-details li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.apprenticeship-details li:before {
    content: "✓";
    color: #FF851B;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.apprenticeship-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.apprenticeship-info span {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

.apprenticeship-info i {
    margin-right: 0.5rem;
    color: #0074D9;
}

.apprenticeship-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0074D9, #FF851B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0074D9 0%, #FF851B 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Styles for Apprenticeships Page */
@media (max-width: 768px) {
    .hero-small-title {
        font-size: 2rem;
    }
    
    .hero-small-subtitle {
        font-size: 1.2rem;
    }
    
    .apprenticeship-detail-card {
        padding: 1.5rem;
    }
    
    .apprenticeship-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Thank You Page Styles */
.thank-you-content {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thank-you-card {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 30px;
}

.success-icon i {
    font-size: 80px;
    color: #28a745;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thank-you-card h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.thank-you-card h2 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

.thank-you-card > p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.next-steps {
    margin: 50px 0;
}

.next-steps h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step-item {
    padding: 25px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #FF851B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step-item p {
    color: #555;
    font-weight: 500;
    line-height: 1.5;
}

.contact-info-quick {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.contact-info-quick p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.quick-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FF851B;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #e67e22;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Contact Form Buttons */
.form-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-buttons .btn {
    flex: 1;
    text-align: center;
}

.gmail-btn {
    background: #db4437 !important;
    border-color: #db4437 !important;
}

.gmail-btn:hover {
    background: #c23321 !important;
    border-color: #c23321 !important;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* Mobile Responsiveness for Thank You Page */
@media (max-width: 768px) {
    .thank-you-content {
        padding: 100px 0 60px;
    }
    
    .thank-you-card {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .thank-you-card h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-card h2 {
        font-size: 1.3rem;
    }
    
    .success-icon i {
        font-size: 60px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-contact {
        flex-direction: column;
        gap: 15px;
    }
    
    .thank-you-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .thank-you-actions .btn {
        width: 100%;
    }
    
    /* About page mobile responsiveness */
    .about-content {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text-only {
        text-align: left;
        padding: 0 20px;
    }
    
    .about-text h2,
    .about-text-only h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-text h3,
    .about-text-only h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.8rem;
    }
    
    .about-text p,
    .about-text-only p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }
    
    .image-placeholder {
        padding: 2rem;
        order: -1; /* Move image above text on mobile */
    }
    
    .image-placeholder i {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }
}

/* Privacy Policy Styles */
.privacy-content {
    padding: 80px 0;
    background: #fafafa;
}

.privacy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.privacy-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f3f4f6;
}

.last-updated {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
    font-style: italic;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: 1.75rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.privacy-section h3 {
    font-size: 1.25rem;
    color: #0074D9;
    margin: 2rem 0 1rem;
}

.privacy-section h4 {
    font-size: 1.1rem;
    color: #374151;
    margin: 1.5rem 0 0.5rem;
}

.privacy-section p {
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.privacy-section li {
    line-height: 1.6;
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-method h4 {
    color: #0074D9;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-method p {
    margin: 0;
    color: #374151;
}

.privacy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f3f4f6;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.privacy-footer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #6b7280;
}

/* Mobile responsiveness for privacy policy */
@media (max-width: 768px) {
    .privacy-content {
        padding: 60px 0;
    }
    
    .privacy-wrapper {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-wrapper {
        padding: 30px 15px;
        margin: 0 15px;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .contact-details {
        padding: 1rem;
    }
}

/* Upskilling Page Styles */
.upskilling-hero {
    padding: 80px 0;
    background: white;
}

.upskilling-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0074D9;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.program-types {
    padding: 80px 0;
    background: #f8f9fa;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0074D9, #FF851B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.program-card h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.program-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.feature-tag {
    background: #e5f3ff;
    color: #0074D9;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.upskilling-tracks {
    padding: 80px 0;
    background: white;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.track-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.track-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.track-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.track-header i {
    font-size: 1.5rem;
    color: #0074D9;
}

.track-header h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin: 0;
}

.track-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.track-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
}

.detail-item i {
    color: #0074D9;
    width: 16px;
}

.track-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-badge {
    background: #fff2e5;
    color: #FF851B;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.track-btn {
    display: inline-block;
    background: #0074D9;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.track-btn:hover {
    background: #005bb5;
}

.learning-approach {
    padding: 80px 0;
    background: #f8f9fa;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.approach-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: #FF851B;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.approach-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.25rem;
}

.approach-card p {
    color: #6b7280;
    line-height: 1.6;
}

.upskilling-success {
    padding: 80px 0;
    background: white;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.upskilling-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0074D9 0%, #FF851B 100%);
    color: white;
    text-align: center;
}

.upskilling-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.upskilling-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile responsiveness for upskilling page */
@media (max-width: 768px) {
    .upskilling-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tracks-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .upskilling-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .program-card,
    .track-card,
    .approach-card {
        padding: 1.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .upskilling-cta h2 {
        font-size: 1.75rem;
    }
}