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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
.mdqr-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 16px 0;
}

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

.mdqr-logo {
    width: 140px;
    height: 40px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.mdqr-nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    margin: 0;
}

.mdqr-nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.mdqr-nav-link:hover,
.mdqr-nav-link.active {
    color: #0066ff;
}

.mdqr-nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066ff, #00d4ff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

.mdqr-btn-cta {
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.mdqr-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
}

/* Breadcrumb */
.mdqr-breadcrumb {
    background: #f8fafc;
    padding: 16px 0;
    margin-top: 72px;
    border-bottom: 1px solid #e2e8f0;
}

.mdqr-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.mdqr-breadcrumb-link {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.mdqr-breadcrumb-link:hover {
    color: #0066ff;
}

.mdqr-breadcrumb-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0066ff;
    transition: width 0.3s ease;
}

.mdqr-breadcrumb-link:hover::after {
    width: 100%;
}

.mdqr-breadcrumb-separator {
    color: #a1a1aa;
    font-weight: 300;
}

.mdqr-breadcrumb-current {
    color: #1a1a1a;
    font-weight: 600;
}

/* Hero Section */
.mdqr-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.mdqr-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mdqr-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    color: #0066ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.mdqr-hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.mdqr-hero-badge:hover::before {
    left: 100%;
}

.mdqr-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.mdqr-gradient-text {
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.mdqr-gradient-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0066ff, #00d4ff);
    opacity: 0.3;
}

.mdqr-hero-subtitle {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.mdqr-hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.mdqr-btn-primary {
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.mdqr-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mdqr-btn-primary:hover::before {
    left: 100%;
}

.mdqr-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.4);
}

.mdqr-btn-secondary {
    background: transparent;
    color: #1a1a1a;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mdqr-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.mdqr-btn-secondary:hover::before {
    left: 100%;
}

.mdqr-btn-secondary:hover {
    border-color: #0066ff;
    color: #0066ff;
    transform: translateY(-2px);
}

.mdqr-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mdqr-hero-image {
    position: relative;
    z-index: 2;
}

.mdqr-hero-image img {
    width: 80%;
    margin-left: 10%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.1);
}

.mdqr-hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.mdqr-decoration-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 50%;
    top: -50px;
    right: -50px;
    animation: pulse 4s ease-in-out infinite;
}

.mdqr-decoration-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, #0066ff, transparent);
    right: 50px;
    bottom: -50px;
}

.mdqr-decoration-dots {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 20px;
    left: -30px;
    background-image: radial-gradient(circle, #0066ff 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.3;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.mdqr-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.mdqr-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.02), rgba(0, 212, 255, 0.02));
}

.mdqr-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(0, 102, 255, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
}

.mdqr-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.mdqr-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 212, 255, 0.05));
}

.mdqr-bg-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation: float 6s ease-in-out infinite;
}

.mdqr-bg-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.mdqr-bg-shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 10%;
    animation: float 7s ease-in-out infinite;
}

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

/* Team Overview Section */
.mdqr-team-overview {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.mdqr-team-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0066ff, transparent);
}

.mdqr-team-overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mdqr-team-overview-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.mdqr-team-overview-subtitle {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.mdqr-team-overview-description {
    margin-bottom: 48px;
}

.mdqr-team-overview-description p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.mdqr-team-overview-stats {
    display: flex;
    gap: 48px;
}

.mdqr-team-overview-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.mdqr-team-overview-stat::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #0066ff, transparent);
    transform: translateY(-50%);
}

.mdqr-team-overview-stat:last-child::after {
    display: none;
}

.mdqr-team-overview-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mdqr-team-overview-stat-label {
    font-size: 14px;
    color: #666666;
    margin-top: 4px;
}

.mdqr-team-overview-visual {
    position: relative;
}

.mdqr-team-overview-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.1);
}

.mdqr-team-overview-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 16px;
    z-index: -1;
}

/* Leadership Section */
.mdqr-leadership {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
}

.mdqr-leadership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0066ff, transparent);
}

.mdqr-section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.mdqr-section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0066ff, #00d4ff);
    transform: translateX(-50%);
    border-radius: 2px;
}

.mdqr-section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.mdqr-section-subtitle {
    font-size: 1.125rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mdqr-leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.mdqr-leadership-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mdqr-leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066ff, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mdqr-leadership-card:hover::before {
    transform: scaleX(1);
}

.mdqr-leadership-card:hover {
    border-color: #0066ff;
    box-shadow: 0 16px 32px rgba(0, 102, 255, 0.1);
    transform: translateY(-4px);
}

.mdqr-leadership-photo {
    width: 120px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 24px;
    position: relative;
}

.mdqr-leadership-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mdqr-leadership-card:hover .mdqr-leadership-photo img {
    transform: scale(1.05);
}

.mdqr-leadership-info {
    text-align: center;
}

.mdqr-leadership-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.mdqr-leadership-title {
    font-size: 1rem;
    color: #0066ff;
    font-weight: 600;
    margin-bottom: 16px;
}

.mdqr-leadership-description {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.mdqr-leadership-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.mdqr-leadership-expertise-tag {
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

/* Departments Section */
.mdqr-departments {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.mdqr-departments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.01), rgba(0, 212, 255, 0.01));
    pointer-events: none;
}

.mdqr-departments-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mdqr-departments-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.mdqr-departments-subtitle {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.mdqr-departments-description {
    margin-bottom: 48px;
}

.mdqr-departments-description p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.mdqr-departments-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mdqr-department-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.mdqr-department-item:hover {
    background: rgba(248, 250, 252, 0.8);
    border-color: rgba(0, 102, 255, 0.2);
    transform: translateX(8px);
}

.mdqr-department-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.mdqr-department-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mdqr-department-item:hover .mdqr-department-icon::before {
    left: 100%;
}

.mdqr-department-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.mdqr-department-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.mdqr-department-content p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.mdqr-department-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mdqr-department-stats span {
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.mdqr-departments-visual {
    position: relative;
}

.mdqr-departments-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.1);
}

.mdqr-departments-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 16px;
    z-index: -1;
}

