	body {
  font-family: "Arial", serif;
  line-height: 1.6;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #000 0%, #333 50%, #000 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.1"/><circle cx="20" cy="20" r="0.3" fill="white" opacity="0.05"/><circle cx="80" cy="30" r="0.4" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>')
    repeat;
  opacity: 0.3;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 8rem;
  font-weight: 900;
  letter-spacing: -8px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  opacity: 0;
  animation: heroSlide 2s ease-out 0.5s forwards;
  background: linear-gradient(45deg, #fff, #ccc, #fff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 3rem;
  opacity: 0;
  animation: heroSlide 2s ease-out 0.8s forwards;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 1.3rem;
  line-height: 2;
  max-width: 800px;
  margin: 0 auto 4rem;
  opacity: 0;
  animation: heroSlide 2s ease-out 1.1s forwards;
}

.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.float-1 {
  width: 200px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.float-2 {
  width: 150px;
  height: 200px;
  top: 60%;
  right: 8%;
  animation: float 8s ease-in-out infinite reverse;
}

.float-3 {
  width: 100px;
  height: 150px;
  bottom: 15%;
  left: 15%;
  animation: float 7s ease-in-out infinite;
}
.company-intro {
  padding: 12rem 0;
  background: #fff;
  position: relative;
}

.intro-header {
  text-align: center;
  margin-bottom: 8rem;
}

.intro-header h2 {
  font-size: 5rem;
  font-weight: 100;
  letter-spacing: -3px;
  margin-bottom: 3rem;
  position: relative;
}

.intro-header h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: #000;
}

.intro-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  margin-bottom: 8rem;
}

.intro-text {
  flex: 1;
  min-width: 400px;
}

.intro-text h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.intro-text p {
  font-size: 16px;
  line-height: 2.2;
  margin-bottom: 10px;
  text-align: justify;
}

