/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    touch-action: manipulation;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo i {
    font-size: 2rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link,
.nav-button {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active,
.nav-button:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Tab Content */
.tab-content {
    display: none;
    min-height: calc(100vh - 80px);
}

.tab-content.active {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Enhanced Hero with Background */
.hero-enhanced {
    padding: 6rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0, 25px 25px; }
    100% { background-position: 50px 50px, 75px 75px; }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -50px;
    animation-delay: 7s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 30%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: #ffd700;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.hero-cta {
    margin: 2rem 0;
}

.hero-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.hero-btn-primary {
    background: white;
    color: #667eea;
    border-color: white;
}

.hero-btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
}

.hero .stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff !important;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-animated {
    opacity: 0;
    animation: statFadeIn 0.6s ease-out forwards;
}

.stat-animated:nth-child(1) { animation-delay: 0.2s; }
.stat-animated:nth-child(2) { animation-delay: 0.4s; }
.stat-animated:nth-child(3) { animation-delay: 0.6s; }
.stat-animated:nth-child(4) { animation-delay: 0.8s; }

@keyframes statFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Trusted By Section */
.trusted-by-section {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.trusted-title {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    opacity: 0.7;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.logo-item i {
    font-size: 2.5rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.logo-item span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.logo-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.logo-item:hover i {
    color: #764ba2;
    transform: scale(1.1);
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-stat {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
}

/* Global Presence Section */
.global-presence-section {
    padding: 5rem 0;
    background: white;
}

.global-map-container {
    margin: 3rem 0;
    position: relative;
}

.map-visual {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.map-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.map-background i {
    font-size: 20rem;
    color: #667eea;
    opacity: 0.08;
    animation: rotateGlobe 60s linear infinite;
}

@keyframes rotateGlobe {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.office-locations {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.location-marker {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.location-marker i {
    font-size: 2.5rem;
    color: #667eea;
    position: relative;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.marker-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #667eea;
    opacity: 0.3;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.location-details h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.location-details p {
    color: #667eea;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.global-stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.global-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.global-stat-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.global-stat-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.global-stat-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonials-section .section-header h2,
.testimonials-section .section-description {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: #667eea;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1.1rem;
}

.testimonial-text {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.author-info h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Companies Overview */
.companies-overview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.companies-overview .section-header h2::after {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.companies-grid-centered {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.companies-grid-centered .company-card {
    width: 100%;
    min-width: 600px;
}

.company-card-featured {
    animation: pulse-featured 2s ease-in-out infinite;
}

@keyframes pulse-featured {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    50% {
        box-shadow: 0 10px 30px rgba(23, 162, 184, 0.3);
    }
}

/* Infrastructure Card Enhanced Styling */
.company-card-infrastructure {
    background: white !important;
    border: 3px solid #17a2b8;
    box-shadow: 
        0 15px 50px rgba(23, 162, 184, 0.25),
        0 0 0 1px rgba(23, 162, 184, 0.1) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    transform: scale(1.02);
    animation: infrastructure-glow 3s ease-in-out infinite;
}

@keyframes infrastructure-glow {
    0%, 100% {
        box-shadow: 
            0 15px 50px rgba(23, 162, 184, 0.25),
            0 0 0 1px rgba(23, 162, 184, 0.1) inset,
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
        border-color: #17a2b8;
    }
    50% {
        box-shadow: 
            0 20px 60px rgba(23, 162, 184, 0.4),
            0 0 20px rgba(23, 162, 184, 0.3),
            0 0 0 1px rgba(23, 162, 184, 0.2) inset,
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
        border-color: #0e6c7d;
    }
}

.company-card-infrastructure::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(23, 162, 184, 0.1),
        transparent
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.company-card-infrastructure::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #17a2b8, #0e6c7d, #17a2b8);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.company-card-infrastructure:hover::after {
    opacity: 0.15;
}

.company-card-infrastructure h3 {
    font-size: 1.8rem !important;
    font-weight: 700;
    color: #17a2b8 !important;
    text-shadow: none;
}

.company-card-infrastructure p {
    color: #333 !important;
}

.infrastructure-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.4);
    z-index: 2;
}

.infrastructure-badge i {
    color: #ffd700;
    animation: twinkle 1.5s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.infrastructure-icon {
    position: relative;
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%) !important;
    border: 2px solid #17a2b8 !important;
    box-shadow: 0 4px 20px rgba(23, 162, 184, 0.3) !important;
}

.infrastructure-icon i {
    font-size: 2.5rem;
    color: white !important;
    z-index: 2;
    position: relative;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(23, 162, 184, 0.4) 0%, transparent 70%);
    animation: pulse-glow 2s ease-in-out infinite;
    filter: blur(10px);
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.9;
    }
}

.infrastructure-tagline {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #555 !important;
}

.infrastructure-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
    z-index: 2;
    position: relative;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.08) 0%, rgba(19, 132, 150, 0.08) 100%);
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid rgba(23, 162, 184, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.15) 0%, rgba(19, 132, 150, 0.15) 100%);
    transform: translateX(5px);
    border-color: rgba(23, 162, 184, 0.4);
}

.highlight-item i {
    font-size: 1.2rem;
    color: #17a2b8;
}

.highlight-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.infrastructure-arrow {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%) !important;
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: none !important;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.infrastructure-arrow span {
    font-weight: 600;
    font-size: 1rem;
    color: white;
}

.infrastructure-arrow i {
    font-size: 1.3rem;
    color: white;
    transition: transform 0.3s ease;
}

.company-card-infrastructure:hover .infrastructure-arrow {
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
}

.company-card-infrastructure:hover .infrastructure-arrow i {
    transform: translateX(10px);
}

.company-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

/* Individual company card border colors */
.company-card[data-company="ai"]::before {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.company-card[data-company="cloud"]::before {
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.company-card[data-company="digital"]::before {
    background: linear-gradient(90deg, #9b59b6, #8e44ad);
}

.company-card[data-company="security"]::before {
    background: linear-gradient(90deg, #34495e, #2c3e50);
}

.company-card[data-company="data"]::before {
    background: linear-gradient(90deg, #f39c12, #e67e22);
}

.company-card[data-company="enterprise"]::before {
    background: linear-gradient(90deg, #27ae60, #229954);
}

.company-card[data-company="infrastructure"]::before {
    background: linear-gradient(90deg, #17a2b8, #138496);
}

.company-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

/* Individual company card icon colors */
.company-card[data-company="ai"] .company-icon {
    color: #e74c3c;
}

.company-card[data-company="cloud"] .company-icon {
    color: #3498db;
}

.company-card[data-company="digital"] .company-icon {
    color: #9b59b6;
}

.company-card[data-company="security"] .company-icon {
    color: #34495e;
}

.company-card[data-company="data"] .company-icon {
    color: #f39c12;
}

.company-card[data-company="enterprise"] .company-icon {
    color: #27ae60;
}

.company-card[data-company="infrastructure"] .company-icon {
    color: #17a2b8;
}

.company-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.company-card p {
    color: #666;
    font-size: 1rem;
}

.company-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #667eea;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.company-card:hover .company-arrow {
    opacity: 1;
}

/* Global Offices Section */
.global-offices-section {
    padding: 5rem 0;
    background: white;
}

.global-offices-section .section-header h2::after {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.office-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.office-card.headquarters::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.office-card.headquarters:hover {
    border-color: #f59e0b;
}

.office-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.office-flag {
    font-size: 2.5rem;
    line-height: 1;
}

.office-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.office-type {
    display: inline-block;
    background: linear-gradient(90deg, #667eea, #764ba2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.office-card.headquarters .office-type {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.office-details {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.office-address {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.office-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.office-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.office-contact .contact-item i {
    width: 16px;
    color: #667eea;
    font-size: 0.9rem;
}

.office-card.headquarters .office-contact .contact-item i {
    color: #f59e0b;
}

.office-contact .contact-item span {
    color: #555;
    font-weight: 500;
}

/* Company Hero Sections */
.company-hero {
    padding: 4rem 0;
    color: white;
}

.ai-theme { background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); }
.cloud-theme { background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); }
.digital-theme { background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%); }
.security-theme { background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%); }
.data-theme { background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%); }
.enterprise-theme { background: linear-gradient(135deg, #27ae60 0%, #229954 100%); }
.infrastructure-theme { background: linear-gradient(135deg, #17a2b8 0%, #138496 100%); }

/* All company themes have white text for better contrast */
.ai-theme, .cloud-theme, .digital-theme, .security-theme, .data-theme, .enterprise-theme, .infrastructure-theme {
    color: white;
}

.company-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.company-logo {
    font-size: 4rem;
    opacity: 0.9;
}

.company-info h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.company-tagline {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.company-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: white;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    padding-bottom: 1rem;
    width: 100%;
    overflow: hidden;
}



.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

/* Service card borders inherit color from their parent company tab */
#ai .service-card {
    border-left-color: #e74c3c;
}

#cloud .service-card {
    border-left-color: #3498db;
}

#digital .service-card {
    border-left-color: #9b59b6;
}

#security .service-card {
    border-left-color: #34495e;
}

#data .service-card {
    border-left-color: #f39c12;
}

#enterprise .service-card {
    border-left-color: #27ae60;
}

#infrastructure .service-card {
    border-left-color: #17a2b8;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

/* Service icons inherit color from their parent company tab */
#ai .service-icon {
    color: #e74c3c;
}

#cloud .service-icon {
    color: #3498db;
}

#digital .service-icon {
    color: #9b59b6;
}

#security .service-icon {
    color: #34495e;
}

#data .service-icon {
    color: #f39c12;
}

#enterprise .service-icon {
    color: #27ae60;
}

