:root {
    --primary-color: #FF6600;
    --primary-dark: #CC5200;
    --brand-black: #000000;
    --brand-orange: #FF6600;
    --text-dark: #000000;
    --text-light: #333333;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 0.4rem 0;
    min-height: 50px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    margin-right: 0;
    order: 1;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin-left: 3rem;
    order: 2;
    flex: 1;
}

.header-actions {
    order: 3;
    margin-left: auto;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-connect {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-connect:hover {
    background: var(--primary-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
}

/* Hero Section */
.hero {
    background-color: #000000;
    color: var(--bg-white);
    padding: 0;
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero .container {
    padding-left: 0;
    padding-right: 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 2;
    width: 100%;
    padding-left: 0;
    padding-right: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    max-width: 1000px;
    text-align: left;
    padding: 1.5rem 2rem 1.5rem 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    display: inline-block;
}

.hero-title-brand {
    color: var(--brand-orange);
}

.hero-title-light {
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 1000px;
    text-align: left;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
}

.btn-share {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-share svg {
    width: 20px;
    height: 20px;
}

.btn-share-facebook {
    background: #1877F2;
    color: var(--bg-white);
}

.btn-share-facebook:hover {
    background: #166FE5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(24, 119, 242, 0.3);
}

.btn-share-linkedin {
    background: #0077B5;
    color: var(--bg-white);
}

.btn-share-linkedin:hover {
    background: #006399;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 119, 181, 0.3);
}

/* Featured Section */
.featured-section {
    background: #ffffff;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.featured-content {
    max-width: 900px;
    margin: 0 auto;
}

.featured-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.featured-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.featured-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.featured-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-title .heading-bold {
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Summary (Homepage) */
.services-summary {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-summary-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.services-summary-actions {
    margin-top: 2.5rem;
}

/* Services Cards Grid */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
    flex-shrink: 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    flex: 1;
}

.service-card-description strong {
    font-weight: 600;
    color: var(--text-dark);
}

.services-full-list-link {
    text-align: center;
    margin-top: 3rem;
}

.services-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
}

.services-link:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* Tablet breakpoint for services cards */
@media (max-width: 992px) and (min-width: 769px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Services Detailed Section (What We Do Page) */
.services-detailed-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, var(--bg-white) 50%, #f8f9fa 100%);
    position: relative;
}

.services-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-category {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}


.service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-category:hover {
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.15);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.service-category:hover::before {
    opacity: 1;
}

.service-category-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: none;
    position: relative;
}

.service-category-title .heading-bold {
    font-weight: 700;
}

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

.service-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

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

.service-item-icon-wrapper {
    flex-shrink: 0;
}

.service-item-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 8px;
}

.service-item-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.service-item-content {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-item-content p {
    margin: 0;
}

.service-category-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

/* Service Category Interactive Layout (for all categories) */
.service-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    flex-wrap: wrap;
    gap: 1rem;
    transition: margin-bottom 0.4s ease;
}

.service-category-interactive.has-active-detail .service-category-header {
    margin-bottom: 1.5rem;
}

.service-category-header .service-category-title {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-category-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.service-category-link {
    font-size: 0.95rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 6px;
    font-weight: 500;
    position: relative;
}

.service-category-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.service-category-link:hover {
    color: var(--text-dark);
    background: rgba(255, 140, 0, 0.08);
    padding-left: 1.5rem;
}

.service-category-link:hover::before {
    width: 8px;
}

.service-category-link.active {
    color: var(--primary-color);
    text-decoration: none;
    background: rgba(255, 140, 0, 0.12);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.2);
}

.service-category-link.active::before {
    width: 8px;
}

.service-category-details {
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
}

.service-category-details.has-active {
    margin-top: 1.5rem;
    max-height: 2000px;
}

.service-detail {
    display: none;
    animation: fadeIn 0.3s ease;
}

.service-detail.active {
    display: block;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--bg-white) 100%);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.service-detail.active .service-detail-content {
    background: var(--bg-white);
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.12);
    border-color: rgba(255, 140, 0, 0.3);
    transform: translateY(-2px);
}

.service-detail-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.service-detail-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detail.active .service-detail-image::after {
    opacity: 1;
}

.service-detail-image .detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail.active .service-detail-image .detail-img {
    transform: scale(1.08);
}

.service-detail-text h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.75rem;
}

.service-detail-text h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.service-detail-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin: 0;
    font-weight: 300;
}

