:root {
  --primary-color: #6c63ff;
  --secondary-color: #4caf50;
  --accent-color: #ff6b6b;
  --text-color: #333333;
  --light-text: #666666;
  --background-color: #ffffff;
  --section-bg: #f8f9fa;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
  z-index: 1001;
}

.mobile-menu.active i {
  transform: rotate(90deg);
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  width: 100%;
  overflow-x: hidden;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  color: var(--light-text);
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--section-bg);
  width: 100%;
  overflow-x: hidden;
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Workflow Section */
.workflow {
  padding: 100px 0;
  width: 100%;
  overflow-x: hidden;
}

.workflow h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--section-bg);
  width: 100%;
  overflow-x: hidden;
}

.about h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  width: 100%;
  overflow-x: hidden;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--section-bg);
  width: 100%;
  overflow-x: hidden;
}

.contact h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
}

/* Footer */
.footer {
  background: var(--text-color);
  color: white;
  padding: 50px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
}

/* Service Cards */
.service-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card i {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--light-text);
}

/* Timeline */
.workflow-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.timeline-icon i {
  color: white;
  font-size: 24px;
}

.timeline-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex-grow: 1;
}

.timeline-content h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-text ul {
  list-style: none;
  margin-top: 20px;
}

.about-text li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.about-text li i {
  color: var(--secondary-color);
  margin-right: 10px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-item i {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-item h4 {
  font-size: 32px;
  margin-bottom: 5px;
  color: var(--primary-color);
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-color);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
}

.price span {
  font-size: 16px;
  color: var(--light-text);
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-card li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card li i {
  color: var(--secondary-color);
  margin-right: 10px;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.1);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-animation i {
  animation: float 3s ease-in-out infinite;
  font-size: 120px;
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .header {
    width: 100%;
    padding: 10px 0;
  }

  .nav {
    padding: 0 15px;
    width: 100%;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    transition: var(--transition);
    z-index: 1000;
    padding-top: 20px;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 18px;
    padding: 10px 20px;
    display: block;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .mobile-menu {
    display: block;
    position: relative;
    z-index: 1001;
  }

  .hero,
  .services,
  .workflow,
  .about,
  .pricing,
  .contact,
  .company-details,
  .team,
  .technologies,
  .testimonials,
  .faq {
    width: 100%;
    overflow-x: hidden;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-links a {
    margin: 0 10px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline-icon {
    margin-bottom: 20px;
    margin-right: 0;
  }
}

/* Company Details Section */
.company-details {
  padding: 100px 0;
  background: var(--section-bg);
  width: 100%;
  overflow-x: hidden;
}

.company-content {
  max-width: 800px;
  margin: 0 auto;
}

.company-content h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.company-text {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.company-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.company-text ul {
  list-style: none;
  margin-top: 20px;
}

.company-text li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.company-text li i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Team Section */
.team {
  padding: 100px 0;
  width: 100%;
}

.team h2 {
  text-align: center;
  margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-image i {
  font-size: 48px;
  color: white;
}

.team-member h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* Technologies Section */
.technologies {
  padding: 100px 0;
  background: var(--section-bg);
}

.technologies h2 {
  text-align: center;
  margin-bottom: 50px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.tech-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.tech-item:hover {
  transform: translateY(-10px);
}

.tech-item i {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: var(--section-bg);
}

.faq h2 {
  text-align: center;
  margin-bottom: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.faq-item p {
  line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .company-text {
    padding: 20px;
  }

  .team-grid,
  .tech-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .member-image {
    width: 100px;
    height: 100px;
  }

  .member-image i {
    font-size: 36px;
  }
}