#infrastructure .service-icon {
    color: #17a2b8;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Service card checkmarks inherit color from their parent company tab */
#ai .service-card li::before {
    color: #e74c3c;
}

#cloud .service-card li::before {
    color: #3498db;
}

#digital .service-card li::before {
    color: #9b59b6;
}

#security .service-card li::before {
    color: #34495e;
}

#data .service-card li::before {
    color: #f39c12;
}

#enterprise .service-card li::before {
    color: #27ae60;
}

#infrastructure .service-card li::before {
    color: #17a2b8;
}

/* Bottom CTA Section */
.bottom-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bottom-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.bottom-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.bottom-cta-content .cta-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.bottom-cta-content .cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin: 0;
}

.bottom-cta-content .btn {
    background: white;
    color: #667eea;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bottom-cta-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.bottom-cta-content .btn i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .bottom-cta-section {
        padding: 3rem 0;
    }
    
    .bottom-cta-content .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .bottom-cta-content .cta-text p {
        font-size: 1rem;
    }
    
    .bottom-cta-content .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #667eea;
}

.footer-link {
    margin: 1rem 0;
}

.footer-main-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 2px solid #667eea;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-main-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Enhanced Responsive Design with Additional Breakpoints */

/* Large screens (1200px and up) - enhance spacing */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

