* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f2f2f2;
  color: #111;
}

/* ================= HEADER ================= */

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
}

.brand {
  font-size: 22px;
  font-weight: 600;
}

.menu-button {
  background: #e9e9e9;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-line {
  width: 18px;
  height: 2px;
  background: #111;
  display: inline-block;
}

/* ================= HERO SECTION ================= */

.hero-section {
  height: 50vh;
  position: relative;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
}

/* Image Position */
.hero-image {
  position: absolute;
  right: 120px;
  top: 200px;
}

.hero-image img {
  width: 70px;
  height: auto;
}
/* Bottom info */

.footer-info {
  position: absolute;
  bottom: 30px;
  left: 60px;
  right: 60px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
}
.image-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== SCROLL TO TOP BUTTON ===== */

.scroll-top {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #ffffff;
  color: #000;
  text-decoration: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.scroll-top:hover {
  transform: translateY(-3px);
}
.service-section {
  padding: 70px 100px;
}

/* Top Label */

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
  margin-bottom: 50px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ff5a1f;
  border-radius: 50%;
}

/* Row Layout */

.service-row {
  display: grid;
  grid-template-columns: 100px 1fr 450px;
  align-items: start;
  gap: 40px;
}

/* Number */

.service-number {
  font-size: 18px;
  margin-top: 20px;
}

/* Center Content */

.service-content {
  text-align: left;
}

.service-title {
  font-size: 80px;
  font-weight: 900;
  margin-bottom: 30px;
}

.service-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  max-width: 520px;
  margin-bottom: 30px;
}

/* Button */

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff5a1f;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 40px;
  transition: 0.3s ease;
}

.service-btn:hover {
  transform: translateY(-3px);
}

/* Tags */

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.service-tags span {
  padding: 10px 18px;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 13px;
}

/* Right Image */

.service-image {
  display: flex;
  justify-content: flex-end;
}

.service-image img {
  width: 100%;
  max-width: 420px;
  background: #f7c600;
  padding: 20px;
}
/* SECTION */

.design-block {
  padding: 80px 120px;
}

/* GRID */

.design-grid {
  display: grid;
  grid-template-columns: 100px 1fr 500px;
  gap: 60px;
  align-items: start;
}

/* NUMBER */

.design-count {
  font-size: 20px;
  margin-top: 20px;
}

/* CONTENT */

.design-content {
  max-width: 650px;
}

.design-heading {
  font-size: 90px;
  font-weight: 900;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.design-description {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 35px;
  max-width: 520px;
}

/* BUTTON */

.design-button {
  display: inline-flex;
  align-items: center;
  background: #ff5a1f;
  color: #fff;
  padding: 12px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  gap: 15px;
  margin-bottom: 45px;
  transition: 0.3s ease;
}

.design-button:hover {
  transform: translateY(-3px);
}

.design-arrow {
  width: 30px;
  height: 30px;
  background: #ff5a1f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 2px solid #fff;
}

/* TAGS */

.design-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 600px;
}

.design-tags span {
  padding: 10px 20px;
  border: 1px solid #d0d0d0;
  border-radius: 25px;
  font-size: 13px;
  color: #333;
  background: #f7f7f7;
}

/* IMAGE */

.design-visual {
  display: flex;
  justify-content: flex-end;
}

.design-visual img {
  width: 100%;
  max-width: 480px;
  height: auto;
  background: #f4a200;
}
.dev-section {
  padding: 90px 120px;
}

/* GRID */

.dev-grid {
  display: grid;
  grid-template-columns: 100px 1fr 520px;
  gap: 70px;
  align-items: start;
}

/* NUMBER */

.dev-count {
  font-size: 20px;
  margin-top: 18px;
}

/* CONTENT */

.dev-content {
  max-width: 650px;
}

.dev-title {
  font-size: 90px;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 30px;
}

.dev-text {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  max-width: 540px;
  margin-bottom: 35px;
}

/* BUTTON */

.dev-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ff5a1f;
  color: #fff;
  padding: 14px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 45px;
  transition: 0.3s ease;
}

