* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation Bar */
.navbar {
    background-color: #f5f5f5;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #E91E8C;
}

/* Hero Section */
.hero {
    background-color: #f5f5f5;
    min-height: calc(100vh - 80px);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: calc(100vh - 80px);
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    background-color: #0d4d4d;
    color: white;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    background-color: rgba(13, 77, 77, 0.8);
    padding: 0.5rem 1rem;
    display: inline-block;
    width: fit-content;
}

.hero-subtitle {
    margin-bottom: 2.5rem;
}

.hero-subtitle h2 {
    font-size: 2.8rem;
    font-weight: 700;
    background-color: #E91E8C;
    color: white;
    padding: 1rem 1.5rem;
    display: inline-block;
    width: fit-content;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-text strong {
    font-weight: 700;
}

.cta-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 1.5rem;
}

.cta-button:hover {
    background-color: white;
    color: #0d4d4d;
}

/* Services Section */
.services {
    background-color: #f9f9f9;
    padding: 5rem 2rem;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d4d4d;
    margin-bottom: 2rem;
}

.services-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    text-align: center;
    padding: 1rem;
}

.service-icon {
    margin-bottom: 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d4d4d;
    margin-bottom: 1.5rem;
}

.service-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* Video & Stats Section */
.video-stats {
    background-color: #f5f5f5;
    padding: 5rem 2rem;
}

.video-stats-container {
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 3rem;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.video-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stats-container {
    background-color: white;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #0d4d4d;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #0d4d4d;
    font-weight: 600;
}

.cta-center {
    text-align: center;
}

.cta-button-pink {
    background-color: transparent;
    color: #E91E8C;
    border: 2px solid #E91E8C;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-pink:hover {
    background-color: #E91E8C;
    color: white;
}

/* Results & Expertise Section */
.results-expertise {
    background-color: white;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.results-expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    height: 3px;
    background: linear-gradient(to right, #E91E8C 0%, #E91E8C 50%, transparent 50%);
}

.results-expertise::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 70%;
    background-color: #E91E8C;
    border-radius: 0 0 0 100px;
}

.results-expertise-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.results-title {
    font-size: 2.8rem;
    font-weight: 700;
    display: inline-block;
    margin: 0;
}

.title-dark {
    background-color: #0d4d4d;
    color: white;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    margin-right: 0.5rem;
}

.title-pink {
    background-color: #E91E8C;
    color: white;
    padding: 0.5rem 1.5rem;
    display: inline-block;
}

.results-description {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto 4rem;
}

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

.expertise-card {
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.expertise-card:hover {
    border-color: #E91E8C;
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.15);
    transform: translateY(-3px);
}

.expertise-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d4d4d;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.expertise-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    font-size: 1.5rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.expertise-card:hover .card-arrow {
    color: #E91E8C;
    transform: translateX(5px);
}

/* Connecting to Excellence Section */
.connecting-excellence {
    background-color: #f9f9f9;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.connecting-excellence::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 3px;
    height: 40%;
    background-color: #E91E8C;
    border-radius: 0 100px 0 0;
}

.connecting-excellence::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 0;
    left: 50%;
    height: 3px;
    background-color: #E91E8C;
}

.connecting-excellence-container {
    max-width: 1400px;
    margin: 0 auto;
}

.connecting-title {
    font-size: 2.8rem;
    font-weight: 700;
    display: inline-block;
    margin: 0;
}