/* Team Culture Section */
.mdqr-team-culture {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
}

.mdqr-team-culture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0066ff, transparent);
}

.mdqr-culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.mdqr-culture-card {
    background: #ffffff;
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mdqr-culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066ff, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mdqr-culture-card:hover::before {
    transform: scaleX(1);
}

.mdqr-culture-card:hover {
    border-color: #0066ff;
    box-shadow: 0 16px 32px rgba(0, 102, 255, 0.1);
    transform: translateY(-4px);
}

.mdqr-culture-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    overflow: hidden;
}

.mdqr-culture-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mdqr-culture-card:hover .mdqr-culture-icon::before {
    left: 100%;
}

.mdqr-culture-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.mdqr-culture-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.mdqr-culture-description {
    color: #666666;
    line-height: 1.6;
}

/* Join Our Team Section */
.mdqr-join-team {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.mdqr-join-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0066ff, transparent);
}

.mdqr-join-team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mdqr-join-team-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.mdqr-join-team-subtitle {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.mdqr-join-team-description {
    margin-bottom: 48px;
}

.mdqr-join-team-description p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.mdqr-join-team-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.mdqr-join-team-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.mdqr-join-team-benefit:hover {
    background: rgba(248, 250, 252, 0.8);
    border-color: rgba(0, 102, 255, 0.2);
    transform: translateX(8px);
}

.mdqr-join-team-benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.mdqr-join-team-benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mdqr-join-team-benefit:hover .mdqr-join-team-benefit-icon::before {
    left: 100%;
}

.mdqr-join-team-benefit-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.mdqr-join-team-benefit span {
    font-weight: 600;
    color: #1a1a1a;
}

.mdqr-join-team-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.mdqr-join-team-visual {
    position: relative;
}

.mdqr-join-team-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.1);
}

.mdqr-join-team-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 16px;
    z-index: -1;
}

/* Footer */
.mdqr-footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

.mdqr-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0066ff, transparent);
}

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

.mdqr-footer-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    position: relative;
}

.mdqr-footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #0066ff, #00d4ff);
    border-radius: 1px;
}

.mdqr-footer-section p {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 12px;
}

.mdqr-footer-section ul {
    list-style: none;
}

.mdqr-footer-section ul li {
    margin-bottom: 12px;
}

.mdqr-footer-section ul li a {
    color: #a1a1aa;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 16px;
}

.mdqr-footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0066ff;
    transition: transform 0.3s ease;
}

.mdqr-footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 20px;
}

.mdqr-footer-section ul li a:hover::before {
    transform: translateX(4px);
}

.mdqr-social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.mdqr-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mdqr-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mdqr-social-link:hover::before {
    left: 100%;
}

.mdqr-social-link:hover {
    background: rgba(0, 102, 255, 0.2);
    transform: translateY(-2px);
}

.mdqr-social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.mdqr-footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.mdqr-footer-bottom p {
    color: #a1a1aa;
}

.mdqr-footer-links {
    display: flex;
    gap: 24px;
}

.mdqr-footer-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mdqr-footer-links a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mdqr-nav-menu {
        display: none;
    }
    
    .mdqr-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .mdqr-hero-title {
        font-size: 2.5rem;
    }
    
    .mdqr-team-overview-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .mdqr-departments-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .mdqr-join-team-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .mdqr-leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .mdqr-culture-grid {
        grid-template-columns: 1fr;
    }
    
    .mdqr-team-overview-stats {
        justify-content: center;
    }
    
    .mdqr-section-title {
        font-size: 2.5rem;
    }
    
    .mdqr-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .mdqr-container {
        padding: 0 16px;
    }
    
    .mdqr-hero-title {
        font-size: 2rem;
    }
    
    .mdqr-hero-subtitle {
        font-size: 1rem;
    }
    
    .mdqr-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .mdqr-team-overview-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .mdqr-join-team-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .mdqr-section-title {
        font-size: 2rem;
    }
    
    .mdqr-team-overview-title,
    .mdqr-departments-title,
    .mdqr-join-team-title {
        font-size: 2rem;
    }
} 

/* Font Awesome Icons - White Color */
.fas, .fab, .far {
    color: #ffffff;
}

/* Department icons */
.mdqr-department-icon .fas,
.mdqr-department-icon .fab,
.mdqr-department-icon .far {
    color: #ffffff;
    font-size: 2rem;
}

/* Culture icons */
.mdqr-culture-icon .fas,
.mdqr-culture-icon .fab,
.mdqr-culture-icon .far {
    color: #ffffff;
    font-size: 1.5rem;
}

/* Join team benefit icons */
.mdqr-join-team-benefit-icon .fas,
.mdqr-join-team-benefit-icon .fab,
.mdqr-join-team-benefit-icon .far {
    color: #ffffff;
    font-size: 1.2rem;
}

/* Social media icons */
.mdqr-social-link .fas,
.mdqr-social-link .fab,
.mdqr-social-link .far {
    color: #ffffff;
    font-size: 1.2rem;
} 