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

:root {
  --cream: #faf9f6;
  --beige: #e8e4dd;
  --violet: #7c3aed;
  --deep-violet: #5b21b6;
  --light-violet: #a78bfa;
  --accent-purple: #9333ea;
  --soft-lavender: #e9d5ff;
  --white: #ffffff;
  --text-dark: #1f1b2e;
  --text-light: #6b5d7a;
}

body {
  font-family: "Garamond", "Times New Roman", serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 25px;
}

/* Page Transitions */
.page {
  display: none;
  animation: fadeIn 0.6s ease;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(124, 58, 237, 0.1);
  z-index: 1000;
  transition: all 0.4s ease;
}

header.scrolled {
  box-shadow: 0 6px 40px rgba(124, 58, 237, 0.2);
  background: rgba(255, 255, 255, 0.98);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  transition: padding 0.4s ease;
}

.brand {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(
    135deg,
    var(--violet) 0%,
    var(--deep-violet) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1rem;
  font-family: "Arial", sans-serif;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-menu a::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--light-violet));
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--violet);
}

.cta-nav {
  padding: 0.7rem 1.8rem;
  background: linear-gradient(135deg, var(--violet), var(--deep-violet));
  color: white !important;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.cta-nav::before {
  display: none;
}

.cta-nav:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
  color: white !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--violet);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section - Homepage */
.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.05) 0%,
    rgba(233, 213, 255, 0.3) 50%,
    var(--cream) 100%
  );
  margin-top: 80px;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
  width: 300px;
  height: 300px;
  background: var(--violet);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 200px;
  height: 200px;
  background: var(--light-violet);
  bottom: 20%;
  right: 15%;
  animation-delay: 3s;
}

.shape:nth-child(3) {
  width: 150px;
  height: 150px;
  background: var(--accent-purple);
  top: 50%;
  right: 30%;
  animation-delay: 6s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  75% {
    transform: translate(20px, 30px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-subtitle {
  font-family: "Arial", sans-serif;
  color: var(--violet);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: slideInLeft 1s ease;
  font-weight: 600;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  animation: slideInUp 1s ease 0.2s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--violet), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.8;
  font-family: "Arial", sans-serif;
  animation: slideInUp 1s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: slideInUp 1s ease 0.6s both;
}

.btn-primary {
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--violet), var(--deep-violet));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
  padding: 1.2rem 3rem;
  background: transparent;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 50px;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  border: 2px solid var(--violet);
  transition: all 0.4s ease;
  display: inline-block;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--violet);
  color: white;
  transform: translateY(-5px);
}

/* Services Preview */
.services-preview {
  padding: 6rem 0;
  background: var(--white);
}

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

.section-label {
  font-family: "Arial", sans-serif;
  color: var(--violet);
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.section-description {
  font-family: "Arial", sans-serif;
  color: var(--text-light);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}

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

.service-item {
  background: var(--white);
  padding: 3rem;
  border-radius: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.05);
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--violet), var(--light-violet));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, var(--soft-lavender), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

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

.service-item:hover::after {
  opacity: 0.05;
}

.service-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(124, 58, 237, 0.18);
  border-color: rgba(124, 58, 237, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--soft-lavender),
    rgba(167, 139, 250, 0.2)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.1);
}

.service-item:hover .service-icon {
  background: linear-gradient(135deg, var(--violet), var(--accent-purple));
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.service-item h3 {
  font-size: 1.75rem;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.service-item p {
  font-family: "Arial", sans-serif;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--violet);
  font-family: "Arial", sans-serif;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
}

.coming-soon-tag {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--violet);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: "Arial", sans-serif;
  font-weight: bold;
}

.service-item.disabled {
  opacity: 0.7;
}

/* Stats Section */
.stats-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--deep-violet), #1e1338);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  animation: countUp 2s ease;
}

.stat-number {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--light-violet), white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-family: "Arial", sans-serif;
  font-size: 1.1rem;
  opacity: 0.9;
  letter-spacing: 1px;
}

/* Inner Page - Services Detail */
.inner-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.08),
    rgba(233, 213, 255, 0.3)
  );
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.15) 0%,
    transparent 70%
  );
  animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

.inner-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  font-family: "Arial", sans-serif;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: var(--violet);
  text-decoration: none;
}

.page-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.page-description {
  font-size: 1.3rem;
  color: var(--text-light);
  font-family: "Arial", sans-serif;
  max-width: 700px;
}

/* Content Sections */
.content-section {
  padding: 6rem 0;
}

.content-section:nth-child(even) {
  background: var(--white);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.content-image {
  height: 500px;
  background: linear-gradient(135deg, var(--violet), var(--deep-violet));
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.25);
  position: relative;
  overflow: hidden;
}

.content-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.content-image::after {
  content: "◆";
  position: absolute;
  font-size: 10rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  color: white;
}

.feature-list {
  list-style: none;
  margin-top: 2rem;
}

.feature-list li {
  font-family: "Arial", sans-serif;
  color: var(--text-light);
  padding: 1rem 0;
  padding-left: 3rem;
  position: relative;
  border-bottom: 1px solid var(--beige);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--violet), var(--light-violet));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.portfolio-card {
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  height: 400px;
  cursor: pointer;
  box-shadow: 0 15px 50px rgba(124, 58, 237, 0.1);
  transition: all 0.4s ease;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.85),
    rgba(147, 51, 234, 0.85)
  );
  z-index: 1;
  transition: opacity 0.4s ease;
}

