* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f1f1f1;
  color: #000;
}

/* Header */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
}

.logo {
  font-size: 24px;
  font-weight: 600;
}

.logo-icon {
  font-weight: 900;
}

.menu {
  font-size: 14px;
  letter-spacing: 1px;
}

/* Hero Section */
.services-hero {
  height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Top small texts */
.top-left,
.top-center,
.top-right {
  position: absolute;
  top: 120px;
  font-size: 14px;
  font-weight: 600;
}

.top-left {
  left: 80px;
}

.top-center {
  text-align: center;
}

.top-right {
  right: 80px;
}

/* Big SERVICE text */
.big-title {
  font-size: 20vw;
  font-weight: 900;
  color: #ff4148;
  letter-spacing: -5px;
}
/* SECTION WRAPPER */
.agency-showcase {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* IMAGE */
.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BOTTOM STRIP */
.showcase-strip {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #eaeaea;
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
}

.showcase-strip span {
  opacity: 0.8;
}

 .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding: 80px 100px;
    position: relative;
  }

  /* CENTER NUMBER */
  .big-number {
    position: absolute;
    top: 30%;
    left: 30%;
    transform: translate(-50%, -50%);
    font-size: 420px;
    font-weight: 700;
    color: #ff4d57;
    line-height: 0.9;
  }

  /* LEFT */
  .services-title {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 25px;
  }

  .services-list {
    list-style: none;
  }

  .services-list li {
    font-weight: 600;
    color: #ff4d4f;
    margin-bottom: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .services-list li:hover {
    transform: translateX(8px);
    opacity: 0.7;
  }

  /* RIGHT */
  .right {
    padding-left: 60px;
  }

  .section-label {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #777;
  }

  .description {
    font-size: 26px;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 60px;
  }

  .features {
    list-style: none;
  }

  .features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #ccc;
    font-size: 16px;
    transition: all 0.35s ease;
    cursor: pointer;
  }

  .features li:last-child {
    border-bottom: 1px solid #ccc;
  }

  .feature-left {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.35s ease;
  }

  .red-dot {
    width: 6px;
    height: 6px;
    background: #ff4d4f;
    border-radius: 50%;
    transition: all 0.35s ease;
  }

  .arrow {
    font-size: 14px;
    transition: transform 0.35s ease;
  }

  /* HOVER EFFECTS */
  .features li:hover {
    padding-left: 10px;
  }

  .features li:hover .arrow {
    transform: translate(4px, -4px);
  }

  .features li:hover .red-dot {
    transform: scale(1.6);
  }

  /* RESPONSIVE */
  @media (max-width: 1000px) {
    .container {
      grid-template-columns: 1fr;
      padding: 60px 40px;
    }

    .right {
      padding-left: 0;
      margin-top: 60px;
    }

    .big-number {
      font-size: 200px;
    }
  }
  /* MAIN WRAPPER */
.work-section{
  display:grid;
  grid-template-columns: 250px 1fr 1fr;
  gap:40px;
  padding:60px;
  align-items:start;
}

/* LEFT MENU */
.menu-block h4{
  font-size:14px;
  letter-spacing:1px;
  margin-bottom:25px;
}

.menu-block ul{
  list-style:none;
}

.menu-block li{
  margin-bottom:18px;
  font-weight:600;
  color:#ff4d57;
  cursor:pointer;
  transition:0.3s;
}

.menu-block li:hover{
  transform:translateX(6px);
}

/* IMAGE BOX */
.work-card{
  position:relative;
  overflow:hidden;
  border-radius:14px;
  background:#ddd;
  height:600px; /* reduced height */
  cursor:pointer;
  transition:0.4s ease;
}

.work-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

/* Hover Effect */
.work-card:hover img{
  transform:scale(1.08);
}

.work-card:hover{
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* Section Label */
.section-label{
  position:absolute;
  top:-35px;
  left:0;
  font-size:13px;
  font-weight:600;
  color:#777;
  letter-spacing:1px;
}

.image-container{
  position:relative;
}



/* MAIN LAYOUT */
.layout-wrapper{
  display:grid;
  grid-template-columns: 250px 400px 1fr;
  padding:80px 60px;
  gap:60px;
  align-items:start;
}

/* LEFT MENU */
.navigation-panel h5{
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:30px;
  color:#222;
}

.navigation-panel ul{
  list-style:none;
}

.navigation-panel li{
  margin-bottom:18px;
  font-weight:600;
  color:#ff4d57;
  cursor:pointer;
  transition:0.3s ease;
}

.navigation-panel li:hover{
  transform:translateX(8px);
}

/* BIG NUMBER */
.highlight-number{
  font-size:320px;
  font-weight:800;
  color:#ff4d57;
  line-height:0.9;
  transition:0.5s ease;
}

.highlight-number:hover{
  transform:scale(1.05);
}

/* RIGHT CONTENT */
.text-area small{
  font-size:12px;
  letter-spacing:1px;
  color:#777;
  display:block;
  margin-bottom:20px;
}

.text-area h2{
  font-size:24px;
  font-weight:500;
  line-height:1.6;
  color:#222;
  margin-bottom:30px;
}

.text-area p{
  font-size:20px;
  line-height:1.6;
  margin-bottom:40px;
  color:#222;
}

/* SERVICE LIST */
.feature-list{
  border-top:1px solid #ccc;
}

.feature-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
  border-bottom:1px solid #ddd;
  cursor:pointer;
  transition:0.3s ease;
}

.feature-row span{
  position:relative;
  padding-left:14px;
}

/* red dot */
.feature-row span::before{
  content:"";
  width:6px;
  height:6px;
  background:#ff4d57;
  border-radius:50%;
  position:absolute;
  left:0;
  top:9px;
}

.feature-row:hover{
  padding-left:10px;
  background:rgba(255,77,87,0.04);
}

.icon-arrow{
  font-size:14px;
  transition:0.3s;
}

.feature-row:hover .icon-arrow{
  transform:translateX(5px);
}
/* MAIN WRAPPER */
.portfolio-wrapper{
  display:grid;
  grid-template-columns: 250px 1fr 1fr;
  gap:50px;
  padding:80px 70px;
  align-items:start;
}

/* LEFT SERVICES */
.service-column h5{
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:30px;
}

.service-column ul{
  list-style:none;
}

.service-column li{
  margin-bottom:18px;
  font-weight:600;
  color:#ff4d57;
  cursor:pointer;
  transition:0.3s ease;
}

.service-column li:hover{
  transform:translateX(8px);
}

/* IMAGE SECTION */
.image-section{
  position:relative;
}

.section-caption{
  position:absolute;
  top:-30px;
  left:0;
  font-size:12px;
  letter-spacing:1px;
  color:#777;
}

/* IMAGE CARD */
.project-card{
  position:relative;
  overflow:hidden;
  border-radius:14px;
  cursor:pointer;
  height:520px;
  background:#ddd;
  transition:0.5s ease;
}

.project-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

/* Hover Effects */
.project-card:hover img{
  transform:scale(1.08);
}

.project-card:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 45px rgba(0,0,0,0.15);
}
/* MAIN LAYOUT */
.marketing-layout{
  display:grid;
  grid-template-columns: 250px 400px 1fr;
  padding:80px 70px;
  gap:60px;
  align-items:start;
}

