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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #1a202c;
    font-size: 0.775rem;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 20px;
    max-width: 1400px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 200px;
}

.brand-logo {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.brand-text {
    color: #f7fafc;
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    white-space: nowrap;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #cbd5e0;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
    display: block;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a0aec0, #f7fafc);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #f7fafc;
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

main {
    margin-top: 95px;
    background: #1a202c;
}

/* Hero Section with Slider */
.hero {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 50%, #718096 100%);
    color: #f7fafc;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    display: none;
    padding: 120px 0;
    text-align: center;
    animation: fadeIn 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2d3748;
    position: relative;
}

.slide.active {
    display: block;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.slide .container {
    position: relative;
    z-index: 2;
}

.slide:nth-child(1) {
    background-image: url('/images/gvsmartai-dashboard.jpg');
}

.slide:nth-child(2) {
    background-image: url('/images/ai-central-hub.jpg');
}

.slide:nth-child(3) {
    background-image: url('/images/digital-workspace.jpg');
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.highlight {
    background: rgba(255, 255, 255, 0.95);
    color: #1a202c !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(203, 213, 224, 0.5);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: white;
    transform: scale(1.2);
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

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

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

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #a0aec0 0%, #cbd5e0 100%);
    color: #1a202c !important;
    border: 2px solid #a0aec0;
    font-weight: 600;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(160, 174, 192, 0.3);
    text-decoration: none !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #cbd5e0 0%, #f7fafc 100%);
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(160, 174, 192, 0.4);
    color: #1a202c !important;
    text-decoration: none !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #1a202c !important;
    border: 2px solid #a0aec0;
    backdrop-filter: blur(10px);
    text-decoration: none !important;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    color: #1a202c !important;
    border-color: #cbd5e0;
    box-shadow: 0 0 20px rgba(203, 213, 224, 0.3);
    transform: translateY(-2px);
    text-decoration: none !important;
}

/* Services Detailed Section */
.services-detailed {
    padding: 80px 0;
    background: linear-gradient(rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.95)), url('/images/ai-brain-neural-network.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.075rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: stretch;
}

.service-detail.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-detail.reverse .service-content {
    order: 2;
}

.service-detail.reverse .service-image {
    order: 1;
}

.service-content {
    padding: 2rem;
}

.service-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-description {
    font-size: 0.975rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.technical-details {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #a0aec0;
}

.technical-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.technical-details ul {
    list-style: none;
    padding: 0;
}

.technical-details ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.825rem;
    line-height: 1.6;
    color: #2d3748;
}

.technical-details ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #a0aec0;
    font-weight: bold;
}

.business-value {
    background: linear-gradient(135deg, #a0aec0 0%, #cbd5e0 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.business-value h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.8rem;
}

.business-value p {
    font-size: 0.825rem;
    color: #2d3748;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.service-image {
    text-align: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Supporting Services Section */
.supporting-services-detailed {
    padding: 80px 0;
    background: #ffffff;
}

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

.supporting-service {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.supporting-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.supporting-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.supporting-service h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.supporting-service p {
    font-size: 0.825rem;
    color: #475569;
    line-height: 1.6;
}

.industry-specializations {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 4rem;
    text-align: center;
}

.industry-specializations h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f7fafc;
    margin-bottom: 1.5rem;
}

.industry-specializations p {
    font-size: 1.05rem;
    color: #e2e8f0;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.1rem;
    }
    
    .nav-menu a {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    .brand-logo {
        height: 70px;
        width: 70px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail.reverse .service-content,
    .service-detail.reverse .service-image {
        order: unset;
    }
    
    .supporting-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .service-content h3 {
        font-size: 1.6rem;
    }
    
    body {
        font-size: 0.725rem;
    }
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
    text-align: center;
}

.about p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.services-list {
    list-style: none;
    max-width: 600px;
    margin: 2rem auto;
    display: grid;
    gap: 1rem;
}

.services-list li {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 50%, #718096 100%);
    color: #f7fafc;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(160, 174, 192, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f7fafc;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Services Grid */
.services {
    padding: 80px 0;
    background: #1a202c;
    color: #e2e8f0;
}

.services-alt {
    background: linear-gradient(rgba(26, 32, 44, 0.95), rgba(45, 55, 72, 0.95)), url('/images/data-visualization-waves.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #e2e8f0;
}

/* Service Section Layouts */
.service-section {
    padding: 80px 0;
    background: #f8fafc;
    color: #1e293b;
}

.service-section:nth-child(even) {
    background: #1a202c;
    color: #e2e8f0;
}

.service-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-content-wrapper.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-image {
    position: sticky;
    top: 2rem;
    text-align: center;
    height: fit-content;
}

.service-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

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

.service-text {
    display: flex;
    flex-direction: column;
}

.service-content-wrapper.reverse .service-image {
    order: 2;
}

.service-content-wrapper.reverse .service-text {
    order: 1;
}

.service-category-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid #4a5568;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: #1e293b;
}

.service-section:nth-child(even) .service-category-title {
    border-bottom-color: #a0aec0;
    color: #f7fafc;
}

@media (max-width: 968px) {
    .service-content-wrapper,
    .service-content-wrapper.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-image {
        position: relative;
        top: auto;
        order: 1 !important;
    }
    
    .service-text {
        order: 2 !important;
    }
    
    .service-category-title {
        font-size: 2rem;
        justify-content: center;
    }
    
    .service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}


.service-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 1.8rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
    color: #1e293b;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.service-section:nth-child(even) .service-card {
    background: #2d3748;
    border: 1px solid #4a5568;
    color: #e2e8f0;
}

.service-section:nth-child(even) .service-card h3 {
    color: #f7fafc;
}

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

.service-section:nth-child(even) .service-card:hover {
    box-shadow: 0 20px 40px rgba(160, 174, 192, 0.2);
}

.service-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    vertical-align: middle;
    opacity: 0.8;
}


.service-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.service-section:nth-child(even) .service-icon {
    background: linear-gradient(135deg, #a0aec0 0%, #718096 100%);
    box-shadow: 0 8px 20px rgba(160, 174, 192, 0.3);
}

.service-card-content {
    flex: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    margin-top: 0;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    justify-content: space-between;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #e2e8f0;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    transition: left 0.3s ease;
    z-index: 1000;
    padding-top: 80px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.3);
}

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

.mobile-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-items li {
    margin: 0;
}

.mobile-menu-items a {
    display: block;
    color: #e2e8f0;
    text-decoration: none;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #4a5568;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-menu-items a:hover,
.mobile-menu-items a.active {
    background: rgba(160, 174, 192, 0.2);
    color: #a0aec0;
    padding-left: 2.5rem;
}

.mobile-menu-items li:last-child a {
    border-bottom: none;
}

/* Body overlay when menu is open */
body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* AI Products */
.ai-products {
    padding: 80px 0;
    background: white;
}

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

.product-card {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #718096;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #e2e8f0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(113, 128, 150, 0.4);
    border-color: #a0aec0;
}

.product-card.featured {
    border: 2px solid #a0aec0;
    background: linear-gradient(135deg, #4a5568 0%, #718096 100%);
    box-shadow: 0 15px 40px rgba(160, 174, 192, 0.3);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f7fafc !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.product-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.product-card ul li {
    margin-bottom: 0.5rem;
    color: #e2e8f0 !important;
}

/* Contact */
.contact {
    padding: 80px 0;
    background: white;
}

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

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
}

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

.contact-item p {
    color: #000000;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #333333;
    text-decoration: underline;
}

.contact-item h4 {
    color: #000000 !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.global-service {
    font-style: italic;
    color: #000000 !important;
    font-size: 0.9rem;
}

.map-container {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.success-message {
    background: #dcfce7;
    color: #166534;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.error-message {
    background: #fef2f2;
    color: #991b1b;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

/* Professional Typography Adjustments - Fixed Contrast */
.hero-content p,
.about p,
.visual-showcase p {
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.service-card p,
.feature-item p {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #2d3748;
}

.product-card p,
.product-card li {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #e2e8f0 !important;
}

.service-section:nth-child(even) .service-card p {
    color: #e2e8f0;
}

.services-list li,
.ai-primary li {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #2d3748;
}

.supporting li {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #2d3748;
}

.tech-specs {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 3px solid #3182ce;
    font-size: 0.8rem;
    font-weight: 400;
    color: #1a202c;
}

/* Math captcha styling */
.form-group input[type="number"] {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input[type="number"]:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

/* Training Page Styles - Fixed Contrast */
.training-header {
    background: linear-gradient(135deg, #2c3e50 0%, #4a5568 50%, #718096 100%);
    position: relative;
    overflow: hidden;
}

.training-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.training-hero {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8fafc 0%, #edf2f7 100%);
}

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

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c !important;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #4a5568 !important;
    line-height: 1.7;
    margin-bottom: 3rem;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3182ce !important;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #4a5568 !important;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.training-features {
    padding: 5rem 0;
    background: white;
}

.training-features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::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;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

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

.feature-card p {
    color: #2d3748;
    line-height: 1.6;
}

.training-curriculum {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #edf2f7 0%, #f8fafc 100%);
}

.curriculum-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.curriculum-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 3rem;
}

.curriculum-overview {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.approach-icon {
    font-size: 2rem;
    min-width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-item h3 {
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.approach-item p {
    color: #2d3748;
    line-height: 1.6;
    margin: 0;
}

.curriculum-timeline {
    space-y: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 4rem;
    bottom: -3rem;
    width: 2px;
    background: linear-gradient(to bottom, #3182ce, #cbd5e0);
}

.timeline-marker {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(49, 130, 206, 0.3);
}

.timeline-number {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    padding: 0.5rem 0;
    color: #2d3748;
    position: relative;
    padding-left: 1.5rem;
}

.timeline-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: bold;
}

.curriculum-image {
    position: sticky;
    top: 2rem;
}

.curriculum-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.training-success {
    padding: 5rem 0;
    background: white;
}

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

.success-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.success-description {
    font-size: 1.1rem;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.success-highlights {
    space-y: 1.5rem;
}

.highlight {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    border-left: 4px solid #3182ce;
    margin-bottom: 1.5rem;
}

.highlight h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.highlight p {
    color: #2d3748;
    margin: 0;
}

.training-application {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #4a5568 100%);
}

.application-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin: 0 auto;
}

.application-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.application-card > p {
    font-size: 1.1rem;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.application-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.detail {
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.detail strong {
    color: #1a202c;
    display: block;
    margin-bottom: 0.25rem;
}

.detail {
    color: #2d3748;
}

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

/* Responsive Design for Training Page */
@media (max-width: 768px) {
    .training-hero-content,
    .curriculum-content,
    .success-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-item::after {
        display: none;
    }
    
    .application-details {
        grid-template-columns: 1fr;
    }
    
    .application-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image img {
        transform: none;
    }
}

/* Product Features Styling - Fixed Contrast */
.product-features-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

.product-features-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 3rem;
}

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

.feature-item {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.feature-item p {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #2d3748;
}

/* ================== ACADEMIC RESEARCH PUBLICATION STYLING ================== */

/* Academic Content Layout Base */
.academic-page {
    background: #ffffff;
    color: #1a1a1a;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.75;
    font-size: 16px;
    min-height: 100vh;
}

.academic-page main {
    background: #ffffff;
    margin-top: 95px;
}

/* Academic Header Sections */
.article-header, .resource-header, .whitepaper-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 60px 0 40px;
    border-bottom: 3px solid #2563eb;
    color: #1e293b;
}

.academic-page .breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #64748b;
    font-family: 'Inter', sans-serif;
}

.academic-page .breadcrumb a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.academic-page .breadcrumb a:hover {
    text-decoration: underline;
}

/* Meta Information */
.article-meta, .resource-meta, .whitepaper-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #64748b;
    font-family: 'Inter', sans-serif;
    flex-wrap: wrap;
}

.article-meta span, .resource-meta span, .whitepaper-meta span {
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    font-weight: 500;
}

/* Academic Titles */
.academic-page h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f172a;
    font-family: 'Georgia', serif;
    letter-spacing: -0.025em;
}

.article-subtitle, .resource-subtitle, .whitepaper-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
    font-style: italic;
    max-width: 900px;
}

/* Academic Insights/Actions */
.article-insights, .resource-actions, .whitepaper-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.article-insights span {
    background: #dbeafe;
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #93c5fd;
}

.whitepaper-highlights {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    margin: 30px 0;
}

.whitepaper-highlights h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.whitepaper-highlights ul {
    margin: 0;
    padding-left: 20px;
}

.whitepaper-highlights li {
    margin-bottom: 8px;
    color: #475569;
}

/* Academic Content Sections */
.article-content, .resource-content, .whitepaper-content {
    background: #ffffff;
    padding: 60px 0;
}

.article-body, .resource-body, .whitepaper-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Academic Typography */
.academic-page h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 50px 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
    font-family: 'Georgia', serif;
    letter-spacing: -0.02em;
}

.academic-page h2:first-of-type {
    margin-top: 0;
}

.academic-page h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 35px 0 20px 0;
    font-family: 'Georgia', serif;
}

.academic-page h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #334155;
    margin: 25px 0 15px 0;
    font-family: 'Inter', sans-serif;
}

.academic-page p {
    margin-bottom: 20px;
    color: #374151;
    text-align: justify;
    hyphens: auto;
}

.academic-page ul, .academic-page ol {
    margin: 20px 0;
    padding-left: 30px;
    color: #374151;
}

.academic-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.academic-page strong {
    color: #1e293b;
    font-weight: 600;
}

/* Academic Sections */
.academic-page section {
    margin-bottom: 50px;
    padding: 30px 0;
}

.executive-summary {
    background: #f9fafb;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 40px;
}

.key-findings {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    margin-top: 25px;
}

/* Statistics and Data Displays */
.assessment-stats, .methodology-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Framework Components */
.framework-components, .dimensions-grid {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

.component, .dimension {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.component h3, .dimension h3 {
    color: #1e40af;
    border-bottom: 2px solid #dbeafe;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Checklist Items */
.checklist-items {
    margin: 20px 0;
}

.checklist-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.item-check {
    font-size: 18px;
    color: #2563eb;
    font-weight: bold;
    min-width: 20px;
}

.item-content h4 {
    margin: 0 0 8px 0;
    color: #1e293b;
    font-size: 1.1rem;
}

.item-content p {
    margin: 0 0 8px 0;
    color: #4b5563;
    font-size: 14px;
}

.points {
    background: #dbeafe;
    color: #1e40af;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Case Studies */
.case-studies {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.case-study {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #059669;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.case-study h4 {
    color: #059669;
    margin-bottom: 15px;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.metric {
    text-align: center;
    padding: 15px;
    background: #f0fdf4;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
}

.metric-label {
    font-size: 12px;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Academic Buttons */
.academic-page .btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
}

.academic-page .btn-primary {
    background: #2563eb;
    color: #ffffff;
    border: 2px solid #2563eb;
}

.academic-page .btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.academic-page .btn-secondary {
    background: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.academic-page .btn-secondary:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

/* Tables */
.academic-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.academic-page th {
    background: #f8fafc;
    color: #1e293b;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e5e7eb;
}

.academic-page td {
    padding: 15px;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
}

.academic-page tr:hover {
    background: #f9fafb;
}

/* Quotes and Callouts */
.academic-page blockquote {
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    padding: 25px 30px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #475569;
    border-radius: 0 8px 8px 0;
}

/* Responsive Academic Layout */
@media (max-width: 768px) {
    .academic-page h1 {
        font-size: 2.25rem;
    }
    
    .article-body, .resource-body, .whitepaper-body {
        padding: 0 20px;
    }
    
    .assessment-stats, .methodology-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .article-meta, .resource-meta, .whitepaper-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-insights, .resource-actions, .whitepaper-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .checklist-item {
        flex-direction: column;
        gap: 10px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #e2e8f0;
    padding: 3rem 0 2rem 0;
    border-top: 1px solid rgba(160, 174, 192, 0.2);
}

.footer-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #2d3748;
    padding-bottom: 2rem;
}

.footer-column h4 {
    color: #f7fafc;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #4299e1;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4299e1;
}

.footer-content {
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.footer-content a {
    color: #60a5fa;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .footer-column a {
        font-size: 0.8rem;
    }
}

/* Career Page Styles */
.career-page {
    padding: 4rem 0;
    background: #f8fafc;
}

.career-intro {
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.career-intro h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.career-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.open-positions h3 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
}

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

.position-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.position-card h4 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.position-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.application-section {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid #e2e8f0;
}

.application-section h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1rem;
    text-align: center;
}

.application-section > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.career-form {
    margin-top: 2rem;
}

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

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

.career-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

.career-form input,
.career-form select,
.career-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

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

.career-form input[type="file"] {
    border: 2px dashed #cbd5e0;
    background: #f7fafc;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
}

.career-form input[type="file"]:hover {
    border-color: #4299e1;
    background: #ebf8ff;
}

.career-form small {
    display: block;
    margin-top: 0.5rem;
    color: #718096;
    font-size: 0.85rem;
}

.career-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.success-message {
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    color: #22543d;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.error-message {
    background: #fed7d7;
    border: 1px solid #fc8181;
    color: #742a2a;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .career-intro h2 {
        font-size: 2rem;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .application-section {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .application-section h2 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .career-form .form-group {
        margin-bottom: 1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    .slide {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.125rem;
    }
    
    .feature-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .navbar .container {
        justify-content: space-between;
        align-items: center;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }
}

/* AI Services Prominent Styling */
.ai-services-prominent {
    background: linear-gradient(145deg, #4a5568 0%, #718096 50%, #a0aec0 100%);
    border-radius: 20px;
    padding: 50px;
    margin: 60px 0;
    border: none;
    box-shadow: 
        0 25px 50px rgba(74, 85, 104, 0.4),
        inset 0 1px 0 rgba(247, 250, 252, 0.2);
    position: relative;
    overflow: hidden;
    animation: aiGlow 3s ease-in-out infinite alternate;
}

.ai-services-prominent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes aiGlow {
    0% { box-shadow: 0 25px 50px rgba(74, 85, 104, 0.4), inset 0 1px 0 rgba(247, 250, 252, 0.2); }
    100% { box-shadow: 0 30px 60px rgba(113, 128, 150, 0.5), inset 0 1px 0 rgba(247, 250, 252, 0.3); }
}

.primary-ai-services h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.primary-ai-services h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #ff00ff);
    margin: 15px auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.supporting-services {
    margin-top: 60px;
    padding: 45px;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    border-radius: 20px;
    border: 1px solid #718096;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(247, 250, 252, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.supporting-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4);
    border-radius: 20px 20px 0 0;
}

.supporting-services:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(247, 250, 252, 0.2);
    border-color: #a0aec0;
}

.supporting-services h3 {
    color: #f7fafc;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.supporting-services h3::before {
    content: '⚡';
    font-size: 1.5rem;
    margin-right: 10px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.services-list.ai-primary li {
    color: white;
    font-weight: 500;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.services-list.ai-primary li:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2), 0 0 30px rgba(0, 212, 255, 0.3);
}

.services-list.ai-primary li:hover::before {
    left: 100%;
}

.services-list.supporting li {
    color: #cbd5e0;
    margin-bottom: 1.2rem;
    padding: 20px 25px;
    background: rgba(45, 55, 72, 0.7);
    border-radius: 12px;
    border-left: 4px solid transparent;
    background-image: linear-gradient(rgba(45, 55, 72, 0.7), rgba(45, 55, 72, 0.7)), 
                      linear-gradient(90deg, #a0aec0, #cbd5e0);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.services-list.supporting li::before {
    content: '▶';
    color: #a0aec0;
    margin-right: 12px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.services-list.supporting li:hover {
    transform: translateX(8px);
    background-image: linear-gradient(rgba(74, 85, 104, 0.9), rgba(74, 85, 104, 0.9)), 
                      linear-gradient(90deg, #cbd5e0, #f7fafc);
    box-shadow: 0 8px 25px rgba(203, 213, 224, 0.3);
    color: #f7fafc;
}

.services-list.supporting li:hover::before {
    color: #f7fafc;
    transform: scale(1.2);
}

/* Product Image Styling */
.product-image {
    margin: -2rem -2rem 1.5rem -2rem;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    height: 200px;
}

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

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

/* Visual Enhancement Section */
.visual-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    text-align: center;
    color: #f7fafc;
    position: relative;
    overflow: hidden;
}

.visual-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/ai-isometric-workplace.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: 1;
}

.visual-showcase .container {
    position: relative;
    z-index: 2;
}

.visual-showcase h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #f7fafc;
}

.visual-showcase p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    color: #cbd5e0;
}

/* Case Studies & Portfolio Styles */
.case-studies-header {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.case-studies-hero {
    padding: 3rem 0;
    background: #f7fafc;
}

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

.featured-case-studies {
    padding: 5rem 0;
    background: white;
}

.featured-case-studies h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 4rem;
}

.case-study {
    margin-bottom: 5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.case-study-text {
    padding: 3rem;
}

.case-study-visual {
    position: relative;
}

.case-study-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.visual-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.industry-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.industry-badge.healthcare {
    background: #e6fffa;
    color: #00695c;
}

.industry-badge.fintech {
    background: #e3f2fd;
    color: #1565c0;
}

.industry-badge.retail {
    background: #f3e5f5;
    color: #7b1fa2;
}

.case-study h3 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.case-summary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.challenge h4, .solution h4, .impact h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.challenge p, .solution p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

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

.metric {
    text-align: center;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
}

.metric-label {
    font-size: 0.8rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.industries-overview {
    padding: 5rem 0;
    background: #f7fafc;
}

.industries-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 4rem;
}

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

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

.industry-card:hover { transform: translateY(-5px); }
.industry-icon { font-size: 3rem; margin-bottom: 1rem; }
.industry-card h3 { font-size: 1.3rem; color: #1a202c; margin-bottom: 1rem; }
.industry-card p { color: #4a5568; line-height: 1.6; margin-bottom: 1.5rem; }

.industry-metrics {
    display: flex;
    justify-content: space-around;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.industry-metrics span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2b6cb0;
}

.technology-stack {
    padding: 5rem 0;
    background: white;
}

.technology-stack h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 4rem;
}

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

.tech-category h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-tag {
    background: #edf2f7;
    color: #2d3748;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: #2b6cb0;
    color: white;
}

.case-studies-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5aa0 100%);
    color: white;
    text-align: center;
}

.case-studies-cta h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.case-studies-cta p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; }

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

@media (max-width: 768px) {
    .case-study-content { grid-template-columns: 1fr; }
    .case-study-visual { order: -1; }
    .metrics-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .tech-categories { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
}


/* About Us Page Styles */
.about-header {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.company-story {
    padding: 5rem 0;
    background: white;
}

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

.story-text h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 2rem;
}

.story-intro {
    font-size: 1.3rem;
    color: #2b6cb0;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.story-details p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: 5rem 0;
    background: #f7fafc;
}

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

.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

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

.mission-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

.leadership-team {
    padding: 5rem 0;
    background: white;
}

.leadership-team h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    gap: 4rem;
}

.team-member {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 16px;
    align-items: start;
}

.member-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.member-info h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #2b6cb0;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.member-credentials {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.credential-icon {
    font-size: 1rem;
}

.member-bio {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

.achievements {
    padding: 5rem 0;
    background: #f7fafc;
}

.achievements h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 4rem;
}

.achievements-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.achievement-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

.achievement-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2b6cb0;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.achievement-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.achievement-content h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.achievement-content p {
    color: #4a5568;
    line-height: 1.6;
}

.technology-partnerships {
    padding: 5rem 0;
    background: white;
}

.technology-partnerships h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.partnerships-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 4rem;
}

.partnerships-grid {
    display: grid;
    gap: 4rem;
}

.partnership-category h3 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 2rem;
    text-align: center;
}

.partner-logos {
    display: grid;
    gap: 2rem;
}

.partner-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 12px;
    align-items: center;
}

.partner-logo {
    font-size: 3rem;
    text-align: center;
}

.partner-info h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.partner-info p {
    color: #2b6cb0;
    font-weight: 600;
    margin-bottom: 1rem;
}

.partner-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    background: #e6fffa;
    color: #00695c;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.company-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    position: relative;
}

.company-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: white;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.about-cta {
    padding: 5rem 0;
    background: #f7fafc;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .story-content { grid-template-columns: 1fr; }
    .team-member { grid-template-columns: 1fr; text-align: center; }
    .achievement-item { grid-template-columns: 1fr; text-align: center; }
    .partner-item { grid-template-columns: 1fr; text-align: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}


/* Industries Page Styles */
.industries-header {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.industries-hero {
    padding: 4rem 0;
    background: #f7fafc;
    text-align: center;
}

.industries-hero h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.industries-hero p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

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

.metric-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

.primary-industries {
    padding: 5rem 0;
    background: white;
}

.primary-industries h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 4rem;
}

.industries-showcase {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

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

.industry-showcase.reverse {
    grid-template-columns: 1fr 1fr;
}

.industry-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.industry-content {
    padding: 2rem;
}

.industry-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.industry-badge.healthcare {
    background: #e6fffa;
    color: #00695c;
}

.industry-badge.fintech {
    background: #e3f2fd;
    color: #1565c0;
}

.industry-badge.retail {
    background: #f3e5f5;
    color: #7b1fa2;
}

.industry-badge.manufacturing {
    background: #fff3e0;
    color: #ef6c00;
}

.industry-showcase h3 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.industry-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.solution-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

.highlight-icon {
    font-size: 1.2rem;
}

.industry-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.8rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.additional-industries {
    padding: 5rem 0;
    background: #f7fafc;
}

.additional-industries h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 4rem;
}

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

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

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

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

.industry-card h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.industry-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.industry-metrics {
    display: flex;
    justify-content: space-around;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.industry-metrics span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2b6cb0;
}

.compliance-expertise {
    padding: 5rem 0;
    background: white;
}

.compliance-expertise h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 4rem;
}

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

.compliance-item {
    padding: 2rem;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #2b6cb0;
}

.compliance-item h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.compliance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.compliance-tag {
    background: #2b6cb0;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.compliance-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.industries-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5aa0 100%);
    color: white;
    text-align: center;
}

.industries-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.industries-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Industries */
@media (max-width: 768px) {
    .industry-showcase,
    .industry-showcase.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .industry-visual {
        order: -1;
    }
    
    .solution-highlights {
        grid-template-columns: 1fr;
    }
    
    .industry-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industry-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }
}


/* Resources & Thought Leadership Styles */
.resources-header {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.resources-hero {
    padding: 4rem 0;
    background: #f7fafc;
    text-align: center;
}

.resources-hero h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.resources-hero p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

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

.featured-insights {
    padding: 5rem 0;
    background: white;
}

.featured-insights h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 4rem;
}

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

.insight-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    align-items: start;
}

.insight-card.featured {
    border: 2px solid #2b6cb0;
}

.insight-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.insight-content {
    padding: 2rem;
}

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

.insight-category {
    background: #2b6cb0;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.insight-date {
    color: #718096;
    font-size: 0.9rem;
}

.insight-card h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.insight-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.insight-metrics {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.insight-metrics span {
    background: #f7fafc;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.insight-link {
    color: #2b6cb0;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.insight-link:hover {
    color: #2c5aa0;
}

.downloadable-resources {
    padding: 5rem 0;
    background: #f7fafc;
}

.downloadable-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.resources-grid {
    display: grid;
    gap: 2rem;
}

.resource-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    align-items: start;
}

.resource-icon {
    font-size: 3rem;
    text-align: center;
}

.resource-content h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.resource-details span {
    background: #f7fafc;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.resource-download {
    background: #2b6cb0;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.resource-download:hover {
    background: #2c5aa0;
}

.whitepapers {
    padding: 5rem 0;
    background: white;
}

.whitepapers h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.whitepapers-grid {
    display: grid;
    gap: 4rem;
}

.whitepaper-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: start;
}

.whitepaper-cover img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.whitepaper-content h3 {
    color: #1a202c;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.whitepaper-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.whitepaper-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
}

.detail-label {
    font-weight: 600;
    color: #4a5568;
}

.detail-value {
    color: #1a202c;
}

.whitepaper-highlights h4 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.whitepaper-highlights ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.whitepaper-highlights li {
    color: #4a5568;
    padding: 0.5rem 0;
    border-left: 3px solid #2b6cb0;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.webinars {
    padding: 5rem 0;
    background: #f7fafc;
}

.webinars h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.webinars-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.webinar-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    align-items: start;
}

.webinar-thumbnail {
    position: relative;
}

.webinar-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.webinar-duration {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.webinar-content {
    padding: 2rem;
}

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

.webinar-type {
    background: #2b6cb0;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.webinar-date {
    color: #718096;
    font-size: 0.9rem;
}

.webinar-item h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

.webinar-item p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.webinar-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.webinar-stats span {
    background: #f7fafc;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.upcoming-webinars {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.upcoming-webinars h3 {
    color: #1a202c;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.upcoming-list {
    display: grid;
    gap: 2rem;
}

.upcoming-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
}

.upcoming-date {
    text-align: center;
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
}

.date-month {
    display: block;
    font-size: 0.8rem;
    color: #4a5568;
    font-weight: 500;
}

.upcoming-content h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.upcoming-content p {
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.upcoming-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.upcoming-meta span {
    color: #718096;
    font-size: 0.8rem;
}

.newsletter-signup {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5aa0 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-email {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-benefits {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-benefits span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.newsletter-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-stats span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.newsletter-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

.newsletter-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* Methodology Page Styles */
.methodology-header {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.methodology-hero {
    padding: 4rem 0;
    background: #f7fafc;
    text-align: center;
}

.methodology-hero h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.methodology-hero p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.framework-highlights {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 1.5rem;
}

.methodology-overview {
    padding: 5rem 0;
    background: white;
}

.methodology-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 4rem;
}

.phases-timeline {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
}

.phase-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 3rem;
    align-items: start;
}

.phase-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5aa0 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
}

.phase-content {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid #2b6cb0;
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.phase-header h3 {
    color: #1a202c;
    font-size: 1.8rem;
    margin: 0;
}

.phase-duration {
    background: #2b6cb0;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.phase-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.phase-deliverables h4 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.phase-deliverables ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.phase-deliverables li {
    color: #4a5568;
    padding: 0.5rem 0;
    border-left: 3px solid #2b6cb0;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.phase-activities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.activity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

.activity-icon {
    font-size: 1.2rem;
}

.communication-protocols {
    padding: 5rem 0;
    background: #f7fafc;
}

.communication-protocols h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 4rem;
}

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

.protocol-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.protocol-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.protocol-item h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.protocol-details {
    display: grid;
    gap: 1rem;
    text-align: left;
}

.protocol-frequency,
.protocol-feature {
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    color: #4a5568;
    line-height: 1.5;
}

.protocol-frequency strong,
.protocol-feature strong {
    color: #2b6cb0;
}

.quality-assurance {
    padding: 5rem 0;
    background: white;
}

.quality-assurance h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 4rem;
}

.qa-framework {
    display: grid;
    gap: 3rem;
}

.qa-section h3 {
    color: #1a202c;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.qa-item {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2b6cb0;
}

.qa-item h4 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.qa-item p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.qa-metrics span {
    background: #2b6cb0;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.risk-management {
    padding: 5rem 0;
    background: #f7fafc;
}

.risk-management h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 4rem;
}

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

.risk-category {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.risk-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    display: block;
}

.risk-category h3 {
    color: #1a202c;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.risk-items {
    display: grid;
    gap: 1rem;
}

.risk-item {
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.risk-item strong {
    color: #2b6cb0;
    font-weight: 600;
}

.risk-item span {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.success-metrics {
    padding: 5rem 0;
    background: white;
}

.success-metrics h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 4rem;
}

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

.metrics-category h3 {
    color: #1a202c;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.metrics-list {
    display: grid;
    gap: 1rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #2b6cb0;
}

.metric-name {
    color: #4a5568;
    font-weight: 500;
}

.metric-target {
    color: #2b6cb0;
    font-weight: 600;
    font-size: 0.9rem;
}

.methodology-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5aa0 100%);
    color: white;
    text-align: center;
}

.methodology-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.methodology-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Resources & Methodology */
@media (max-width: 768px) {
    .insight-card,
    .resource-item,
    .whitepaper-item,
    .webinar-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .phase-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .phase-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .protocols-grid,
    .risk-categories,
    .metrics-framework {
        grid-template-columns: 1fr;
    }
    
    .qa-items {
        grid-template-columns: 1fr;
    }
    
    .upcoming-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
}


/* Enhanced Responsive Navigation */
@media (max-width: 1200px) {
    .navbar .container {
        max-width: 100%;
        padding: 0.75rem 15px;
    }
    
    .nav-menu {
        gap: 0.3rem;
    }
    
    .nav-menu a {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 0.2rem;
    }
    
    .nav-menu a {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0.75rem 15px;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    .brand-logo {
        height: 70px;
        width: 70px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
        padding: 8px;
        border-radius: 6px;
        transition: background 0.3s ease;
    }
    
    .hamburger:hover {
        background: rgba(255,255,255,0.1);
    }
    
    main {
        margin-top: 85px;
    }
}


/* Training Page Text Color Fix */
.training-hero .hero-text h2,
.training-hero h2 {
    color: #1a202c !important;
}

.training-hero .hero-description,
.training-hero p {
    color: #4a5568 !important;
}

.training-hero .stat-number {
    color: #3182ce !important;
}

.training-hero .stat-label {
    color: #4a5568 !important;
}

/* Homepage Loader */
.homepage-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.homepage-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
}

.loader-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.2));
}

.loader-arc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid transparent;
}