.intro-visual {
  flex: 1;
  min-width: 300px;
  height: 500px;
  background: linear-gradient(45deg, #f8f8f8, #e8e8e8);
  position: relative;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
}
.intro-visual img {
  height: 100%;
}
/* Statistics Section */
.stats {
  background: #000;
  color: #fff;
  padding: 8rem 0;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
  min-width: 200px;
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #fff;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services {
  padding: 12rem 0;
  background: #f9f9f9;
}

.services-header {
  text-align: center;
  margin-bottom: 10rem;
}

.services-header h2 {
  font-size: 5rem;
  font-weight: 100;
  margin-bottom: 3rem;
  letter-spacing: -2px;
}

.services-subtitle {
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  font-style: italic;
}

.service-showcase {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.service-item {
  display: flex;
  align-items: stretch;
  gap: 6rem;
  min-height: 600px;
}

.service-item:nth-child(even) {
  flex-direction: row-reverse;
}

.service-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  background: #fff;
  border: 1px solid #ddd;
  transition: all 0.4s ease;
}

.service-content:hover {
  background: #000;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-content h3 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.service-content .service-description {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 3rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.service-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.service-visual {
  flex: 1;
  background: linear-gradient(135deg, #e8e8e8, #f8f8f8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
  position: relative;
  overflow: hidden;
}
.service-visual img {
  height: 100%;
}

/* Portfolio Gallery */
.portfolio {
  padding: 12rem 0;
  background: #fff;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 10rem;
}

.portfolio-header h2 {
  font-size: 5rem;
  font-weight: 100;
  margin-bottom: 3rem;
  letter-spacing: -2px;
}

.portfolio-gallery {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

.portfolio-item {
  display: flex;
  align-items: center;
  gap: 8rem;
  min-height: 500px;
}

.portfolio-item:nth-child(even) {
  flex-direction: row-reverse;
}

.portfolio-info {
  flex: 1;
  padding: 3rem;
}

.portfolio-info h3 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.portfolio-info .project-details {
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 2rem;
  color: #666;
}

.portfolio-info .project-description {
  font-size: 1.3rem;
  line-height: 2;
  text-align: justify;
}

.portfolio-image {
  flex: 1.2;
  height: 500px;
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #888;
  font-style: italic;
  position: relative;
  overflow: hidden;
}

.portfolio-image::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border: 3px solid #bbb;
  opacity: 0.7;
}

/* Process Timeline */
.process {
  padding: 12rem 0;
  background: #000;
  color: #fff;
}

.process-header {
  text-align: center;
  margin-bottom: 10rem;
}

.process-header h2 {
  font-size: 5rem;
  font-weight: 100;
  margin-bottom: 3rem;
  letter-spacing: -2px;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 8rem;
}

.timeline-content {
  background: #111;
  border: 1px solid #333;
  padding: 4rem;
  width: 45%;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: 55%;
  text-align: right;
}

.timeline-number {
  position: absolute;
  left: 50%;
  top: 2rem;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.timeline-content h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.timeline-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.timeline-details {
  font-size: 1rem;
  opacity: 0.8;
  font-style: italic;
}

/* Testimonials */
.testimonials {
  padding: 12rem 0;
  background: #f9f9f9;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 10rem;
}

.testimonials-header h2 {
  font-size: 5rem;
  font-weight: 100;
  margin-bottom: 3rem;
  letter-spacing: -2px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
}

.testimonial-item {
  background: #fff;
  padding: 4rem;
  max-width: 400px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  font-size: 1.3rem;
  line-height: 2;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.testimonial-role {
  font-size: 1rem;
  color: #666;
}

/* Contact Section */
.contact {
  padding: 12rem 0;
  background: #000;
  color: #fff;
}

.contact-content {
  display: flex;
  gap: 8rem;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 4rem;
  font-weight: 100;
  margin-bottom: 4rem;
  letter-spacing: -2px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-item {
  padding: 2rem;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.contact-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.contact-item p {
  font-size: 1.2rem;
  line-height: 1.8;
}

.contact-visual {
  flex: 1;
  height: 600px;
  background: linear-gradient(135deg, #333, #111);
  border: 1px solid #555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #888;
  font-style: italic;
}
.cta-enhanced {
  padding: 150px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: white;
  text-align: center;
  position: relative;
}

.cta-visual-bg {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite alternate;
}

.cta-visual-bg:nth-child(2) {
  top: 60%;
  right: 15%;
  left: auto;
  width: 150px;
  height: 150px;
  animation-delay: 3s;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-enhanced h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.cta-description {
  font-size: 1.4rem;
  opacity: 0.8;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button-primary {
  display: inline-block;
  padding: 1.5rem 4rem;
  background: white;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(-1deg);
}

.cta-button-primary:hover {
  transform: rotate(-1deg) translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-button-secondary {
  display: inline-block;
  padding: 1.5rem 4rem;
  background: transparent;
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  border: 2px solid white;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(1deg);
}

.cta-button-secondary:hover {
  background: white;
  color: #1a1a1a;
  transform: rotate(1deg) translateY(-5px);
}
.process-detailed {
  padding: 150px 0;
  background: #fafafa;
}

.process-header {
  text-align: center;
  margin-bottom: 8rem;
}

.process-header h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.process-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step-detailed {
  display: flex;
  align-items: center;
  margin-bottom: 8rem;
  position: relative;
  justify-content: space-between;
}

.process-step-detailed:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.process-visual-detailed {
  width: 300px;
  height: 250px;
  position: relative;
  margin: 0 4rem;
}

.process-bg-shape {
  position: absolute;
  border-radius: 20px;
}

.process-bg-shape:nth-child(1) {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  transform: rotate(5deg);
}

.process-bg-shape:nth-child(2) {
  width: 80%;
  height: 80%;
  background: #f8f8f8;
  transform: rotate(-8deg);
  top: 10%;
  left: 10%;
}

.process-content-detailed {
  flex: 1;
  max-width: 500px;
}

.process-step-number {
  font-size: 6rem;
  font-weight: 900;
  opacity: 0.15;
  position: absolute;
  top: -3rem;
  left: -3rem;
}

.process-step-detailed:nth-child(even) .process-step-number {
  right: -3rem;
  left: auto;
}

.process-step-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.process-step-desc {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  line-height: 1.6;
}

.process-details {
  margin-top: 2rem;
}

.process-detail-item {
  margin-bottom: 1rem;
  font-size: 1rem;
  opacity: 0.7;
  padding-left: 1.5rem;
  position: relative;
}

.process-detail-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: #1a1a1a;
  border-radius: 50%;
}
/* Animations */
@keyframes heroSlide {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 5rem;
    letter-spacing: -4px;
  }

  .intro-content,
  .service-item,
  .portfolio-item,
  .contact-content {
    flex-direction: column;
    gap: 3rem;
  }

  .service-item:nth-child(even),
  .portfolio-item:nth-child(even) {
    flex-direction: column;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
    text-align: left !important;
  }

  .timeline-number {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
    letter-spacing: -2px;
  }

  .hero-tagline {
    font-size: 1.8rem;
  }

  .intro-header h2,
  .services-header h2,
  .portfolio-header h2,
  .process-header h2,
  .testimonials-header h2 {
    font-size: 3rem;
  }

  .intro-text,
  .service-content,
  .portfolio-info {
    min-width: auto;
    padding: 2rem;
  }

  .service-visual,
  .portfolio-image,
  .contact-visual {
    height: 300px;
  }

  .floating-element {
    display: none;
  }

  .stats-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .process-step-detailed,
  .process-step-detailed:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .process-visual-detailed {
    margin: 2rem 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.4rem;
  }

  .service-content,
  .portfolio-info,
  .testimonial-item {
    padding: 1.5rem;
  }

  .timeline-content {
    padding: 2rem;
  }
}