/* LEFT SERVICES */
.services-menu h5{
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:30px;
  color:#222;
}

.services-menu ul{
  list-style:none;
}

.services-menu li{
  margin-bottom:18px;
  font-weight:600;
  color:#ff4d57;
  cursor:pointer;
  transition:0.3s ease;
}

.services-menu li:hover{
  transform:translateX(8px);
}

/* BIG NUMBER */
.section-number{
  font-size:320px;
  font-weight:800;
  color:#ff4d57;
  line-height:0.9;
}

/* RIGHT CONTENT */
.content-area small{
  font-size:12px;
  letter-spacing:1px;
  color:#777;
  display:block;
  margin-bottom:20px;
}

.content-area h2{
  font-size:26px;
  font-weight:500;
  line-height:1.6;
  margin-bottom:35px;
  color:#222;
}

.content-area p{
  font-size:22px;
  line-height:1.6;
  margin-bottom:50px;
  color:#222;
}

/* LIST SECTION */
.asset-list{
  border-top:1px solid #ccc;
}

.asset-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
  border-bottom:1px solid #ddd;
  cursor:pointer;
  transition:0.3s ease;
}

.asset-item span{
  position:relative;
  padding-left:16px;
}

/* red dot */
.asset-item span::before{
  content:"";
  width:6px;
  height:6px;
  background:#ff4d57;
  border-radius:50%;
  position:absolute;
  left:0;
  top:9px;
}

.asset-item:hover{
  padding-left:10px;
  background:rgba(255,77,87,0.04);
}

.asset-arrow{
  font-size:14px;
  transition:0.3s ease;
}

.asset-item:hover .asset-arrow{
  transform:translateX(6px);
}
/* MAIN WRAPPER */
.work-wrapper{
  display:grid;
  grid-template-columns: 250px 1fr 1fr;
  gap:50px;
  padding:80px 70px;
  align-items:start;
}

/* LEFT MENU */
.menu-side h5{
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:30px;
}

.menu-side ul{
  list-style:none;
}

.menu-side li{
  margin-bottom:18px;
  font-weight:600;
  color:#ff4d57;
  cursor:pointer;
  transition:0.3s ease;
}

.menu-side li:hover{
  transform:translateX(8px);
}

/* IMAGE BLOCK */
.image-block{
  position:relative;
}

.block-caption{
  position:absolute;
  top:-30px;
  left:0;
  font-size:12px;
  letter-spacing:1px;
  color:#777;
}

/* CARD STYLE */
.image-card{
  position:relative;
  overflow:hidden;
  border-radius:14px;
  height:560px;
  background:#ddd;
  cursor:pointer;
  transition:0.5s ease;
}

.image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

/* Hover Effect */
.image-card:hover img{
  transform:scale(1.08);
}

