/* ================================
   PERSADO TECHNOLOGIES - ENTERPRISE
   Global Variables & Reset
   ================================ */

:root {
    /* Primary Colors - Matching Your Logo */
    --primary-blue: #003366;
    --primary-light: #0055aa;
    --dark-blue: #001f3f;
    --accent-red: #ff0000;
    
    /* Supporting Colors */
    --gray-dark: #333333;
    --gray-medium: #999999;
    --gray-light: #f5f5f5;
    --white: #ffffff;
    --success-green: #28a745;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #003366 0%, #0055aa 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 51, 102, 0.95) 0%, rgba(0, 85, 170, 0.95) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    
    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Roboto, Arial, sans-serif;
    line-height: 1.5;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* ================================
   NAVIGATION
   ================================ */

.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-nav.scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 0;
    gap: 2rem;
}

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

.logo-link {
    display: block;
    text-decoration: none;
    transition: opacity var(--transition-smooth);
}

.logo-link:hover {
    opacity: 0.85;
}

.logo-main {
    height: 65px;
    width: auto;
    display: block;
    transition: opacity var(--transition-smooth);
}

.logo-image-new {
    height: 70px;
    width: auto;
    display: block;
    transition: opacity var(--transition-smooth);
}

.logo-image-svg {
    height: 80px;
    width: auto;
    display: block;
    transition: opacity var(--transition-smooth);
}

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

.logo-icon-new {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
}

.logo-text-new {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    line-height: 1;
}

.logo-company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1.5px;
    line-height: 1;
}

.logo-company-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-medium);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* Image logo fallback */
.logo-image {
    height: 70px;
    width: auto;
    display: block;
}

/* Old logo styles - kept for backwards compatibility */
.logo-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 1px;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gray-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.15rem;
}

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

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-weight: 500;
    color: var(--gray-dark);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    letter-spacing: 0.3px;
    white-space: nowrap;
    display: inline-block;
}

.nav-menu a:hover {
    color: var(--primary-blue);
    transform: translateY(-1px);
}

.btn-nav {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.65rem 1.75rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%230066cc" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.4;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 163, 224, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
}

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

/* ===================================
   HERO BANNER SLIDER - Professional Auto-Sliding
   =================================== */

.hero-banner-slider {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.15);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #000;
}

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

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

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

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 3rem 2.5rem 2rem;
    z-index: 3;
}

.slide-content {
    text-align: left;
    color: white;
}

.slide-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.slide-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: white;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    transform: scale(1.15);
}

.showcase-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: white;
    border-top: 2px solid rgba(0, 102, 204, 0.1);
}

.label-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.label-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-dark);
    line-height: 1.3;
}

.showcase-card:hover .label-text {
    color: var(--primary-blue);
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    color: var(--gray-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Executive Value Props */
.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.value-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.value-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.value-text strong {
    color: var(--gray-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.value-text span {
    color: var(--gray-medium);
    font-size: 0.85rem;
}

/* Executive Metrics - Dashboard Style */
.hero-metrics-executive {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(0, 163, 224, 0.03) 100%);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 102, 204, 0.08);
}

.metric-executive {
    text-align: center;
    padding: 1rem;
}

.metric-executive .metric-value {
    font-size: 3.5rem;
    font-weight: 300;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-executive .metric-label {
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-weight: 500;
    line-height: 1.4;
}

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

.metric {
    text-align: center;
}

.metric-value {
    font-size: 3rem;
    font-weight: 300;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.95rem;
    color: var(--gray-medium);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Social Proof */
.social-proof {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 102, 204, 0.1);
}

.social-proof-text {
    color: var(--gray-medium);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
}

/* ================================
   EXECUTIVE VALUE PROPOSITION
   ================================ */

.executive-value {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

.executive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    align-items: stretch;
}

.executive-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 102, 204, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.executive-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 102, 204, 0.2);
}

.executive-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 300;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
}