/* Service Popup Modal */
.service-popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-popup-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.service-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.service-popup-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    animation: popupSlideIn 0.3s ease;
}

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

.service-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10002;
    line-height: 1;
}

.service-popup-close:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: rotate(90deg);
}

.service-popup-body {
    padding: 3rem;
}

.service-popup-body .service-category-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.service-popup-body .service-category-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-popup-body .service-category-link {
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.service-popup-body .service-category-link:hover {
    background: rgba(255, 140, 0, 0.1);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.service-popup-body .service-detail {
    display: block;
    margin-top: 2rem;
}

.service-popup-body .service-detail-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
    background: transparent;
    border: none;
}

.service-popup-body .service-detail-image {
    height: 300px;
}

.services-tabs {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.tab-buttons {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-right: 1px solid var(--border-color);
    padding-right: 2rem;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 1.5rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    border-left: 4px solid transparent;
    border-radius: 0;
    width: 100%;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: rgba(255, 102, 0, 0.03);
}

.tab-btn.active {
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(255, 102, 0, 0.08);
    border-left-color: var(--primary-color);
}

.tab-content-wrapper {
    position: relative;
    min-height: 400px;
}

.tab-content {
    display: none;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-content {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
}

.service-image-wrapper {
    overflow: hidden;
    position: relative;
}

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

.service-text {
    padding: 3.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.industries-image-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.industries-infographic {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Resources Section (Homepage) */
.resources-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.resources-preview {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.resources-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Resources Page Styles */
.resources-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.resources-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.resources-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    pointer-events: none;
}

.resources-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.resources-hero-title {
    font-size: 4rem;
    font-weight: 400;
    color: var(--bg-white);
    margin-bottom: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.resources-hero-title .heading-bold {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.resources-hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    max-width: 850px;
    margin: 0 auto;
    font-weight: 300;
}

.resources-list-section {
    padding: 100px 0;
    background: var(--bg-white);
}

/* Technology Partners Section */
.partners-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.partner-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.partner-card:hover {
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.15);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.partner-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 3rem 2rem;
    height: 100%;
}

.partner-logo-wrapper {
    width: 100%;
    max-width: 250px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.partner-card:hover .partner-logo-wrapper {
    background: rgba(255, 140, 0, 0.05);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: var(--transition);
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
}

.partner-info {
    text-align: center;
    width: 100%;
}

.partner-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.partner-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.resource-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.resource-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.resource-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.resource-info {
    flex: 1;
}

.resource-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.resource-meta {
    font-size: 0.9rem;
    color: var(--text-light);
}

.resource-preview {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.resource-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.resource-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Thinking Section */
.thinking-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.thinking-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.thinking-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.thinking-category {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.thinking-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.thinking-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Work Section */
.work-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.work-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.work-content {
    padding: 2rem;
}

.work-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.work-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
    margin-top: 3rem;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    width: 100%;
    height: 120px;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.client-image {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: var(--transition);
}

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

/* Careers Section */
.careers-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.careers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.careers-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.careers-text {
    padding: 0 2rem;
}

.careers-section .section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--bg-white);
}

.careers-description {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.careers-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.careers-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.careers-actions .btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.careers-actions .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.careers-actions .btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.careers-actions .btn-secondary:hover {
    background: var(--bg-white);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Careers Page Styles */
.careers-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--bg-white);
}

.careers-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.careers-hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--bg-white);
    margin-bottom: 2rem;
}

.careers-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Why Join Section */
.why-join-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.benefit-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.75rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.25rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-title .heading-bold {
    font-weight: 700;
}

.benefit-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Positions Section */
.positions-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.positions-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.position-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.position-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.position-info {
    flex: 1;
}

.position-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.position-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.position-location,
.position-type {
    font-size: 0.95rem;
    color: var(--text-light);
}

.position-type {
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.position-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.position-requirements {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.position-requirements h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.position-requirements ul {
    list-style: none;
    padding-left: 0;
}

.position-requirements li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.position-requirements li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-title .heading-bold {
    font-weight: 700;
}

.step-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Apply Section */
.apply-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--bg-white);
}

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

.apply-content .section-title {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.apply-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.apply-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.apply-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.apply-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.apply-info .contact-link {
    color: var(--primary-color);
}

/* Who We Are Page Styles */
.page-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 140, 0, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

.page-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    pointer-events: none;
    opacity: 0.5;
}

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

.page-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-size: 4rem;
    font-weight: 400;
    color: var(--bg-white);
    margin-bottom: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-hero-title .heading-bold {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    max-width: 850px;
    margin: 0 auto;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2) 0%, rgba(255, 140, 0, 0.1) 100%);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-badge::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;
}

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

.ai-badge:hover {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.3) 0%, rgba(255, 140, 0, 0.2) 100%);
    border-color: rgba(255, 140, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.ai-badge svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, 0.9);
    animation: pulse 2s ease-in-out infinite;
}

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

