
/* Base Styles and Variables */
:root {
  --dark-bg: #0D0D0D;
  --darker-bg: #000000;
  --light-text: #FFFFFF;
  --gray-text: #8F8F8F;

  /* Gradients exactly like screenshot */
  --nav-border-gradient: linear-gradient(90deg, #7A87FB, #FFD49C);
  --cta-gradient: linear-gradient(90deg, #7A87FB 0%, #FFD49C 100%);

  --nav-inner-color: #0E0E0E;

  --max-width: 1200px;
  --padding-sides: 32px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a{
  text-decoration: none;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-sides);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* ================== Header / Navigation ================== */

.header {
  background-color: var(--darker-bg);
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

/* Outer pill border */
.nav-container {
  background: var(--nav-border-gradient);
  padding: 2px;
  border-radius: 40px;
  transition: transform 0.3s ease;
}

.nav-container:hover {
  transform: scale(1.02);
}

/* Inner dark area */
.nav-inner-wrapper {
  background-color: var(--nav-inner-color);
  border-radius: 40px;
  padding: 8px 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.nav-links a:hover {
  color: var(--light-text);
  transform: translateY(-2px);
}

.nav-links li:first-child a {
  background: var(--cta-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  background: var(--cta-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* Right Buttons */
.nav-actions {
  display: flex;
  gap: 14px;
}

/* Hire me button */
.hire-me-nav {
  background: var(--cta-gradient);
  color: var(--dark-bg);
  padding: 8px 22px;
  border-radius: 10px;
  border: none;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hire-me-nav:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* User icon rounded gradient border */
.user-icon-nav {
  background: var(--nav-border-gradient);
  padding: 2px;
  border-radius: 50%;
  height: 38px;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.user-icon-nav:hover {
  transform: rotate(10deg);
}

.user-icon-nav i {
  background-color: var(--nav-border-gradient);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--dark-bg);
}

/* ================== Hero Section ================== */

.hero {
  padding-top: 120px;
  padding-bottom: 120px;
  text-align: center;
  height: 600px;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
  animation: slideUp 0.8s ease 0.2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero p {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 25px;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--cta-gradient);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-bg);
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}


.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-btn:hover::after {
  left: 100%;
}

/* ================== Tools / Tech Section ================== */

.tools-tech {
  padding: 20px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.tech-list {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px var(--padding-sides);
}

.tech-list span {
  color: var(--gray-text);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-list span:hover {
  color: var(--light-text);
  transform: translateY(-2px);
}

/* PROCESS SECTION */
.process {
  padding: 100px 120px;
}

.process h2 {
    margin-bottom: 60px;   
}

.process-step {
  display: flex;
  gap: 40px;
  position: relative;
  margin-bottom: 60px;
}

.process-step-end {
  display: flex;
  gap: 40px;
  position: relative;
}


/* Neon Gradient Outline Button */
.outline-button {
    display: inline-block;
    padding: 12px 26px;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
    background: transparent;
    color: #ffffff;

    border: 2px solid transparent;
    background-image:
        linear-gradient(#0D0D0D, #0D0D0D), /* inside bg */
        linear-gradient(90deg, #7A87FB, #FFD49C); /* border gradient */
    background-origin: border-box;
    background-clip: padding-box, border-box;

    transition: 0.3s ease;
}



.outline-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(122, 135, 251, 0.4),
                0 0 12px rgba(255, 212, 156, 0.3);
}


/* LEFT SIDE (number + vertical line) */
.left {
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.num-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #777;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.line {
  width: 2px;
  background: #444;
  flex-grow: 1;
}

.line.end {
  height: 0; /* last one no line */
}

/* RIGHT SIDE (icon + text) */
.right {
  padding-bottom: 20px;
  position: relative;
}

.step-icon {
  width: 55px;
  margin-bottom: 15px;
}

/* tighter spacing */
.right h3 {
    margin-top: 5px;
    margin-bottom: 12px;   
}

.right p {
    margin-bottom: 20px;    
}

/* Responsive */
@media (max-width: 768px) {
  .process-step {
    flex-direction: row;
  }

  .process {
    padding: 60px 30px;
  }
}

/* PROJECTS */
.projects {
  padding: 100px 120px;
}

.project-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.project-card {
  background: #141414;
  padding: 35px;
  border-radius: 24px;
  margin: 60px 0;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.project-card h3 {
   align-items: center;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(122, 135, 251, 0.3);
  box-shadow: 0 15px 40px rgba(122, 135, 251, 0.15);
}

.project-card img {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
  
}

.project-card:hover img {
  transform: scale(1.03);
}

.project-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 0.8rem;
  font-weight: normal;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.project-card:hover .project-number {
  background: var(--cta-gradient);
  transform: rotate(360deg);
}

.project-card h3 {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px;
  background: #0b0b0b;
}

.testimonials h2 {
  color: #fff;
  margin-bottom: 50px;
}


.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.testimonial-card {
  background: linear-gradient(180deg, #121212, #0e0e0e);
  padding: 26px;
  border-radius: 18px;
  color: #cfcfcf;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 212, 156, 0.35);
  box-shadow: 0 15px 35px rgba(255, 212, 156, 0.15);
}


.quote-icon {
  margin-left: auto;
  font-size: 34px;
  color: #FFD49C;
  opacity: 0.85;
}

blockquote {
  font-size: 14px;
  line-height: 1.7;
  color: #bcbcbc;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  background: #2b2b2b;
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info {
  display: flex;
  flex-direction: column;
}

.name {
  font-weight: 600;
  color: white;
  font-size: 14px;
  margin: 0;
}

.role {
  font-size: 12px;
  color: #9a9a9a;
}

.quote {
  margin-left: auto;
  font-size: 26px;
  color: #FFD49C;
  opacity: 0.8;
}


/* ===== CONTACT ===== */
/* CONTACT */
.contact {
  padding: 120px;
  width: 50%;
  text-align: left;      /* ← important */
}

.contact h2 {
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
}

.contact p {
  color: #9a9a9a;
  margin-bottom: 28px;
  line-height: 1.6;
}

.btn {
  background: linear-gradient(135deg, #FFD49C, #c18a4c);
  color: #0b0b0b;
  padding: 10px 26px;
  border-radius: 999px;  /* pill shape like image */
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}


/* ===== FOOTER ===== */
.footer {
  padding: 40px 120px;
  text-align: left;   /* ← matches image */
  color: #777;
  font-size: 13px;
}



/* ============ RESPONSIVE DESIGN ============= */

/* Tablet */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 60px;
    height: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .process,
  .projects,
  .testimonials,
  .contact {
    padding: 60px 30px;
  }

  .project-card {
    flex-direction: column;
    text-align: center;
  }

  .project-card img {
    width: 100%;
    height: auto;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .navbar nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .btn {
    width: 100%;
  }
}