.executive-card h3 {
    font-size: 1.5rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.executive-card > p {
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.executive-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.executive-benefits li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.executive-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Executive CTA Section */
.executive-cta-section {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.executive-cta-box {
    background: var(--gradient-primary);
    padding: 3.5rem 4rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    max-width: 700px;
    box-shadow: var(--shadow-lg);
}

.executive-cta-box h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.executive-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.executive-cta-box .btn {
    background: var(--white);
    color: var(--primary-blue);
}

.executive-cta-box .btn:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
}

/* ================================
   BUTTONS
   ================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

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

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* ================================
   SECTIONS
   ================================ */

section {
    padding: 30px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    padding: 0 1rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-medium);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* ================================
   STRATEGIC OVERVIEW
   ================================ */

.strategic-overview {
    background: var(--gray-light);
}

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

.overview-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 102, 204, 0.1);
}

.overview-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.overview-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

.overview-card h3 {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.overview-card p {
    color: var(--gray-medium);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

/* ================================
   CAPABILITIES
   ================================ */

/* ================================
   CAPABILITIES SECTION - Full Page Background
   ================================ */

.capabilities {
    position: relative;
    background-image: url('../images/bg-geometric-clean.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.capabilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 0;
    pointer-events: none;
}

.capabilities::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(0, 163, 224, 0.03) 100%);
    z-index: 0;
    pointer-events: none;
}

.capabilities .container {
    position: relative;
    z-index: 1;
}

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

.capability-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-md);
    padding: 2rem 1.75rem;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.capability-card:hover {
    border-color: rgba(0, 102, 204, 0.2);
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

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

.capability-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.capability-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

.capability-card h3 {
    font-size: 1.3rem;
    color: var(--gray-dark);
    font-weight: 500;
    margin-top: 0.3rem;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.capability-card > p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.capability-list {
    list-style: none;
    margin-bottom: 1rem;
}

.capability-list li {
    padding: 0.2rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-dark);
    font-size: 0.9rem;
    line-height: 1.4;
}

.capability-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.capability-metric {
    background: var(--gray-light);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: var(--gray-dark);
}

.metric-highlight {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 300;
}

/* ================================
   INDUSTRIES
   ================================ */

/* ================================
   INDUSTRIES SECTION - Full Page Background
   ================================ */

.industries {
    position: relative;
    background-image: url('../images/bg-subtle-white.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 249, 250, 0.96);
    z-index: 0;
    pointer-events: none;
}

.industries .container {
    position: relative;
    z-index: 1;
}

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

.industry-card {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 102, 204, 0.1);
}

.industry-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.industry-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

.industry-card h3 {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.industry-card p {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 1rem;
}

.industry-card ul {
    list-style: none;
}

.industry-card li {
    padding: 0.2rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-medium);
    font-size: 0.9rem;
    line-height: 1.4;
}

.industry-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 600;
}

/* ================================
   GLOBAL DELIVERY MODEL
   ================================ */

.delivery-model {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.delivery-model::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z" /%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    z-index: 0;
}

.delivery-model .section-header h2,
.delivery-model .section-header p {
    color: var(--white);
}

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

.globe-container {
    display: grid;
    gap: 2rem;
}

.region-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-smooth);
}

.region-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.region-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.region-role {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.region-details {
    list-style: none;
}

.region-details li {
    padding: 0.2rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.4;
}

.region-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--white);
    font-size: 1.2rem;
}

.delivery-benefits h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

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

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ================================
   PARTNERSHIPS
   ================================ */