/* Medium tablets (768px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Small tablets and large phones (640px - 768px) */
@media (max-width: 768px) and (min-width: 641px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .company-card {
        padding: 1.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

/* Large phones in landscape (480px - 640px) */
@media (max-width: 640px) and (min-width: 481px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
}

/* Standard phones in portrait (375px - 480px) */
@media (max-width: 480px) and (min-width: 376px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .company-card,
    .service-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .nav {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Small phones (320px - 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .company-card,
    .service-card {
        padding: 1rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: center;
        border-radius: 4px;
        margin-bottom: 2px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 16px;
    }
}

/* Extra small devices (under 320px) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .company-card,
    .service-card {
        padding: 0.75rem;
    }
    
    .btn {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* Landscape orientation optimizations */
@media (orientation: landscape) and (max-height: 600px) {
    .hero {
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        margin-top: 1rem;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .header {
        padding: 0.75rem 0;
    }
}

/* Additional Sections Styles */

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.industries-grid {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.industry-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    flex: 1;
    max-width: 240px;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.industry-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    color: white;
}

/* Industry icons inherit color from their parent company tab */
#ai .industry-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

#cloud .industry-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

#digital .industry-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

#security .industry-icon {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

#data .industry-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

#enterprise .industry-icon {
    background: linear-gradient(135deg, #27ae60, #229954);
}

#infrastructure .industry-icon {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.industry-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.industry-card p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Technologies Section */
.technologies-section {
    padding: 80px 0;
    background-color: white;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.tech-category {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.tech-category h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tech-tag {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

/* Tech tags inherit color from their parent company tab */
#ai .tech-tag {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

#cloud .tech-tag {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

#digital .tech-tag {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

#security .tech-tag {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

#data .tech-tag {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

#enterprise .tech-tag {
    background: linear-gradient(135deg, #27ae60, #229954);
}

#infrastructure .tech-tag {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.tech-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

/* Tech tag hover effects inherit from their parent company tab */
#ai .tech-tag:hover {
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

#cloud .tech-tag:hover {
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

#digital .tech-tag:hover {
    box-shadow: 0 4px 8px rgba(155, 89, 182, 0.3);
}

#security .tech-tag:hover {
    box-shadow: 0 4px 8px rgba(52, 73, 94, 0.3);
}

#data .tech-tag:hover {
    box-shadow: 0 4px 8px rgba(243, 156, 18, 0.3);
}

#enterprise .tech-tag:hover {
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

#infrastructure .tech-tag:hover {
    box-shadow: 0 4px 8px rgba(23, 162, 184, 0.3);
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: white;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.process-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
}

.process-step:nth-child(odd) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(6) { animation-delay: 0.5s; }
.process-step:nth-child(8) { animation-delay: 0.6s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

#ai .step-number {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

#cloud .step-number {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

#digital .step-number {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

#security .step-number {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

#data .step-number {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

#enterprise .step-number {
    background: linear-gradient(135deg, #27ae60, #229954);
}

#infrastructure .step-number {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    color: #667eea;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

#ai .step-icon {
    color: #e74c3c;
    border-color: #e74c3c;
}

#cloud .step-icon {
    color: #3498db;
    border-color: #3498db;
}

#digital .step-icon {
    color: #9b59b6;
    border-color: #9b59b6;
}

#security .step-icon {
    color: #34495e;
    border-color: #34495e;
}

#data .step-icon {
    color: #f39c12;
    border-color: #f39c12;
}