.loader-arc-1 {
    width: 100px;
    height: 100px;
    border-top: 2px solid #3b82f6;
    border-right: 2px solid #60a5fa;
    animation: rotate-clockwise 2s linear infinite;
}

.loader-arc-2 {
    width: 120px;
    height: 120px;
    border-top: 2px solid #1d4ed8;
    border-left: 2px solid #2563eb;
    animation: rotate-clockwise 1.5s linear infinite;
}

@keyframes rotate-clockwise {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.loader-text {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Healthcare Showcase Styles */
.client-showcase {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.client-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8, #2563eb);
}

.healthcare-showcase {
    border-left: 4px solid #059669;
}

.showcase-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 auto 2rem auto;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.badge-icon {
    font-size: 14px;
}

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

.showcase-header h3 {
    color: #1a202c;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-subtitle {
    color: #4a5568;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.showcase-description {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* GVMedic Product Showcase */
.gvmedic-showcase {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 5rem 0;
    margin: 3rem 0;
}

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

.product-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.gvmedic-info h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.product-intro {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.implementation-showcase h3 {
    color: #1a202c;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.implementation-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.implementation-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.impl-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.implementation-item h4 {
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.implementation-item p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.gvmedic-visual {
    position: relative;
}

.gvmedic-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .gvmedic-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gvmedic-visual {
        order: -1;
    }
    
    .implementation-grid {
        grid-template-columns: 1fr;
    }
    
    .gvmedic-info h2 {
        font-size: 2rem;
    }
}

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

.metric-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.highlight-metric {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    transform: scale(1.05);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #059669;
    display: block;
    margin-bottom: 0.5rem;
}

.highlight-metric .metric-value {
    color: white;
}

.metric-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-metric .metric-label {
    color: #e5f3f0;
}

.showcase-features {
    margin-bottom: 3rem;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 12px;
}

.feature-content h4 {
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.showcase-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn-showcase {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}

.btn-showcase:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
    background: linear-gradient(135deg, #047857, #065f46);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-showcase:hover .btn-icon {
    transform: translateX(4px);
}

.showcase-credentials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.credential-badge {
    background: #f0f9ff;
    color: #0369a1;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #bae6fd;
}

@media (max-width: 768px) {
    .client-showcase {
        padding: 2rem 0;
        margin: 2rem 0;
    }
    
    .showcase-header h3 {
        font-size: 2rem;
    }
    
    .showcase-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .showcase-credentials {
        flex-direction: column;
        align-items: center;
    }
}