.connecting-description {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.role-card {
    padding: 3.5rem 2.5rem;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
}

.role-dark {
    background-color: #5a7186;
    color: white;
}

.role-light {
    background-color: white;
    color: #0d4d4d;
}

.role-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.role-dark .role-title {
    color: white;
}

.role-light .role-title {
    color: #0d4d4d;
}

.role-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.role-dark .role-text {
    color: white;
}

.role-light .role-text {
    color: #333;
}

.role-button {
    background-color: transparent;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    border: 2px solid;
}

.role-button-white {
    border-color: white;
    color: white;
}

.role-button-white:hover {
    background-color: white;
    color: #5a7186;
}

.role-button-pink {
    border-color: #E91E8C;
    color: #E91E8C;
}

.role-button-pink:hover {
    background-color: #E91E8C;
    color: white;
}

/* Commercial Skill Set Section */
.commercial-skillset {
    background-color: white;
    padding: 5rem 2rem;
}

.commercial-skillset-container {
    max-width: 1400px;
    margin: 0 auto;
}

.commercial-intro {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.commercial-image {
    width: 100%;
    border-radius: 100px 0 0 0;
    overflow: hidden;
}

.commercial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.commercial-content {
    padding-right: 2rem;
}

.commercial-title {
    margin-bottom: 2rem;
}

.commercial-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d4d4d;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.commercial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Timeline Section */
.skillset-timeline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 0;
}

.timeline-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #0d4d4d;
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-label {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d4d4d;
    text-align: center;
    margin: 2rem 0;
}

.timeline-label-top {
    margin-top: 0;
    margin-bottom: 3rem;
}

.timeline-label-bottom {
    margin-top: 3rem;
    margin-bottom: 0;
}

.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #5a7186;
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-left {
    grid-template-areas: "card dot empty";
}

.timeline-right {
    grid-template-areas: "empty dot card";
}

.timeline-left .timeline-card {
    grid-area: card;
    text-align: left;
}

.timeline-right .timeline-card {
    grid-area: card;
    text-align: left;
}

.timeline-dot {
    grid-area: dot;
    width: 20px;
    height: 20px;
    background-color: #5a7186;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #5a7186;
    z-index: 1;
}

.timeline-card {
    background-color: white;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timeline-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d4d4d;
    margin-bottom: 1rem;
}

.timeline-title-pink {
    color: #E91E8C;
}

.timeline-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* Project Solutions Section */
.project-solutions {
    background-color: white;
    padding: 0;
    overflow: hidden;
}

.project-solutions-container {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 500px;
}

.project-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-content {
    background-color: #0d4d4d;
    color: white;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-title {
    margin-bottom: 3rem;
}

.title-medium {
    background-color: #4a6d7c;
    color: white;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.project-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: white;
}

/* Permanent Hires Section */
.permanent-hires {
    background-color: #f5f5f5;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.permanent-hires::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 30%;
    background-color: #E91E8C;
}

.permanent-hires::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3px;
    height: 30%;
    background-color: #E91E8C;
}

.permanent-hires-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 55% 45%;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.permanent-content {
    padding: 3rem 0;
}

.permanent-title {
    margin-bottom: 3rem;
}

.permanent-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
}

.permanent-image {
    width: 100%;
    border-radius: 0 100px 0 0;
    overflow: hidden;
}

.permanent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* How We Work Section */
.how-we-work {
    background-color: #f5f5f5;
    padding: 5rem 2rem;
}

.how-we-work-container {
    max-width: 1400px;
    margin: 0 auto;
}

.how-we-work-title {
    text-align: center;
    margin-bottom: 2rem;
}

.how-we-work-description {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.work-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.work-step {
    padding: 4rem 3rem;
    position: relative;
}

.work-step-light {
    background-color: white;
}

.work-step-dark {
    background-color: #5a7186;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    color: white;
}

.step-number-medium {
    background-color: #5a7186;
}

.step-number-dark {
    background-color: #0d4d4d;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.work-step-light .step-title {
    color: #0d4d4d;
}

.work-step-dark .step-title {
    color: white;
}

.step-text {
    font-size: 1.05rem;
    line-height: 1.8;
}

.work-step-light .step-text {
    color: #333;
}

.work-step-dark .step-text {
    color: white;
}

/* Industry Experts Section */
.industry-experts {
    background-color: white;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.industry-experts::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 150px;
    border: 3px solid #E91E8C;
    border-right: none;
    border-bottom: none;
    border-radius: 0 0 200px 0;
}

.industry-experts::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 200px;
    border: 3px solid #5a7186;
    border-left: none;
    border-top: none;
    border-radius: 0 0 0 200px;
}

.industry-experts-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.industry-title {
    text-align: center;
    margin-bottom: 2rem;
}

