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

:root {
    --primary-color: #7c3aed;
    --secondary-color: #0D1B2A;
    --salesforce-blue: #7c3aed;
    --salesforce-dark: #6366f1;
    --salesforce-light: #f3e8ff;
    --bg-light: #f6f7fb;
    --text-dark: #0B132A;
    --text-gray: #4F5665;
    --white: #ffffff;
    --purple-gradient: linear-gradient(135deg, #7c3aed, #6366f1);
    --salesforce-gradient: linear-gradient(135deg, #7c3aed, #6366f1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: var(--white);
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.top-bar-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.social-links a {
    color: var(--white);
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.logo-letter {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.logo h4 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
}

.nav-desktop {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-desktop a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary-color);
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 1.5rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 2rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.mobile-nav a.active {
    color: var(--primary-color);
}

.mobile-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
    padding: 6rem 1.5rem 8rem;
}

.hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero-bg-blob.blob-1 {
    top: -8rem;
    left: -8rem;
    width: 300px;
    height: 300px;
    background: #c084fc;
}

.hero-bg-blob.blob-2 {
    bottom: -10rem;
    right: -10rem;
    width: 400px;
    height: 400px;
    background: #818cf8;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #eef2ff;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.badge-new {
    background: var(--text-dark);
    color: var(--white);
    padding: 0.125rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.salesforce-highlight {
    background: var(--salesforce-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.animated-text {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 42rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.clients-count {
    color: var(--text-gray);
    font-weight: 500;
}

.hero-illustration {
    display: none;
}

/* Salesforce Banner */
.salesforce-banner {
    background: var(--salesforce-gradient);
    padding: 3rem 1.5rem;
    color: var(--white);
    position: relative;
}

.salesforce-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 27, 42, 0.2);
    z-index: 0;
}

.salesforce-banner > * {
    position: relative;
    z-index: 1;
}

.salesforce-banner-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.salesforce-logo-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 1rem;
}

.salesforce-logo-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.certification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.certification-badges .badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    color: var(--white);
}

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

.sf-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sf-stat p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--bg-light);
    padding: 6rem 1.5rem;
}

.section-grid {
    display: grid;
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto 6rem;
}

.image-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-container {
    display: flex;
    flex-direction: column;
}

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

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card.salesforce-card {
    border-left: 4px solid var(--salesforce-blue);
    background: linear-gradient(135deg, #ffffff, #f3e8ff);
}

.feature-card.salesforce-card:hover {
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    transform: translateY(-3px);
}

.feature-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 1rem 0 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* How It Works Section */
.how-it-works-section {
    background: var(--white);
    padding: 5rem 1.5rem;
}

.how-it-works-grid {
    display: grid;
    gap: 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.how-intro {
    background: #eef2ff;
    padding: 2rem;
    border-radius: 0.75rem;
}

.how-intro h2 {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.how-intro h2 span {
    font-weight: 600;
    color: #4f46e5;
}

.how-intro p {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    gap: 1.5rem;
}

.step-card {
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.step-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step-card {
    display: flex;
    gap: 1rem;
}

.step-content {
    flex: 1;
}

.step-number {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.step-title {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.step-desc {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Services Section */
.services-section {
    background: var(--secondary-color);
    padding: 5rem 1.5rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: none;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 3px;
    background: linear-gradient(90deg, transparent, #7c3aed, transparent);
    border-radius: 2px;
}

.services-section .section-header h2 {
    color: var(--white);
}

.services-section .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.section-header p {
    color: var(--text-gray);
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid transparent;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

.service-card i {
    display: block;
    margin: 0 auto 1rem;
    width: 3rem;
    height: 3rem;
    background: #f3e8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
    text-align: center;
}

.services-grid-featured {
    display: grid;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.service-card.featured {
    background: linear-gradient(135deg, #f3e8ff, #ffffff);
    border: 2px solid var(--salesforce-blue);
    position: relative;
}

.service-card.featured:hover {
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 1rem;
    background: var(--salesforce-gradient);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

/* Technologies Section */
.technologies-section {
    background: linear-gradient(180deg, var(--white) 0%, #eef2ff 50%, var(--white) 100%);
    padding: 5rem 1.5rem;
}

.tech-tabs-container {
    max-width: 1280px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.tech-sidebar {
    background: linear-gradient(180deg, #0B1736, #14223F);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tech-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.tech-tab:hover {
    background: rgba(255,255,255,0.1);
}

.tech-tab.active {
    background: var(--white);
    color: #0B1736;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tab-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: transparent;
}

.tech-tab.active .tab-dot {
    background: var(--primary-color);
}

.tech-content {
    flex: 1;
    padding: 1.5rem;
    background: #eef2ff;
}

.tech-panel {
    display: none;
}

.tech-panel.active {
    display: block;
}

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

.tech-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem;
    height: 6rem;
    text-align: center;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.2s;
}

.tech-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--primary-color);
}

.tech-item.salesforce-tech {
    background: linear-gradient(135deg, #f3e8ff, #ffffff);
    border: 2px solid var(--salesforce-blue);
    color: var(--salesforce-dark);
    font-weight: 600;
}

.tech-item.salesforce-tech:hover {
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
    transform: translateY(-3px);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
    padding: 5rem 1.5rem;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto 2.5rem;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #f9fafb;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.testimonial-card.active {
    border-color: var(--primary-color);
    background: var(--white);
    transform: scale(1.02);
}

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

.testimonial-info h4 {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.testimonial-rating i {
    color: #fbbf24;
}

.testimonial-message {
    font-size: 0.875rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.testimonials-controls {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonials-dots {
    display: flex;
    gap: 0.75rem;
}

.testimonials-dots button {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.3s;
}

.testimonials-dots button.active {
    background: var(--primary-color);
}

.testimonials-arrows {
    display: flex;
    gap: 1rem;
}

.arrow-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.arrow-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.arrow-btn.primary {
    background: var(--primary-color);
    color: var(--white);
}

.arrow-btn.primary:hover {
    opacity: 0.9;
}

/* Call to Action Section */
.cta-section {
    padding: 5rem 1.5rem;
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 4rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
    position: relative;
    overflow: hidden;
    border: 2px solid #e5e7eb;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

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

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-shadow: none;
    letter-spacing: -0.5px;
}

.cta-content p {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 36rem;
}

.btn-cta {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: #f9fafb;
    padding: 2.5rem 1.5rem 0;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

.footer-column h4,
.footer-column h3 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 3rem;
    height: 3rem;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

.footer-social a:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

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

.footer-column ul li {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 3.5rem 1.5rem;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--secondary-color);
    z-index: 1;
}

.page-hero-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 0;
}

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

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.page-hero-label {
    font-size: 0.875rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.page-hero-desc {
    font-size: 1rem;
    color: #d1d5db;
    max-width: 42rem;
    margin: 0 auto;
}

/* Our Story Section */
.our-story-section {
    padding: 5rem 1.5rem;
}

.section-grid-two {
    display: grid;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

.story-highlights {
    list-style: none;
    margin-top: 1.5rem;
}

.story-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.story-highlights i {
    color: var(--primary-color);
}

/* Mission Vision Section */
.mission-vision-section {
    background: var(--bg-light);
    padding: 5rem 1.5rem;
}

.mv-grid {
    display: grid;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.mv-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.mv-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.mv-card.salesforce-themed {
    background: linear-gradient(135deg, #f3e8ff, #ffffff);
    border-left: 4px solid var(--salesforce-blue);
}

.mv-card.salesforce-themed:hover {
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.2);
}

/* Different Section */
.different-section {
    padding: 5rem 1.5rem;
}

.different-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.different-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

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

.different-card i {
    margin-bottom: 1rem;
}

.different-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.different-card p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.different-card.salesforce-card {
    background: linear-gradient(135deg, #f3e8ff, #ffffff);
    border: 2px solid var(--salesforce-blue);
}

.different-card.salesforce-card:hover {
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.25);
    border-color: var(--salesforce-dark);
}

/* Team Section */
.team-section {
    background: var(--bg-light);
    padding: 5rem 1.5rem;
}

.team-grid {
    display: grid;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.team-social a {
    width: 2rem;
    height: 2rem;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Services Page */
.services-page {
    background: var(--secondary-color);
    padding: 5rem 1.5rem;
}

.services-grid-large {
    display: grid;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.service-card-large {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-card-large i {
    margin-bottom: 1rem;
}

.service-card-large h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-card-large p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.service-features i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.salesforce-services-header,
.additional-services-header {
    max-width: 1280px;
    margin: 3rem auto 2rem;
    padding: 1.5rem;
    background: var(--salesforce-gradient);
    border-radius: 0.75rem;
    text-align: center;
}

.salesforce-services-header h3,
.additional-services-header h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.additional-services-header {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
}

.service-card-large.sf-primary {
    background: linear-gradient(135deg, #f3e8ff, #ffffff);
    border: 2px solid var(--salesforce-blue);
}

.service-card-large.sf-primary:hover {
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.service-card-large.sf-primary i {
    color: var(--salesforce-blue);
}

.services-grid-large.salesforce-primary {
    margin-bottom: 3rem;
}

/* Contact Page */
.contact-hero {
    min-height: 250px;
}

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

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

.contact-grid {
    display: grid;
    gap: 0;
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-info-panel {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: var(--white);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-info-panel h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 0.75rem;
}

.contact-detail-item i {
    font-size: 1.125rem;
    margin-top: 0.25rem;
}

.contact-detail-item a {
    color: var(--white);
    text-decoration: underline;
    display: block;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.contact-social a {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--white);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.contact-social a:hover {
    transform: scale(1.1);
}

.contact-decorative-circles {
    position: absolute;
    bottom: 0;
    right: 0;
}

.circle {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.circle-1 {
    width: 160px;
    height: 160px;
    bottom: -30px;
    right: -40px;
}

.circle-2 {
    width: 96px;
    height: 96px;
    bottom: 3rem;
    right: 3rem;
}

.contact-form-panel {
    padding: 2rem;
    background: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group small {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.btn-submit {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    transition: all 0.3s;
    margin-top: 0.5rem;
    position: relative;
}

.btn-submit:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

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

/* Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    animation: slideDown 0.3s ease;
}

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

.alert i {
    font-size: 1.25rem;
}

.alert-success {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.alert-success i {
    color: #10b981;
}

.alert-error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.alert-error i {
    color: #ef4444;
}

.map-section {
    padding: 0 1.5rem 3rem;
}

.map-container {
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Projects & Careers */
.projects-section,
.careers-section {
    padding: 3rem 1.5rem;
}

.projects-grid {
    display: grid;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.project-card {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.project-content p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.careers-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.career-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.career-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.career-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.career-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-featured {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .different-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .top-bar {
        display: flex;
    }
    
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-actions {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-illustration {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 500px;
        height: 500px;
        pointer-events: none;
    }
    
    .hero-illustration img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .section-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .how-it-works-grid {
        grid-template-columns: 1fr 2fr;
    }
    
    .tech-tabs-container {
        flex-direction: row;
    }
    
    .tech-sidebar {
        width: 16rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-slider {
        justify-content: center;
    }
    
    .testimonial-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
    
    .cta-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .section-grid-two {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
    
    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .different-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid-featured {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .salesforce-banner-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .salesforce-logo-section h2 {
        text-align: left;
    }
    
    .certification-badges {
        justify-content: flex-start;
    }
}

/* Project Stats Section */
.project-stats-section {
    background: var(--bg-light);
    padding: 3rem 1.5rem;
}

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

.stat-box {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2);
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Project Categories */
.project-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.category-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.category-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Detailed Project Cards */
.project-card-detailed {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e5e7eb;
}

.project-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

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

.project-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.project-icon i {
    font-size: 1.75rem;
    color: white;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.project-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.project-industry {
    background: #e5e7eb;
    color: var(--text-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.project-card-detailed h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.project-desc {
    color: var(--text-gray);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.detail-item strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.detail-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-item li {
    color: var(--text-gray);
    font-size: 0.875rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.detail-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: #f3e8ff;
    color: var(--primary-color);
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #e9d5ff;
}

/* Responsive Projects Grid */
@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .project-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .project-meta {
        align-items: flex-start;
        flex-direction: row;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* About Page Enhancements */
.company-stats-section {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    padding: 3rem 1.5rem;
    color: white;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

/* Image Badge */
.image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.image-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.image-badge span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

/* Section Label */
.section-label {
    display: inline-block;
    background: #f3e8ff;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Story Highlights Grid */
.story-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.highlight-item span {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Why Choose Section */
.why-choose-section {
    background: white;
    padding: 5rem 1.5rem;
}

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

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

.choose-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
    transform: translateY(-5px);
}

.choose-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

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

.choose-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.choose-list {
    list-style: none;
    padding: 0;
}

.choose-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.choose-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Mission Vision Enhanced */
.mv-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.mv-card-enhanced {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.mv-card-header {
    margin-bottom: 1.5rem;
}

.mv-icon-large {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.mv-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.mv-card-enhanced h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mv-card-enhanced p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mv-pillars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.pillar-item i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.pillar-item span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9375rem;
}

/* Core Values Section */
.values-section {
    background: var(--bg-light);
    padding: 5rem 1.5rem;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.value-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: #f3e8ff;
    line-height: 1;
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
    background: white;
    padding: 5rem 1.5rem;
}

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

.cert-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s;
}

.cert-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.cert-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.cert-icon i {
    font-size: 2.5rem;
    color: white;
}

.cert-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.cert-card p {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cert-badge {
    display: inline-block;
    background: #f3e8ff;
    color: var(--primary-color);
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .mv-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }
}
