/* OpenSoft LLC - Main Stylesheet */

:root {
  --primary-color: #1B004E;
  --accent-color: #00E5B9;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Header */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 0;
  text-align: right;
}

.header-top a {
  color: var(--accent-color);
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
}

.logo span {
  color: var(--accent-color);
}

nav ul {
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--primary-color);
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--accent-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d1b69 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: #00c9a1;
  transform: translateY(-2px);
}

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

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

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

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

.feature-card h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Section Styles */
.section {
  padding: 80px 20px;
}

.section-light {
  background: var(--light-bg);
}

.section-dark {
  background: var(--primary-color);
  color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h6 {
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--primary-color);
}

.section-dark .section-title h2 {
  color: var(--white);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  border-left: 4px solid var(--accent-color);
}

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

.service-card h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 20px;
}

/* Skills/Experience Bars */
.skills-list {
  max-width: 600px;
}

.skill-item {
  margin-bottom: 25px;
}

.skill-item h4 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.skill-bar {
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: var(--accent-color);
  border-radius: 4px;
}

/* Numbered List */
.numbered-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.numbered-item {
  display: flex;
  gap: 20px;
}

.numbered-item .number {
  font-size: 48px;
  font-weight: bold;
  color: var(--accent-color);
  opacity: 0.5;
}

.numbered-item h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d1b69 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-card .stars {
  color: #ffc107;
  margin-bottom: 15px;
}

.testimonial-card blockquote {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--gray);
}

.testimonial-card .author {
  font-weight: bold;
  color: var(--primary-color);
}

.testimonial-card .role {
  font-size: 14px;
  color: var(--gray);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
}

.pricing-card.popular {
  border: 3px solid var(--accent-color);
  transform: scale(1.05);
}

.pricing-card.popular::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

.pricing-card h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary-color);
  margin: 20px 0;
}

.pricing-card .price span {
  font-size: 18px;
  color: var(--gray);
}

.pricing-card ul {
  text-align: left;
  margin: 30px 0;
}

.pricing-card li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.pricing-card li::before {
  content: '✓';
  color: var(--accent-color);
  margin-right: 10px;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 5px;
}

.contact-info > div {
  margin-bottom: 30px;
}

.contact-info a {
  color: var(--accent-color);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 60px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-about p {
  opacity: 0.8;
  margin-top: 15px;
}

.footer-section h4 {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.footer-section a {
  display: block;
  margin-bottom: 10px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-links a:hover {
  background: var(--accent-color);
}

/* About Page */
.about-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d1b69 100%);
  color: var(--white);
  padding: 60px 20px;
}

.about-hero h2 {
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about-stats {
  display: flex;
  gap: 50px;
  margin-top: 30px;
}

.stat-item h3 {
  font-size: 48px;
  color: var(--accent-color);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d1b69 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

/* Content Page */
.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.content-page h2 {
  color: var(--primary-color);
  margin: 40px 0 20px;
}

.content-page h3 {
  color: var(--primary-color);
  margin: 30px 0 15px;
}

.content-page p {
  margin-bottom: 15px;
}

.content-page ul {
  margin: 20px 0;
  padding-left: 20px;
}

.content-page li {
  margin-bottom: 10px;
  list-style: disc;
}

.content-page hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 30px 0;
}

/* Map placeholder */
.map-container {
  height: 400px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}

/* Responsive */
@media (max-width: 768px) {
  .header-main {
    flex-direction: column;
    gap: 20px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
}