.partnerships {
    background: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.partnerships::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 102, 204, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 163, 224, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.partnerships .container {
    position: relative;
    z-index: 1;
}

.partnership-highlight {
    margin-bottom: 4rem;
}

.sap-gold-badge {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.badge-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.badge-content h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.badge-content p {
    color: var(--gray-medium);
    line-height: 1.6;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.partner-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 102, 204, 0.1);
}

.partner-logo {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.partner-logo img {
    max-height: 100%;
    max-width: 180px;
    object-fit: contain;
}

.partner-card p {
    color: var(--gray-medium);
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    flex-grow: 1;
}

/* ================================
   SUCCESS STORIES
   ================================ */

.success-stories {
    position: relative;
    background: linear-gradient(to bottom, #ffffff 0%, #f5f7fa 100%);
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(0, 102, 204, 0.02) 0%, transparent 100%);
    z-index: 0;
}

.success-stories .container {
    position: relative;
    z-index: 1;
}

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

.metric-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.metric-text {
    font-size: 1rem;
    opacity: 0.95;
}

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

.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    border-color: rgba(0, 102, 204, 0.2);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: var(--gray-dark);
    font-style: italic;
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-author h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* ================================
   VALUE PROPOSITIONS
   ================================ */

.value-props {
    background: var(--gray-light);
}

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

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-left: 4px solid var(--primary-blue);
}

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

.value-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* ================================
   CASE STUDIES
   ================================ */

.case-studies {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.case-study-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 3px solid var(--primary-blue);
}

.case-study-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary-light);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 163, 224, 0.05) 100%);
}