#enterprise .step-icon {
    color: #27ae60;
    border-color: #27ae60;
}

#infrastructure .step-icon {
    color: #17a2b8;
    border-color: #17a2b8;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.process-step h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.process-connector {
    flex: 0 0 60px;
    height: 3px;
    background: linear-gradient(90deg, #e2e8f0, #667eea, #e2e8f0);
    margin-top: 100px;
    position: relative;
}

.process-connector::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1.5rem;
    font-weight: 700;
}

#ai .process-connector {
    background: linear-gradient(90deg, #f8fafc, #e74c3c, #f8fafc);
}

#ai .process-connector::after {
    color: #e74c3c;
}

#cloud .process-connector {
    background: linear-gradient(90deg, #f8fafc, #3498db, #f8fafc);
}

#cloud .process-connector::after {
    color: #3498db;
}

#digital .process-connector {
    background: linear-gradient(90deg, #f8fafc, #9b59b6, #f8fafc);
}

#digital .process-connector::after {
    color: #9b59b6;
}

#security .process-connector {
    background: linear-gradient(90deg, #f8fafc, #34495e, #f8fafc);
}

#security .process-connector::after {
    color: #34495e;
}

#data .process-connector {
    background: linear-gradient(90deg, #f8fafc, #f39c12, #f8fafc);
}

#data .process-connector::after {
    color: #f39c12;
}

#enterprise .process-connector {
    background: linear-gradient(90deg, #f8fafc, #27ae60, #f8fafc);
}

#enterprise .process-connector::after {
    color: #27ae60;
}

#infrastructure .process-connector {
    background: linear-gradient(90deg, #f8fafc, #17a2b8, #f8fafc);
}

#infrastructure .process-connector::after {
    color: #17a2b8;
}