.portfolio-card:hover::before {
  opacity: 0.95;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(124, 58, 237, 0.2);
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  z-index: 2;
  color: white;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-category {
  font-family: "Arial", sans-serif;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.portfolio-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.portfolio-info p {
  font-family: "Arial", sans-serif;
  opacity: 0.95;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: var(--white);
}

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

.contact-form {
  background: var(--cream);
  padding: 3rem;
  border-radius: 25px;
}

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

.form-group label {
  display: block;
  font-family: "Arial", sans-serif;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid var(--beige);
  border-radius: 15px;
  font-family: "Arial", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

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

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

.contact-card {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 25px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--violet), var(--accent-purple));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.contact-details p {
  font-family: "Arial", sans-serif;
  color: var(--text-light);
  line-height: 1.7;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--deep-violet), #1e1338);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-about h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--light-violet), white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-about p {
  font-family: "Arial", sans-serif;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--violet);
  transform: translateY(-5px);
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--light-violet);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  font-family: "Arial", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--light-violet);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-family: "Arial", sans-serif;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    padding: 3rem;
    transition: left 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 3rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .two-column,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .services-grid,
  .process-grid,
  .features-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
  }
}

/* Hero Section */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.08),
    rgba(230, 213, 195, 0.2)
  );
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.12) 0%,
    transparent 70%
  );
  animation: float 8s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-30px, 30px) rotate(10deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-subtitle {
  font-family: "Arial", sans-serif;
  color: var(--violet);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--violet), var(--deep-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.9;
  font-family: "Arial", sans-serif;
  max-width: 800px;
}

/* Content Sections */
.content-section {
  padding: 6rem 0;
}

.section-label {
  font-family: "Arial", sans-serif;
  color: var(--violet);
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.section-text {
  font-family: "Arial", sans-serif;
  color: var(--text-light);
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.content-image {
  height: 500px;
  background: linear-gradient(135deg, var(--violet), var(--deep-violet));
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
  position: relative;
  overflow: hidden;
}

.content-image::after {
  content: "◆";
  position: absolute;
  font-size: 12rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  color: white;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--violet), var(--light-violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(139, 92, 246, 0.15);
}

.service-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1),
    rgba(167, 139, 250, 0.15)
  );
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--violet), var(--light-violet));
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  font-family: "Arial", sans-serif;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Approach Steps */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15);
}

.step-number {
  font-size: 3.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--violet), var(--light-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.step-card p {
  font-family: "Arial", sans-serif;
  color: var(--text-light);
  line-height: 1.7;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, var(--violet), var(--deep-violet));
  padding: 4rem;
  border-radius: 30px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.highlight-box h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.highlight-box p {
  font-family: "Arial", sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--deep-violet), #1e1338);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-about h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--light-violet), white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-about p {
  font-family: "Arial", sans-serif;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--violet);
  transform: translateY(-5px);
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--light-violet);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  font-family: "Arial", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--light-violet);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-family: "Arial", sans-serif;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    padding: 3rem;
    transition: left 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .two-column,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .highlight-box {
    padding: 2.5rem;
  }

  .highlight-box h3 {
    font-size: 1.8rem;
  }
}


/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(230, 213, 195, 0.2));
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    animation: float 8s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 30px) rotate(10deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-subtitle {
    font-family: 'Arial', sans-serif;
    color: var(--violet);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--violet), var(--deep-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.9;
    font-family: 'Arial', sans-serif;
    max-width: 800px;
}

/* Content Sections */
.content-section {
    padding: 6rem 0;
}

.section-label {
    font-family: 'Arial', sans-serif;
    color: var(--violet);
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-text {
    font-family: 'Arial', sans-serif;
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--violet), var(--light-violet));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(139, 92, 246, 0.15);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.15));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--violet), var(--light-violet));
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    font-family: 'Arial', sans-serif;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

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

.service-card li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-family: 'Arial', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
}

.service-card li:before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--violet);
    font-size: 0.8rem;
}

.service-card .card-subtitle {
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-family: 'Arial', sans-serif;
}

/* Two Column Layout */
.two-column-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--violet), var(--deep-violet));
    padding: 4rem;
    border-radius: 30px;
    color: white;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    margin-top: 3rem;
}

.highlight-box h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight-box p {
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    text-align: center;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.highlight-box li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    opacity: 0.95;
    text-align: left;
}

.highlight-box li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--light-violet);
    font-size: 1.2rem;
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: var(--violet);
    margin-bottom: 0.8rem;
}

.feature-card p {
    font-family: 'Arial', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
}

/* Info Box */
.info-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.08);
}

.info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.info-box p {
    font-family: 'Arial', sans-serif;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.info-box li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-family: 'Arial', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
}

.info-box li:before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--violet);
    font-size: 0.8rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--deep-violet), #1e1338);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--light-violet), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about p {
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--violet);
    transform: translateY(-5px);
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--light-violet);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    font-family: 'Arial', sans-serif;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-violet);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-family: 'Arial', sans-serif;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 3rem;
        transition: left 0.4s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid,
    .two-column-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .highlight-box {
        padding: 2.5rem;
    }

    .highlight-box h3 {
        font-size: 1.8rem;
    }
}

 /* Process Grid */
 .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15);
}

.process-number {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--violet), var(--light-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-card p {
    font-family: 'Arial', sans-serif;
    color: var(--text-light);
    line-height: 1.7;
}