.case-study-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.case-study-meta h3 {
    font-size: 1.4rem;
    color: var(--gray-dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.case-study-industry {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.case-study-content {
    padding: 2rem;
}

.case-study-content h4 {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.case-study-challenge,
.case-study-solution,
.case-study-results {
    margin-bottom: 1rem;
}

.case-study-challenge strong,
.case-study-solution strong,
.case-study-results strong {
    display: block;
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-challenge p,
.case-study-solution p {
    color: var(--gray-medium);
    line-height: 1.6;
    font-size: 0.9rem;
}

.case-study-results ul {
    list-style: none;
    margin-top: 0.5rem;
}

.case-study-results li {
    padding: 0.2rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

.case-study-results li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.case-study-footer {
    padding: 1.5rem 2rem;
    background: var(--gray-light);
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.case-study-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--primary-light);
}

.case-studies-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gradient-primary);
    border-radius: 16px;
    color: var(--white);
}

.case-studies-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.case-studies-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ================================
   RECOGNITION
   ================================ */

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

.recognition-item {
    text-align: center;
    padding: 2rem;
}

.recognition-badge {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.recognition-item h3 {
    font-size: 1.3rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.recognition-item p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ================================
   CONTACT SECTION
   ================================ */

/* ================================
   GLOBAL PRESENCE
   ================================ */

.global-presence {
    background: var(--gray-light);
}

.global-locations-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.location-simple {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.location-simple:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.location-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.location-simple h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.location-simple p {
    font-size: 0.9rem;
    color: var(--gray-medium);
    line-height: 1.4;
    margin: 0;
}

/* ================================
   CONTACT
   ================================ */

.contact {
    background: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="%230066cc" fill-opacity="0.03" fill-rule="evenodd"/%3E%3C/svg%3E');
    opacity: 0.6;
    z-index: 0;
}

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

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

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--gray-medium);
}

.contact-item a {
    color: var(--primary-blue);
    font-weight: 500;
}

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

.contact-cta-note {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.contact-cta-note p {
    color: var(--gray-dark);
    line-height: 1.6;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-smooth);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

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

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

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-smooth);
    text-decoration: none;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: var(--white);
}

/* ================================
   ANIMATIONS
   ================================ */

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

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

/* ================================
   VISUAL SHOWCASE SECTIONS
   ================================ */

.visual-showcase {
    padding: 5rem 0;
    background: var(--white);
}

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

.showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.showcase-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.showcase-content h2 {
    font-size: 2.5rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.showcase-content p {
    font-size: 1.125rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.showcase-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
}

/* Cloud Visual Section */
.cloud-visual {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.cloud-showcase-content h2 {
    font-size: 2.5rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.cloud-showcase-content p {
    font-size: 1.125rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cloud-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.cloud-benefits li {
    font-size: 1.125rem;
    color: var(--gray-dark);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cloud-benefits li:last-child {
    border-bottom: none;
}

.cloud-showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Case Study Images */
.case-study-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin-bottom: 1.5rem;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1024px) {
    .showcase-grid,
    .cloud-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cloud-showcase-image {
        order: -1;
    }
    
    .global-locations-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partner-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .delivery-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-content {
        padding: 1rem 0;
    }
    
    .logo h1 {
        font-size: 1.2rem;
        letter-spacing: 0.3px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-header {
        margin: 0 auto 2.5rem;
    }
    
    .hero {
        padding: 90px 0 50px;
        min-height: auto;
    }
    
    /* Logo - Tablet */
    .logo-main {
        height: 52px;
    }
    
    .logo-image-new {
        height: 55px;
    }
    
    .logo-image-svg {
        height: 65px;
    }
    
    /* Banner Slider - Tablet */
    .hero-banner-slider {
        max-width: 700px;
        margin-bottom: 2rem;
    }
    
    .slider-wrapper {
        height: 320px;
    }
    
    .slide-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .slide-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .slide-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .slider-dots {
        bottom: 1.2rem;
        right: 1.5rem;
        gap: 0.6rem;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .logo-icon-new {
        width: 48px;
        height: 48px;
    }
    
    .logo-company-name {
        font-size: 1.5rem;
        letter-spacing: 1.2px;
    }
    
    .logo-company-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .logo-name {
        font-size: 1.15rem;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }
    
    .global-locations-simple {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 68px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 500;
    }
    
    .btn-nav {
        margin: 1rem 2rem;
        display: inline-block;
        width: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .value-props {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .hero-metrics-executive {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .metric-executive .metric-value {
        font-size: 2.5rem;
    }
    
    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.05rem;
    }
    
    .capabilities-grid,
    .industries-grid,
    .testimonials,
    .value-grid,
    .case-studies-grid,
    .benefits-grid,
    .executive-grid {
        grid-template-columns: 1fr;
    }
    
    .executive-card {
        padding: 2.5rem 2rem;
    }
    
    .executive-cta-box {
        padding: 3rem 2.5rem;
    }
    
    .executive-cta-box h3 {
        font-size: 1.75rem;
    }
    
    .sap-gold-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 30px 0;
    }
    
    .section-header {
        margin: 0 auto 2rem;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    /* Banner Slider - Mobile */
    .hero-banner-slider {
        max-width: 100%;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }
    
    .slider-wrapper {
        height: 280px;
    }
    
    .slide-overlay {
        padding: 1.5rem 1.25rem 1.25rem;
    }
    
    .slide-icon {
        font-size: 1.75rem;
        margin-bottom: 0.4rem;
    }
    
    .slide-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.35rem;
    }
    
    .slide-content p {
        font-size: 0.85rem;
    }
    
    .slider-dots {
        bottom: 1rem;
        right: 1.25rem;
        gap: 0.5rem;
    }
    
    .slider-dots .dot {
        width: 9px;
        height: 9px;
    }
    
    .logo-main {
        height: 42px;
    }
    
    .logo-image-new {
        height: 45px;
    }
    
    .logo-image-svg {
        height: 50px;
    }
    
    .logo-icon-new {
        width: 42px;
        height: 42px;
    }
    
    .logo-content {
        gap: 0.75rem;
    }
    
    .logo-company-name {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .logo-company-tagline {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-name {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .logo-tagline {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }
    
    .trust-bar {
        flex-direction: column;
        gap: 0.75rem;
        padding-bottom: 1.5rem;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .value-props {
        grid-template-columns: 1fr;
        padding: 1.5rem 1rem;
        gap: 1.25rem;
    }
    
    .value-prop {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .hero-metrics-executive {
        grid-template-columns: 1fr;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    
    .metric-executive .metric-value {
        font-size: 2.5rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
    
    .executive-card {
        padding: 2rem 1.5rem;
    }
    
    .executive-number {
        font-size: 3rem;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .executive-card h3 {
        font-size: 1.3rem;
    }
    
    .executive-cta-box {
        padding: 2.5rem 2rem;
    }
    
    .executive-cta-box h3 {
        font-size: 1.5rem;
    }
    
    .executive-cta-box p {
        font-size: 1rem;
    }
    
    /* Disable fixed background on mobile for performance */
    .capabilities,
    .industries {
        background-attachment: scroll;
    }
}