.industry-description {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.industry-icon {
    margin-bottom: 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.industry-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0d4d4d;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials {
    background-color: #0d4d4d;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 3px;
    height: 250px;
    background-color: #E91E8C;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 3px;
    height: 250px;
    background-color: #E91E8C;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.quote-icon {
    font-size: 8rem;
    color: white;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-prev,
.testimonial-next {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-weight: 300;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

/* Trusted Companies Section */
.trusted-companies {
    background-color: white;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.trusted-companies::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -50px;
    width: 200px;
    height: 400px;
    border: 3px solid #E91E8C;
    border-right: none;
    border-top: none;
    border-radius: 0 0 200px 0;
}

.trusted-companies-container {
    max-width: 1400px;
    margin: 0 auto;
}

.trusted-title {
    font-size: 2rem;
    font-weight: 400;
    color: #0d4d4d;
    text-align: center;
    margin-bottom: 4rem;
}

.companies-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.company-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

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

/* Contact Form Section */
.contact-form-section {
    background-color: #f5f5f5;
    padding: 5rem 2rem;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d4d4d;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #0d4d4d;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
}

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

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

.submit-button {
    background-color: #E91E8C;
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: #d11a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: white;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background-color: #E91E8C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    font-weight: bold;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0d4d4d;
    margin-bottom: 1rem;
}

.modal-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* Footer */
.footer {
    background-color: #0d4d4d;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #E91E8C;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #E91E8C;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        min-height: 400px;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

    .stats-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 2rem;
    }

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

    .results-title {
        font-size: 2.2rem;
    }

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

    .connecting-title {
        font-size: 2.2rem;
    }

    .commercial-intro {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .commercial-content {
        padding-right: 0;
    }

    .timeline-item {
        grid-template-columns: 1fr auto 1fr;
        gap: 1.5rem;
    }

    .project-solutions-container {
        grid-template-columns: 1fr;
    }

    .project-image {
        min-height: 400px;
    }

    .project-content {
        padding: 4rem 3rem;
    }

    .permanent-hires-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .work-steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

    .hero-subtitle h2 {
        font-size: 2rem;
    }

    .services {
        padding: 3rem 1.5rem;
    }

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

    .services-intro,
    .services-description {
        font-size: 1.1rem;
    }

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

    .video-stats {
        padding: 3rem 1.5rem;
    }

    .video-description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-text {
        font-size: 0.95rem;
    }

    .results-expertise {
        padding: 3rem 1.5rem;
    }

    .results-title {
        font-size: 1.8rem;
    }

    .title-dark,
    .title-pink {
        padding: 0.4rem 1rem;
        font-size: 1.5rem;
        display: block;
        margin-bottom: 0.5rem;
    }

    .results-description {
        font-size: 1rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .expertise-card {
        padding: 2rem 1.5rem;
    }

    .connecting-excellence {
        padding: 3rem 1.5rem;
    }

    .connecting-title {
        font-size: 1.8rem;
    }

    .connecting-description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

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

    .role-card {
        padding: 2.5rem 2rem;
        min-height: 300px;
    }

    .role-title {
        font-size: 1.5rem;
    }

    .role-text {
        font-size: 1rem;
    }

    .commercial-skillset {
        padding: 3rem 1.5rem;
    }

    .commercial-intro {
        margin-bottom: 3rem;
    }

    .commercial-subtitle {
        font-size: 1.5rem;
    }

    .commercial-text {
        font-size: 0.95rem;
    }

    .timeline-heading {
        font-size: 1.5rem;
    }

    .timeline-label {
        font-size: 1.5rem;
    }

    .timeline-container {
        padding: 1rem 0;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .timeline-left,
    .timeline-right {
        grid-template-areas:
            "dot"
            "card";
        justify-items: center;
    }

    .timeline-line {
        display: none;
    }

    .timeline-card {
        padding: 2rem 1.5rem;
        width: 100%;
    }

    .timeline-card-title {
        font-size: 1.3rem;
    }

    .timeline-card-text {
        font-size: 0.95rem;
    }

    .project-image {
        min-height: 300px;
    }

    .project-content {
        padding: 3rem 1.5rem;
    }

    .title-medium {
        font-size: 2rem;
        padding: 0.4rem 1rem;
    }

    .project-text {
        font-size: 1rem;
    }

    .permanent-hires {
        padding: 3rem 0;
    }

    .permanent-hires-container {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .permanent-content {
        padding: 2rem 0;
    }

    .permanent-text {
        font-size: 1rem;
    }

    .how-we-work {
        padding: 3rem 1.5rem;
    }

    .how-we-work-description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .work-steps-grid {
        gap: 2rem;
    }

    .work-step {
        padding: 3rem 2rem;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 3rem;
        left: 20px;
        top: -15px;
    }

    .step-title {
        font-size: 1.6rem;
        margin-top: 2.5rem;
    }

    .step-text {
        font-size: 1rem;
    }

    .industry-experts {
        padding: 3rem 1.5rem;
    }

    .industry-experts::before {
        width: 200px;
        height: 100px;
    }

    .industry-experts::after {
        width: 300px;
        height: 150px;
    }

    .industry-description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .industry-name {
        font-size: 1.1rem;
    }

    .testimonials {
        padding: 3rem 1.5rem;
    }

    .quote-icon {
        font-size: 5rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .testimonial-author {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .testimonial-nav {
        gap: 1rem;
        margin-top: 2rem;
    }

    .testimonial-prev,
    .testimonial-next {
        font-size: 2.5rem;
    }

    .trusted-companies {
        padding: 3rem 1.5rem;
    }

    .trusted-companies::before {
        width: 150px;
        height: 300px;
    }

    .trusted-title {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }

    .companies-logos {
        gap: 2rem 2.5rem;
    }

    .company-logo {
        height: 40px;
    }

    .contact-form-section {
        padding: 3rem 1.5rem;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .submit-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .modal-content {
        margin: 1rem;
        padding: 2.5rem 2rem;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .modal-text {
        font-size: 1rem;
    }

    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-nav {
        gap: 0.6rem;
    }

    .footer-nav a {
        font-size: 0.95rem;
    }

    .footer-contact p {
        font-size: 0.95rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }
}