.about-content-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--bg-white) 0%, #f8f9fa 100%);
    position: relative;
}

.services-intro-content {
    max-width: 950px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.services-list-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, var(--bg-white) 100%);
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-category-item {
    background: var(--bg-white);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.service-category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.3);
}

.service-category-item .service-popup-link {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    padding-left: 0;
    border-bottom: 2px solid rgba(255, 140, 0, 0.1);
    transition: var(--transition);
    list-style: none;
}

.service-category-item .service-popup-link::before {
    display: none;
}

.service-category-item .service-popup-link .heading-bold {
    font-weight: 700;
}

.service-category-item .service-popup-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.service-category-item .service-sub-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-category-item .service-sub-items li {
    margin-bottom: 0.6rem;
}

.service-category-item .service-item-link {
    font-size: 0.9rem;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    transition: var(--transition);
    font-weight: 400;
    opacity: 0.85;
}

.service-category-item .service-item-link::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.85rem;
    line-height: 1;
    transition: var(--transition);
}

.service-category-item .service-item-link:hover {
    color: var(--primary-color);
    opacity: 1;
    padding-left: 1.5rem;
}

.service-category-item .service-item-link:hover::before {
    transform: translateX(3px);
}


.services-intro-left {
    padding-right: 2rem;
}

.services-intro-right {
    padding-left: 2rem;
}

.services-categories-list {
    position: sticky;
    top: 100px;
}

.services-categories-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-categories-bullets > li {
    margin-bottom: 1rem;
}

.service-popup-link {
    font-size: 0.95rem;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    transition: var(--transition);
    font-weight: 600;
}

.service-popup-link::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 1;
}

.service-popup-link:hover {
    color: var(--primary-color);
    padding-left: 2rem;
}

.service-sub-items {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 1.5rem;
}

.service-sub-items li {
    margin-bottom: 0.5rem;
}

.service-item-link {
    font-size: 0.85rem;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    transition: var(--transition);
    font-weight: 400;
    opacity: 0.8;
}

.service-item-link::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
    line-height: 1;
    transition: var(--transition);
}

.service-item-link:hover {
    color: var(--primary-color);
    opacity: 1;
    padding-left: 1.5rem;
}

.service-item-link:hover::before {
    transform: translateX(3px);
}