.dev-btn:hover {
  transform: translateY(-3px);
}

.dev-arrow {
  width: 28px;
  height: 28px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* TAGS */

.dev-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 580px;
}

.dev-tags span {
  padding: 10px 20px;
  border: 1px solid #d2d2d2;
  border-radius: 25px;
  font-size: 13px;
  background: #f7f7f7;
}

/* IMAGE */

.dev-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.dev-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  background: #0fb9b1;
}

/* SCROLL BUTTON */

.scroll-btn {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.brand-section {
  padding: 90px 120px;
}

/* GRID */

.brand-grid {
  display: grid;
  grid-template-columns: 100px 1fr 520px;
  gap: 70px;
  align-items: start;
}

/* NUMBER */

.brand-count {
  font-size: 20px;
  margin-top: 18px;
}

/* CONTENT */

.brand-content {
  max-width: 650px;
}

.brand-title {
  font-size: 90px;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 30px;
}

.brand-text {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  max-width: 540px;
  margin-bottom: 35px;
}

/* BUTTON */

.brand-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ff5a1f;
  color: #fff;
  padding: 14px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 45px;
  transition: 0.3s ease;
}

.brand-btn:hover {
  transform: translateY(-3px);
}

.brand-arrow {
  width: 28px;
  height: 28px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* TAGS */

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 580px;
}

.brand-tags span {
  padding: 10px 20px;
  border: 1px solid #d2d2d2;
  border-radius: 25px;
  font-size: 13px;
  background: #f7f7f7;
}

/* IMAGE */

.brand-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.brand-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
 .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 10px;
    padding: 10px;
  }

  .grid-item {
    overflow: hidden;
    position: relative;
  }

  .grid-item img,
  .grid-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .grid-container {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto;
    }
  }

  @media (max-width: 600px) {
    .grid-container {
      grid-template-columns: 1fr;
    }
  }
.section {
  padding: 100px 8%;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

/* LEFT SIDE */
.left {
  flex: 1;
}

.small-title {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.small-title::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ff5722;
  border-radius: 50%;
}

.big-title {
  font-size: 90px;
  font-weight: 900;
  line-height: 0.95;
}

/* RIGHT SIDE */
.right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.card {
  background: #e9e9e9;
  padding: 60px 50px;
  position: relative;
}

.step {
  width: 70px;
  height: 70px;
  background: #ff5722;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40px;
  left: 40px;
}

.card-content {
  margin-top: 60px;
}

.card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 15px;
}

.card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  max-width: 400px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .big-title {
    font-size: 65px;
  }
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }

  .big-title {
    font-size: 55px;
  }

  .right {
    width: 100%;
  }
}
.section{
    padding: 100px 8%;
}

.processcontainer{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}
.process-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.process-card {
  background: #e9e9e9;
  padding: 60px 50px;
  position: relative;
}

.process-number {
  width: 70px;
  height: 70px;
  background: #ff5722;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40px;
  left: 40px;
}

.process-content {
  margin-top: 60px;
}

.process-content h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 15px;
}

.process-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  max-width: 400px;
}



/* Main Wrapper */
.layout-root {
  max-width: 1400px;
  margin: auto;
  padding: 80px 60px 40px;
}

/* Top Grid */
.layout-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Hero Text */
.hero-copy h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 40px;
}

/* Social Row */
.social-row {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #dcdcdc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

/* Side Columns */
.nav-block,
.info-block {
  max-width: 300px;
}

/* Head Labels */
.block-label {
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
}

.block-label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ff4d2e;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* Link Chips */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: #dedede;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
}

/* Contact Details */
.info-text p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

/* Large Brand */
.brand-mark {
  font-size: 220px;
  font-weight: 900;
  margin-top: 100px;
  letter-spacing: -5px;
}

/* Bottom Footer */
.footer-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 13px;
  color: #333;
}

.footer-links-row {
  display: flex;
  gap: 30px;
}

/* Floating Button */
.float-up {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}