/* Responsive Process Timeline */
@media (max-width: 992px) {
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .process-connector {
        width: 3px;
        height: 60px;
        margin: 0;
        background: linear-gradient(180deg, #e2e8f0, #667eea, #e2e8f0);
    }
    
    .process-connector::after {
        content: '↓';
        right: auto;
        left: 50%;
        transform: translate(-50%, 0);
        top: auto;
        bottom: -10px;
    }
    
    .process-step {
        max-width: 400px;
        width: 100%;
    }
}

/* Success Stories Section */
.success-stories-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
    color: white;
}

.story-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.story-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-stats {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Dedicated Resource Section */
.dedicated-resource-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.resource-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.resource-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.resource-content h3 {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.resource-content p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.resource-content strong {
    color: #667eea;
    font-weight: 700;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.resource-link:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.resource-link i {
    transition: transform 0.3s ease;
}

.resource-link:hover i {
    transform: translateX(5px);
}

.resource-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 2rem;
    border-left: 2px solid #e9ecef;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    border: 1px solid rgba(102, 126, 234, 0.15);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.feature-badge i {
    color: #667eea;
    font-size: 1rem;
}

.feature-badge:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(5px);
}

/* Company Contact Section */
.company-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.contact-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: white;
    color: #007bff;
    border: 2px solid white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Responsive styles for new sections */
@media (max-width: 768px) {
    /* Hero Enhanced */
    .hero-enhanced {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .shape {
        display: none;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat {
        min-width: 140px;
        padding: 1rem;
    }
    
    /* Client Logos */
    .client-logos {
        gap: 2rem;
    }
    
    .logo-item i {
        font-size: 2rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    /* Global Map */
    .map-visual {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .map-background i {
        font-size: 12rem;
    }
    
    .office-locations {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
    
    .global-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .global-stat-item {
        padding: 1.5rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .industries-grid {
        gap: 15px;
    }
    
    .industry-card {
        min-width: 180px;
        max-width: 220px;
        padding: 15px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .contact-cta h2 {
        font-size: 2rem;
    }
    
    .contact-cta p {
        font-size: 1rem;
    }
    
    .hero-cta {
        margin: 1.5rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}

/* Theme-specific variations for contact sections */
#ai .company-contact-section {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

#cloud .company-contact-section {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

#digital .company-contact-section {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

#security .company-contact-section {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

#data .company-contact-section {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

#enterprise .company-contact-section {
    background: linear-gradient(135deg, #27ae60, #229954);
}

#infrastructure .company-contact-section {
    background: linear-gradient(135deg, #17a2b8, #138496);
} 

/* Main mobile responsive styles (768px and below) */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        min-width: 80px;
        justify-content: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-link:active {
        transform: scale(0.95);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .companies-grid {
        grid-template-columns: 1fr;
    }
    
    .companies-grid-centered {
        max-width: 100%;
        padding: 0;
    }
    
    .companies-grid-centered .company-card {
        min-width: unset;
        width: 100%;
    }
    
    /* Infrastructure Card Mobile Styles */
    .company-card-infrastructure {
        min-height: 240px;
    }
    
    .infrastructure-highlights {
        gap: 0.5rem;
        margin: 1rem 0;
    }
    
    .highlight-item {
        padding: 6px 12px;
    }
    
    .highlight-item i {
        font-size: 1rem;
    }
    
    .highlight-item span {
        font-size: 0.85rem;
    }
    
    .infrastructure-arrow span {
        font-size: 0.9rem;
    }
    
    .infrastructure-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    
    /* Dedicated Resource Section Mobile Styles */
    .resource-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .resource-icon {
        margin: 0 auto;
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .resource-content h3 {
        font-size: 1.4rem;
    }
    
    .resource-content p {
        font-size: 0.95rem;
    }
    
    .resource-link {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .resource-features {
        border-left: none;
        border-top: 2px solid #e9ecef;
        padding-left: 0;
        padding-top: 1rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .office-card {
        padding: 2rem;
    }
    
    .office-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .office-flag {
        font-size: 2rem;
    }
    
    .office-info h3 {
        font-size: 1.3rem;
    }
    
    .office-contact .contact-item {
        font-size: 0.9rem;
    }
    
    .company-header {
        flex-direction: column;
        text-align: center;
    }
    
    .company-info h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 1rem;
    }
} 

/* Touch Optimizations for Mobile Devices */

/* Touch-action properties for better touch handling */
.nav-link,
.company-card,
.service-card,
.btn,
.hero-btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Ensure minimum touch target sizes (44px x 44px) */
.nav-link,
.nav-button {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
}

.btn,
.hero-btn {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
}

.company-card {
    cursor: pointer;
    min-height: 120px;
    padding: 1.5rem;
}

.service-card {
    min-height: 200px;
    padding: 1.5rem;
}

/* Enhanced touch feedback */
.nav-link:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.1s ease;
}

.company-card:active,
.service-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.btn:active,
.hero-btn:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Better spacing for touch targets on mobile */
@media (max-width: 768px) {
    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        margin: 2px 0;
    }
    
    .btn,
    .hero-btn {
        padding: 14px 28px;
        font-size: 1rem;
        min-height: 48px;
        min-width: 120px;
    }
    
    .company-card,
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
        min-height: 140px;
    }
    
    /* Better spacing between interactive elements */
    .nav {
        gap: 8px;
    }
    
    .companies-grid,
    .services-grid {
        gap: 1rem;
    }
}

/* Prevent text selection on interactive elements */
.company-card h3,
.company-card p,
.service-card h3,
.service-card p,
.nav-link,
.btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Improve focus indicators for accessibility */
.nav-link:focus,
.btn:focus,
.hero-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.company-card:focus,
.service-card:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Smooth transitions for better touch feedback */
.nav-link,
.company-card,
.service-card,
.btn,
.hero-btn {
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

/* Optimize scrolling on mobile */
.tab-content {
    -webkit-overflow-scrolling: touch;
}

/* Prevent iOS bounce scroll */
body {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

/* GPU Calculator Section */
.gpu-calculator-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin: 3rem 0;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.calculator-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.control-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.control-group label i {
    color: #17a2b8;
    font-size: 1.1rem;
}

.calculator-select,
.calculator-input {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.calculator-select:focus,
.calculator-input:focus {
    outline: none;
    border-color: #17a2b8;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}

.calc-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.calc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.3);
}

.calc-btn:active {
    transform: translateY(0);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.results-header h3 {
    color: #333;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.results-header i {
    color: #17a2b8;
}

.result-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.result-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #17a2b8;
}

.result-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.result-content {
    flex: 1;
}

.result-content h4 {
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    color: #17a2b8;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.result-label {
    color: #999;
    font-size: 0.75rem;
    display: block;
    margin-top: 0.25rem;
}

.result-recommendations {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
}

.result-recommendations h4 {
    color: #856404;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-recommendations ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.result-recommendations li {
    color: #856404;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.result-recommendations li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: 700;
}

.calculator-notes {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.calculator-notes h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.calculator-notes h3 i {
    color: #17a2b8;
}

.calculator-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.calculator-notes li {
    color: #666;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.calculator-notes li:last-child {
    border-bottom: none;
}

.calculator-notes li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #17a2b8;
    font-size: 1.5rem;
    line-height: 1;
}

/* Responsive Calculator */
@media (max-width: 992px) {
    .calculator-container {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    
    .result-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gpu-calculator-section {
        padding: 3rem 0;
    }
    
    .calculator-container {
        padding: 1.5rem;
    }
    
    .result-value {
        font-size: 1.5rem;
    }
    
    .result-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

/* Contact Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    overflow-y: auto;
    padding: 2rem;
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f0f0f0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-size: 1.2rem;
    z-index: 1;
}

.modal-close:hover {
    background: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 3rem 2rem 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.modal-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    opacity: 0.95;
    font-size: 1.05rem;
}

.contact-form {
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: #667eea;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.checkbox-label a {
    color: #667eea;
    text-decoration: underline;
}

.form-submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message i {
    font-size: 1.25rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal {
        padding: 1rem;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-header i {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
} 