.about-text-content {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

@media (max-width: 1024px) {
    .services-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.about-paragraph {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-paragraph strong {
    color: var(--text-dark);
    font-weight: 600;
}

.about-visible {
    display: block;
}

.about-expandable {
    display: none;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 0;
    opacity: 0;
}

.about-expandable.expanded {
    display: block;
    max-height: 2000px;
    opacity: 1;
}

.read-more-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    margin-top: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.read-more-link:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.vision-mission-section {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.vision-mission-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.vision-mission-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.vision-mission-title {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.vision-mission-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.mission-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.75rem;
}

.mission-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.mission-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.values-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.value-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.leadership-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.leadership-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.leadership-photo-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-light);
}

.leadership-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.leadership-card:hover .leadership-image {
    transform: scale(1.05);
}

.leadership-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.leadership-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.leadership-designation {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.leadership-bio {
    flex: 1;
}

.leadership-bio p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.leadership-bio p:last-child {
    margin-bottom: 0;
}

.leadership-bio p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #000000;
    color: var(--bg-white);
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .tab-buttons {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--border-color);
    }

    .tab-btn {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 0.75rem 1rem;
    }

    .tab-btn.active {
        border-left: none;
        border-bottom-color: var(--primary-color);
    }

    .service-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-image-wrapper {
        height: 250px;
    }

    .service-text {
        padding: 2.5rem 2rem;
    }

    .service-title {
        font-size: 1.75rem;
    }

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

    .industries-image-wrapper {
        margin-top: 2rem;
    }

    .industries-infographic {
        width: 100%;
    }

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

    .client-logo {
        height: 100px;
        padding: 1rem;
    }

    .client-image {
        max-height: 60px;
    }

    .resources-hero {
        padding: 100px 0 60px;
    }

    .resources-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .resources-hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .partners-section {
        padding: 60px 0;
    }

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

    .partner-link {
        padding: 2rem 1.5rem;
    }

    .partner-logo-wrapper {
        max-width: 200px;
        height: 120px;
        margin-bottom: 1.5rem;
    }

    .partner-name {
        font-size: 1.3rem;
    }

    .partner-description {
        font-size: 0.95rem;
    }

    .resource-header {
        flex-direction: column;
        gap: 1rem;
    }

    .resource-card {
        padding: 1.5rem;
    }

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

    .resource-actions {
        flex-direction: column;
    }

    .resource-actions .btn {
        width: 100%;
    }

    .resource-header .share-buttons {
        position: static;
        margin-top: 1rem;
        align-self: flex-start;
    }

    .resource-actions .share-buttons .btn-share {
        width: 36px;
        height: 36px;
    }

    .resource-actions .share-buttons .btn-share svg {
        width: 18px;
        height: 18px;
    }

    /* Careers Page Responsive */
    .careers-section {
        padding: 80px 0;
    }

    .careers-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .careers-description {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .careers-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .careers-actions .btn {
        width: 100%;
        min-width: auto;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

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

    .careers-hero-subtitle {
        font-size: 1.1rem;
    }

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

    .position-header {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .btn-primary {
        width: 100%;
        text-align: center;
    }

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

    .apply-actions {
        flex-direction: column;
    }

    .apply-actions .btn {
        width: 100%;
    }

    /* Who We Are Page Responsive */
    .page-hero-section {
        padding: 80px 0 50px;
    }

    .page-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .page-hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.7;
        flex-direction: column;
        gap: 0.5rem;
    }

    .ai-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.85rem;
    }

    .ai-badge svg {
        width: 12px;
        height: 12px;
    }

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

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

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

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

    .vision-mission-card {
        padding: 2rem;
    }

    .vision-mission-title {
        font-size: 1.75rem;
    }

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

    .value-card {
        padding: 2rem;
    }

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

    .leadership-photo-wrapper {
        height: 250px;
    }

    .leadership-info {
        padding: 1.5rem;
    }

    .leadership-name {
        font-size: 1.25rem;
    }

    .leadership-designation {
        font-size: 0.95rem;
    }

    .leadership-bio p {
        font-size: 0.9rem;
    }

    /* Services Summary Responsive */
    .services-summary-text {
        font-size: 1rem;
    }

    /* Services Intro Grid Responsive */
    .services-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .services-intro-left {
        padding-right: 0;
    }

    .services-intro-right {
        padding-left: 0;
    }

    .services-categories-list {
        position: static;
    }

    .service-popup-content {
        width: 95%;
        max-height: 90vh;
    }

    .service-popup-body {
        padding: 2rem 1.5rem;
    }

    .service-popup-body .service-category-title {
        font-size: 1.5rem;
    }

    .service-popup-body .service-detail-image {
        height: 200px;
    }

    .service-sub-items {
        margin-left: 1rem;
    }

    .service-item-link {
        font-size: 0.8rem;
        padding-left: 1rem;
    }


    .services-list-section {
        padding: 40px 0;
    }

    .services-list-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .service-category-item {
        padding: 1.5rem;
    }

    .service-category-item .service-popup-link {
        font-size: 1rem;
    }

    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .service-card-image {
        height: 180px;
    }

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

    .service-card-description {
        font-size: 0.95rem;
    }

    .services-full-list-link {
        margin-top: 2rem;
    }

    .services-link {
        font-size: 1rem;
        padding: 0.65rem 1.5rem;
        width: 100%;
        max-width: 300px;
    }

    /* Services Detailed Section Responsive */
    .services-detailed-section {
        padding: 40px 0;
    }

    .services-categories {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .service-category {
        padding: 1.5rem;
    }

    .service-category-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

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

    .service-item {
        padding: 1.25rem;
    }

    .service-item-header h4 {
        font-size: 1rem;
    }

    .service-item-content {
        font-size: 0.9rem;
    }

    .service-category-row {
        grid-template-columns: 1fr;
    }

    /* Service Category Interactive Responsive */
    .service-category-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-category-links {
        justify-content: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .service-category-link {
        font-size: 0.85rem;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-detail-image {
        height: 200px;
    }

    .service-detail-text h4 {
        font-size: 1.25rem;
    }

    .service-detail-text p {
        font-size: 0.95rem;
    }
}
