/* Add to your existing CSS or create new style.css */

/* 1. Modern Color Palette */
:root {
  --primary-blue: #2563eb;     /* Professional tech blue */
  --dark-navy: #0f172a;        /* Sophisticated dark */
  --tech-cyan: #06b6d4;        /* Accent for highlights */
  --light-gray: #f8fafc;       /* Backgrounds */
  --medium-gray: #64748b;      /* Secondary text */
  --dark-gray: #334155;        /* Primary text */
}

/* 2. Modern Font Stack */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: white;
}

/* 3. Update Copyright - CRITICAL */
footer p {
  text-align: center;
  color: var(--medium-gray);
  font-size: 0.9rem;
  padding: 2rem 0;
}

/* 4. Logo Enhancement */
.header img[src*="logo.png"] {
  max-height: 50px;
  width: auto;
  filter: brightness(1.1);
  transition: transform 0.3s ease;
}

.header img[src*="logo.png"]:hover {
  transform: scale(1.05);
}
/* Services Grid Layout */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--tech-cyan));
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
              0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--primary-blue);
}

.service-card h3 {
  color: var(--dark-navy);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-section {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1e293b 100%);
  color: white;
  padding: 4rem 1rem;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.contact-item:hover {
  color: white;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-item a:hover {
  color: var(--tech-cyan);
}

/* Modern Button */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-blue), var(--tech-cyan));
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}
.partners-section {
  padding: 3rem 1rem;
  background: var(--light-gray);
  text-align: center;
}

.partners-title {
  color: var(--medium-gray);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.partner-logo {
  height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
  padding: 0.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .services-container {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }
  
  .partners-grid {
    gap: 1.5rem;
  }
  
  .partner-logo {
    height: 40px;
  }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}