* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Segoe UI', sans-serif;
}

body {
   background: black;
   color: #fff;
   line-height: 1.6;
}

section {
   padding: 80px 10%;
}

/* NAVBAR */
.navbar {
   position: fixed;
   top: 0;
   width: 100%;
   z-index: 1000;
   background: rgba(0, 0, 0, 0.85);
   backdrop-filter: blur(10px);
}

.nav-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 10%;
}

.logo img {
   height: 40px;
}
.logo span {
   height: 40px;
   font-size: larger;
   font-weight: bolder;
   font-family: 'Times New Roman', Times, serif;
}

.nav-links {
   list-style: none;
   display: flex;
   gap: 30px;
}

.nav-links a {
   color: #fff;
   text-decoration: none;
}

.nav-btn {
   border: 1px solid #00ffcc;
   padding: 8px 18px;
   border-radius: 20px;
   color: #00ffcc;
}

.menu-toggle {
   display: none;
   font-size: 1.8rem;
   cursor: pointer;
}

/* HERO */
.hero {
   height: 100vh;
   padding-top: 120px;
   display: flex;
   align-items: center;
   background: radial-gradient(circle at top, #1a1a1a, #013);
}

.hero h1 {
   font-size: 4rem;
}

.hero span {
   color: #00ffcc;
}

.badge {
   color: #00ffcc;
   letter-spacing: 1px;
}

.btn {
   display: inline-block;
   margin-top: 30px;
   padding: 14px 32px;
   background: #00ffcc;
   color: #000;
   border-radius: 30px;
   text-decoration: none;
   font-weight: bold;
}

/* GRIDS */
.service-grid,
.project-grid,
.metrics-grid {
   display: grid;
   gap: 30px;
}

.service-grid {
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.project-grid {
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* CARDS */
.service-card,
.project-card,
.metric-card {
   background: #111;
   padding: 30px;
   border-radius: 20px;
   transition: transform 0.3s;
}

.service-card:hover,
.project-card:hover {
   transform: translateY(-10px);
}

.project-link {
   display: inline-block;
   margin-top: 20px;
   border: 1px solid #00ffcc;
   padding: 8px 20px;
   border-radius: 25px;
   color: #00ffcc;
   text-decoration: none;
}

.metrics {
   background: #000;
   text-align: center;
}

.metric-card h3 {
   font-size: 3rem;
   color: #00ffcc;
}

/* WORK SHOWCASE */
.works {
   background: #0b0b0b;
   overflow: hidden;
}

.works-slider {
   display: flex;
   gap: 25px;
   margin-top: 40px;
   width: max-content;
   animation: scrollWorks 35s linear infinite;
}

.works-slider:hover {
   animation-play-state: paused;
}

@keyframes scrollWorks {
   from {
      transform: translateX(0);
   }

   to {
      transform: translateX(-50%);
   }
}

.work-card {
   width: 280px;
   height: 400px;
   position: relative;
   overflow: hidden;
   border-radius: 18px;
   flex-shrink: 0;
   background: #000;
}

.work-card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.4s ease;
}

.work-overlay {
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.75);
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   opacity: 0;
   transition: opacity 0.4s ease;
}

.work-overlay h3 {
   color: #fff;
   margin-bottom: 10px;
   font-size: 1rem;
}

.work-overlay a {
   padding: 8px 18px;
   background: #00ffcc;
   color: #000;
   font-size: 0.8rem;
   border-radius: 20px;
   text-decoration: none;
   font-weight: bold;
}

.work-card:hover img {
   transform: scale(1.1);
}

.work-card:hover .work-overlay {
   opacity: 1;
}

/* TESTIMONIALS */
.testimonials {
   background: #0e0e0e;
}

.testimonial-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.testimonial-card {
   background: linear-gradient(145deg, #111, #0a0a0a);
   padding: 35px;
   border-radius: 20px;
   border: 1px solid rgba(255, 255, 255, 0.05);
   transition: transform 0.3s ease;
}

.testimonial-card:hover {
   transform: translateY(-8px);
}

.testimonial-text {
   font-size: 1.05rem;
   line-height: 1.7;
   color: #eaeaea;
   margin-bottom: 25px;
   font-style: italic;
}

.testimonial-author {
   display: flex;
   flex-direction: column;
}

.testimonial-author .name {
   font-weight: bold;
   color: #00ffcc;
}

.testimonial-author .role {
   font-size: 0.85rem;
   color: #999;
}

.testimonial-note {
   margin-top: 40px;
   font-size: 0.85rem;
   color: #777;
   text-align: center;
}

/* CTA */
.cta {
   background: linear-gradient(135deg, #00ffcc, #0066ff);
   color: #000;
   text-align: center;
}

/* FOOTER */
footer {
   background: #000;
   padding: 30px;
   text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
   .menu-toggle {
      display: block;
   }

   .nav-links {
      position: absolute;
      top: 80px;
      right: 10%;
      background: #000;
      flex-direction: column;
      padding: 20px;
      border-radius: 15px;
      display: none;
   }

   .nav-links.active {
      display: flex;
   }
}