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

:root {
  --primary-blue: #0066cc;
  --accent-cyan: #00ccff;
  --dark-blue: #081627;
  --navy-blue: #0a1a33;
  --light-blue: #1e3a5f;
  --text-light: #f8fafc;
  --text-muted: #cbd5e1;
  --gradient-primary: linear-gradient(135deg, #0066cc 0%, #00ccff 100%);
  --gradient-dark: linear-gradient(135deg, #081627 0%, #0a1a33 100%);
  --shadow-soft: 0 4px 20px rgba(0, 102, 204, 0.1);
  --shadow-medium: 0 8px 30px rgba(0, 102, 204, 0.2);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--gradient-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header Styles */
.site-header {
  background: rgba(8, 22, 39, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 204, 255, 0.1);
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.logo {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 18px;
}

.company-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  padding-bottom: 0.1em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--accent-cyan);
  border: 2px solid var(--accent-cyan);
}

.btn-secondary:hover {
  background: var(--accent-cyan);
  color: var(--dark-blue);
  transform: translateY(-2px);
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: rgba(30, 58, 95, 0.05);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background: rgba(30, 58, 95, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 204, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(0, 204, 255, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 24px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.service-description {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
}

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

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 32px;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  background: var(--dark-blue);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(0, 204, 255, 0.1);
}

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

.footer-section h3 {
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Legacy styles for compatibility */
.about-content {
  padding: 40px 0;
  line-height: 1.7;
  background-color: rgba(30, 58, 95, 0.05);
}

.about-text h2 {
  margin-top: 2rem;
  color: var(--accent-cyan);
}

.about-text ul {
  list-style: none;
  padding-left: 0;
}

.about-text li::before {
  content: "✔️ ";
  color: var(--accent-cyan);
  margin-right: 5px;
}

.service-block {
  background-color: rgba(30, 58, 95, 0.3);
  padding: 25px;
  border-radius: 8px;
  transition: transform 0.2s;
  border: 1px solid rgba(0, 204, 255, 0.1);
}

.service-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-block h2 {
  color: var(--accent-cyan);
  font-size: 1.3em;
}

.service-block p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Page-specific styles */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-dark);
  margin-top: 80px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* About Page Styles */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h2 {
  color: var(--accent-cyan);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-stats {
  display: grid;
  gap: 1.5rem;
}

.stat-card {
  background: rgba(30, 58, 95, 0.3);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(0, 204, 255, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.team-section {
  padding: 6rem 0;
  background: rgba(30, 58, 95, 0.05);
}

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

.team-member {
  background: rgba(30, 58, 95, 0.3);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(0, 204, 255, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.member-photo {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder {
  font-size: 3rem;
}

.team-member h3 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.member-title {
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.values-section {
  padding: 6rem 0;
}

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

.value-card {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.value-card h3 {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

/* Services Page Styles */
.services-detail-section {
  padding: 4rem 0;
}

.service-detail {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(0, 204, 255, 0.1);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-content {
  max-width: 800px;
}

.service-icon-large {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.service-detail h2 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.service-detail > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-features,
.service-technologies,
.service-benefits {
  margin-top: 2rem;
}

.service-features h3,
.service-technologies h3,
.service-benefits h3 {
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.service-features ul {
  list-style: none;
  padding: 0;
}

.service-features li {
  color: var(--text-muted);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

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

.tech-tag {
  background: rgba(0, 102, 204, 0.2);
  color: var(--accent-cyan);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 204, 255, 0.3);
}

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

.benefit-item {
  text-align: center;
  background: rgba(30, 58, 95, 0.3);
  padding: 1.5rem;
  border-radius: 8px;
}

.benefit-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
}

.benefit-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.methodology-section {
  padding: 6rem 0;
  background: rgba(30, 58, 95, 0.05);
}

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

.methodology-step {
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.methodology-step h3 {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.methodology-step p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-section {
  padding: 4rem 0;
}

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

.contact-form-container h2 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.contact-form-container > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-form {
  background: rgba(30, 58, 95, 0.3);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 204, 255, 0.1);
}

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

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

.form-group label {
  display: block;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(0, 204, 255, 0.3);
  border-radius: 8px;
  background: rgba(10, 26, 51, 0.5);
  color: var(--text-light);
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 2px rgba(0, 204, 255, 0.2);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.checkbox-label:hover {
  background: rgba(0, 204, 255, 0.1);
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

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

.contact-card {
  background: rgba(30, 58, 95, 0.3);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 204, 255, 0.1);
  text-align: center;
}

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

.contact-card h3 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--accent-cyan);
  text-decoration: none;
}

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

.contact-card small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.faq-section {
  padding: 6rem 0;
  background: rgba(30, 58, 95, 0.05);
}

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

.faq-item {
  background: rgba(30, 58, 95, 0.3);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 204, 255, 0.1);
}

.faq-item h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Navigation active state */
.nav-links a.active {
  color: var(--accent-cyan);
}

.nav-links a.active::after {
  width: 100%;
}

/* Mobile responsive updates */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .checkbox-group {
    grid-template-columns: 1fr;
  }
  
  .methodology-steps {
    grid-template-columns: 1fr;
  }
  
  .tech-tags {
    justify-content: center;
  }
  
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}