.image-card:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 60px rgba(0,0,0,0.15);
}
/* MAIN GRID */
.dev-section{
  display:grid;
  grid-template-columns: 250px 1fr 1.2fr;
  align-items:center;
  padding:90px 80px;
  gap:60px;
}

/* LEFT PANEL */
.left-panel h5{
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:30px;
  color:#111;
}

.left-panel ul{
  list-style:none;
}

.left-panel li{
  margin-bottom:18px;
  font-weight:600;
  color:#ff4d57;
  cursor:pointer;
  transition:0.3s ease;
}

.left-panel li:hover{
  transform:translateX(8px);
}

/* CENTER NUMBER */
.number-display{
  font-size:320px;
  font-weight:900;
  color:#ff4d57;
  line-height:0.8;
  text-align:center;
}

/* RIGHT TEXT AREA */
.right-panel small{
  font-size:12px;
  letter-spacing:1px;
  color:#777;
}

.right-panel h2{
  margin-top:20px;
  font-size:26px;
  font-weight:500;
  line-height:1.6;
  color:#222;
  max-width:620px;
}

/* SERVICE ITEMS */
.feature-list{
  margin-top:60px;
  border-top:1px solid #ddd;
}

.feature-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
  border-bottom:1px solid #ddd;
  font-size:16px;
  color:#333;
  cursor:pointer;
  transition:0.3s ease;
}

.feature-left{
  display:flex;
  align-items:center;
  gap:12px;
}

/* DOT */
.circle-dot{
  width:6px;
  height:6px;
  background:#ff4d57;
  border-radius:50%;
}

/* ARROW */
.link-arrow{
  font-size:18px;
  opacity:0.6;
  transition:0.3s ease;
}

.feature-item:hover{
  padding-left:10px;
}

.feature-item:hover .link-arrow{
  opacity:1;
  transform:translateX(4px);
}
/* Wrapper */
.wrap {
  display: flex;
  padding: 60px 80px;
  gap: 60px;
}

/* Left Panel */
.left {
  width: 220px;
}

.left h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.menu {
  list-style: none;
}

.menu li {
  margin-bottom: 18px;
  font-weight: bold;
  color: #ff3b3b;
  cursor: pointer;
  transition: 0.3s ease;
}

.menu li:hover {
  transform: translateX(5px);
}

/* Right Panel */
.right {
  flex: 1;
}

.label {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #777;
}

/* Images */
.grid {
  display: flex;
  gap: 30px;
}

.card {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .wrap {
    flex-direction: column;
  }

  .grid {
    flex-direction: column;
  }

  .left {
    width: 100%;
  }
}
/* Slider Section */
.text-slider {
  width:100%;
  overflow:hidden;
  white-space:nowrap;
  background:#f2f2f2;
  padding:40px 0;
  position:relative;
}

/* Moving Track */
.text-track {
  display:inline-block;
  white-space:nowrap;
  animation: scrollText 20s linear infinite;
}

/* Text Style */
.text-item {
  display:inline-block;
  font-size:160px;
  font-weight:800;
  color:rgba(0,0,0,0.06); /* faded look */
  margin-right:80px;
  letter-spacing:2px;
}

/* Animation */
@keyframes scrollText {
  from {
    transform:translateX(0);
  }
  to {
    transform:translateX(-50%);
  }
}
.wrapper{
  padding:80px 100px 40px 100px;
}
/* --- TOP GRID --- */
.top-area{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:100px;
}

/* Left Title */
.main-title{
  font-size:64px;
  font-weight:900;
  line-height:1.05;
  max-width:450px;
}

/* Quick Links & Contact */
.info-columns{
  display:flex;
  gap:120px;
}

.column h4{
  font-size:14px;
  font-weight:600;
  margin-bottom:20px;
  position:relative;
  padding-left:14px;
}

.column h4::before{
  content:"";
  width:6px;
  height:6px;
  background:#ff4d2d;
  border-radius:50%;
  position:absolute;
  left:0;
  top:6px;
}

/* Pills */
.pill-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  max-width:280px;
}

.pill{
  padding:10px 18px;
  background:#f3f3f3;
  border-radius:30px;
  font-size:13px;
  cursor:pointer;
  transition:0.3s;
}

.pill:hover{
  background:#111;
  color:#fff;
}

/* Contact */
.contact p{
  font-size:14px;
  margin-bottom:10px;
  color:#333;
}

/* --- HUGE BRAND TEXT --- */
.brand{
  font-size:180px;
  font-weight:900;
  line-height:1;
  letter-spacing:-3px;
  align-items: center;
}

/* Bottom Bar */
.bottom-bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:20px;
  font-size:14px;
  color:#444;
}

.bottom-links{
  display:flex;
  gap:40px;
}

/* Responsive */
@media(max-width:1200px){
  .brand{
    font-size:120px;
  }
}

@media(max-width:900px){
  .top-area{
    flex-direction:column;
    gap:60px;
  }

  .info-columns{
    gap:60px;
  }

  .brand{
    font-size:80px;
  }
}