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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand .logo {
  height: 40px;
  width: auto;
}
.nav-brand .brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    overflow: hidden;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 4rem;
    transition: left 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  .nav-menu.active {
    left: 0;
  }
}

.nav-link {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.nav-link i {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .nav-link i {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .nav-link span {
    font-size: 1.125rem;
  }
}
.nav-link:hover, .nav-link.active {
  color: #4f46e5;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
@media (max-width: 768px) {
  .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    width: 80%;
    justify-content: flex-start;
  }
  .nav-link::after {
    display: none;
  }
}

.nav-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: #1f2937;
  transition: color 0.3s ease;
}
.nav-toggle:hover {
  color: #4f46e5;
}
.nav-toggle.active {
  color: #ec4899;
}
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
}

.main-content {
  margin-top: 70px;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef2ff 0%, rgba(236, 72, 153, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    margin-top: 30px;
  }
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
}

.hero-title-line {
  display: block;
  color: #1f2937;
}

.hero-title-first-line {
  font-size: 3rem;
}
.hero-title-first-line > span {
  color: #4f46e5;
}
@media (max-width: 480px) {
  .hero-title-first-line {
    font-size: 2rem;
  }
}

.hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .hero-description {
    font-size: 1rem;
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-buttons {
    justify-content: center;
  }
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-secondary {
  background: #ffffff;
  color: #4f46e5;
  border: 2px solid #4f46e5;
}
.btn-secondary:hover {
  background: #4f46e5;
  color: #ffffff;
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}

.hero-visual {
  position: relative;
  height: 400px;
}

.floating-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  border-radius: 20px;
  animation: float 6s ease-in-out infinite;
}
.floating-element.element-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}
.floating-element.element-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ec4899 0%, #4f46e5 100%);
  top: 60%;
  right: 30%;
  animation-delay: 2s;
}
.floating-element.element-3 {
  width: 60px;
  height: 60px;
  background: #ec4899;
  bottom: 20%;
  left: 60%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-hero {
  padding: 5rem 0 4rem;
  background: #f9fafb;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
}

.page-description {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.features,
.services,
.process,
.blog,
.contact {
  padding: 5rem 0;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 2rem;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 480px) {
  .feature-card {
    padding: 1.5rem;
  }
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #4f46e5;
}
.feature-icon i {
  background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.6;
}

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

.service-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 2rem;
  border-top: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.service-card:hover {
  border-top-color: #4f46e5;
}
@media (max-width: 480px) {
  .service-card {
    padding: 1.5rem;
  }
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #4f46e5;
}
.service-icon i {
  background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.service-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
}
.service-features li {
  padding: 0.5rem 0;
  color: #6b7280;
  position: relative;
  padding-left: 1.5rem;
}
.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #4f46e5;
}

.process-steps {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.process-step:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .process-step {
    flex-direction: column;
    text-align: center;
  }
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 60px;
}
@media (max-width: 768px) {
  .step-number {
    min-width: auto;
  }
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.step-content p {
  color: #6b7280;
  line-height: 1.6;
}

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

.blog-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.blog-excerpt {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-link {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.blog-link:hover {
  color: #ec4899;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.contact-info p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.25rem;
  width: 50px;
  height: 50px;
  background: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
}

.contact-text h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1f2937;
}

.contact-text p {
  color: #6b7280;
  margin: 0;
}

.contact-form-container {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 480px) {
  .contact-form-container {
    padding: 1.5rem;
  }
}

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

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1f2937;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4f46e5;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.cta {
  background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  color: #ffffff;
  text-align: center;
  padding: 5rem 0;
}
.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.cta .btn-primary {
  background: #ffffff;
  color: #4f46e5;
}
.cta .btn-primary:hover {
  background: #f9fafb;
}

.newsletter {
  background: #f9fafb;
  padding: 4rem 0;
  text-align: center;
}
.newsletter h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}
.newsletter p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
}
.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
}
.newsletter-form input:focus {
  outline: none;
  border-color: #4f46e5;
}

.footer {
  background: #1f2937;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1rem;
  justify-content: flex-start;
}
.footer-brand .footer-logo {
  height: 30px;
  width: auto;
}
.footer-brand .footer-brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}
.social-links .social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-links .social-link:hover {
  background: #4f46e5;
  transform: translateY(-2px);
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.footer-section h4 i {
  color: #4f46e5;
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.footer-links li a:hover {
  color: #ffffff;
}
.footer-links li a i {
  color: #4f46e5;
  width: 16px;
}

.contact-info p {
  color: #9ca3af;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.contact-info p i {
  color: #4f46e5;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

[data-aos] {
  opacity: 0;
  transition: all 0.6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
}
[data-aos][data-aos=fade-up] {
  transform: translateY(30px);
}
[data-aos][data-aos=fade-up].aos-animate {
  transform: translateY(0);
}
[data-aos][data-aos=fade-right] {
  transform: translateX(-30px);
}
[data-aos][data-aos=fade-right].aos-animate {
  transform: translateX(0);
}
[data-aos][data-aos=fade-left] {
  transform: translateX(30px);
}
[data-aos][data-aos=fade-left].aos-animate {
  transform: translateX(0);
}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  .step-number {
    min-width: auto;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .feature-card,
  .service-card {
    padding: 1.5rem;
  }
  .contact-form-container {
    padding: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */