:root {
  /* Brand colors */
  --orange:          #FF6B00;
  --pink:            #FF1F7D;
  --gradient:        linear-gradient(135deg, #FF6B00, #e130fc);
  --gradient-soft:   linear-gradient(135deg, rgba(255,107,0,0.12), rgba(255,31,125,0.12));

  /* Background shades */
  --bg-primary:      #0a0a0a;   /* near-black main background */
  --bg-secondary:    #111111;   /* slightly lighter bg for sections */
  --bg-card:         #1a1a1a;   /* card / panel background */
  --bg-card-hover:   #222222;

  /* Text colors */
  --text-primary:    #ffffff;
  --text-secondary:  #aaaaaa;
  --text-muted:      #555555;

  /* Borders */
  --border:          rgba(255, 255, 255, 0.08);

  /* Spacing & shape */
  --radius:          16px;
  --radius-sm:       10px;
  --nav-height:      64px;

  /* Transition shorthand */
  --transition:      all 0.3s ease;
}


/* -------------------------------------------------------------
RESET & BASE STYLES
   Remove browser default margins/padding, set box-sizing.
   ------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;   /* smooth scroll when jumping to anchors */
}

body {
  font-family: 'Poppins','sans-serif';   /* 

body text font */
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;   /* prevent horizontal scroll */
}

/* Remove default link underline and inherit color */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove default list bullets */
ul {
  list-style: none;
}

/* Make images responsive by default */

img {
  max-width: 100%;
  display: block;
}

/* Inherit font in buttons */
button {
  cursor: pointer;
  font-family: inherit;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: var(--gradient);
  border-radius: 4px;
}

/* -------------------------------------------------------------
  UTILITY CLASSES
   Small reusable helpers applied to multiple elements.
   ------------------------------------------------------------- */

/* Max-width wrapper that centers content */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Orange-to-pink gradient applied to text */

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Center-align a section header block */
.center { text-align: center; }

/* Section header spacing */
.section-header { margin-bottom: 50px; }
.section-title {
  font-family: 'Poppins', 'sans-serif';
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.section-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
   font-weight: 400;
}

/* Gradient icon badge (orange-to-pink square with rounded corners) */
.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;   /* prevents shrinking in flex layouts */
}


/* -------------------------------------------------------------
  BUTTONS

   .btn          = base button style
   .btn-primary  = orange gradient fill
   .btn-ghost    = dark background with white border
   .btn-dark     = solid dark background (used on gradient CTA banner)
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;        /* pill shape */
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 107, 0, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);

  background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  background: #111;
  color: #fff;
  border: none;
}
.btn-dark:hover {
  background: #222;
  transform: translateY(-2px);
}


/* -------------------------------------------------------------
  NAVBAR
   Fixed at the top of the screen. Uses backdrop-filter for
   a frosted-glass blur effect.
    ------------------------------------------------------------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);         /* blurs content behind */
  -webkit-backdrop-filter: blur(20px); /* Safari prefix */
  border-bottom: 1px solid var(--border);
  z-index: 1000;   /* stay on top of everything */
  transition: background 0.3s;
}

/* Flex row: logo on left, links on right */

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo: icon badge + text side by side */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-badge {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;

  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
}

.logo-name {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

/* Nav links: horizontal list */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

/* Active and hover states */
.nav-link:hover,
.nav-link.active {
  color: var(--orange);
}

/* Hamburger button — 3 stacked bars. Hidden on desktop. */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;

  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}


.page {
  display: none;
  padding-top: var(--nav-height);   /* push content below fixed navbar */
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* Shared page hero banner at the top of interior pages */
.page-hero {
  display: flex;
  text-align: center;
  padding: 80px 32px 60px;
  position: relative;
}


/* Decorative divider line below hero */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}


.page-hero p {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
  max-width: 520px;
  margin: 0 auto;
}


/* -------------------------------------------------------------
   HOME PAGE — HERO SECTION
   Full-viewport height with gradient background blob effects.
   ------------------------------------------------------------- */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display:flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 32px;
  position: relative;
  overflow: hidden;

  /* Dark warm gradient background matching the screenshots */
  background: radial-gradient(ellipse 80% 70% at 50% 40%, rgba(120, 20, 10, 0.9) 0%, rgba(60, 5, 5, 0.7) 50%, var(--bg-primary) 100%);
}

/* Decorative floating blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.15), transparent 70%);
  top: -10%;
  left: -10%;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 31, 125, 0.12), transparent 70%);
  bottom: -10%;
  right: -5%;
}


/* Hero content sits on top of blobs (z-index) */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

/* Small pill badge: "Digital Art, Photography & Graphic Design Studio" */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge svg {
    width: 28px;
    height: 28px;
  color: var(--orange);
}

/* Giant headline */
.hero-title {
  font-family: 'Poppins', sans-serif;
 font-size: 6rem;
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* Two CTA buttons side by side */
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* -------------------------------------------------------------
  HOME PAGE — FEATURED WORK SECTION
   ------------------------------------------------------------- */

.featured-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

/* 3-column grid of project cards */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* Each card is a relative container so overlay can be absolute inside it */
.feat-card {
  border-radius: var(--radius);
  overflow: hidden;            /* clips the image and overlay to the rounded corners */
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* The actual image fills the card */
.feat-img {
  width: 100%;
  height: 320px;
  object-fit: cover;           /* crops image to fill without distorting */
  display: block;
  transition: transform 0.4s ease;
}

.feat-card:hover .feat-img {
  transform: scale(1.05);      /* subtle zoom on hover */

}

/* Dark gradient overlay slides up on hover to reveal text */
.feat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

/* Small colored category label */
.feat-category {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 4px;
}

.feat-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

/* "View All Projects →" centered link */
.view-all-wrap {
  text-align: center;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}

.view-all-link:hover { gap: 10px; }


/* -------------------------------------------------------------
   HOME PAGE — WHY CHOOSE US SECTION
   ------------------------------------------------------------- */

.why-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* 3-column grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Individual card */
.why-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient wash on hover */
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover::before { opacity: 1; }

.why-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-4px);
}

.why-card .icon-badge {
  margin-bottom: 20px;
  position: relative;  /* above the ::before overlay */
  z-index: 1;
}

.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}


/*HOME PAGE — GRADIENT CTA BANNER
   Full orange-to-pink background strip. */
.cta-banner {
  padding: 80px 32px;
  text-align: center;
  background: var(--gradient);
}

.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  font-size: 1rem;
  font-weight: 400;
}


/* PORTFOLIO PAGE */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 40px;
  padding-bottom: 0;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
}

.filter-btn:hover:not(.active) {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}

/* 3-column grid of portfolio cards */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 40px;
  padding-bottom: 80px;
}

/* Portfolio card: image + info below */

.port-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.port-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 107, 0, 0.25);
}

/* Wrapper so overlay can be positioned inside */
.port-img-wrap {
  position: relative;
  overflow: hidden;
}


/* The project image */
.port-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.port-card:hover .port-img { transform: scale(1.05); }

/* Hover overlay on portfolio cards */
.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;

  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.port-card:hover .port-overlay { opacity: 1; }

.port-overlay span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card info below the image */
.port-info { padding: 16px; }

.port-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.port-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* -------------------------------------------------------------
   12. SERVICES PAGE
   ------------------------------------------------------------- */

/* 3-column then 2-column grid for 6 service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 60px 32px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-4px);
}

.service-card .icon-badge {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.service-card .icon-badge svg{
    width: 28px;
    height: 28px;
}

.service-card h3 {

  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.service-card > p {
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

/* List of features inside each card */
.svc-list {
  position: relative;
  z-index: 1;
}


.svc-list li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

/* Orange dot bullet using ::before pseudo-element */
.svc-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}


/* -------------------------------------------------------------
   13. SERVICES — PROCESS SECTION
   5-step horizontal layout with big gradient numbers.
   ------------------------------------------------------------- */
.process-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
  position: relative;
}

/* Connecting line behind the numbers */
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
}

.process-step { text-align: center; }

/* Big gradient number like "01", "02"... */
.process-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  display: block;
  margin-bottom: 8px;
}

.process-step h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Services CTA section */
.cta-section {
  padding: 90px 0;
  background: var(--bg-primary);
  position: relative;
}

/* Radial glow behind cta-section */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,107,0,0.07), transparent);
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}


.cta-section p {
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 32px;
}


/* -------------------------------------------------------------
   14. ABOUT PAGE
   ------------------------------------------------------------- */

/* Two-column story: text left, image right */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.story-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.story-text p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Image container — gives the story 

image rounded corners */
.story-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 300px;
}

/* Values section */
.values-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}


/* 4-column grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.25);
}


.value-card .icon-badge {
  margin: 0 auto 16px;
  width: 52px;
  height: 52px;
}

.value-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p { 
  font-size: 0.78rem; 
  font-weight: 400;
  color: var(--text-secondary); 
}

/* Stats section — 4 big numbers */
.stats-section {
  padding: 80px 0;
  background: var(--bg-primary);

}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}


/* Team section */
.team-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

/* Single centered card */
.team-placeholder {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 60px 40px;
  border: 1px solid var(--border);
  text-align: center;
}

.team-icon {
  display: block;
  margin: 0 auto 16px;
}

.team-placeholder h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.team-placeholder p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 400;
  max-width: 420px;
  margin: 0 auto 28px;
}


/* -------------------------------------------------------------

   15. CONTACT PAGE
   ------------------------------------------------------------- */

/* Two-column layout: form left, info right */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-wrap h2,
.contact-info-wrap h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
}

/* Two inputs side-by-side inside the form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }

/* Label above each input */
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

/* Shared styles for <input> and <textarea> */
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

/* Placeholder text color */

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* Glow on focus (when user clicks into the field) */
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12);
}

/* Allow textarea to be resized vertically only */
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* Full-width submit button */
.btn-submit {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--gradient);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.35);
}


/* Contact info cards */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.info-card:hover { border-color: rgba(255, 107, 0, 0.25); }

.info-card .icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}

.info-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.info-card p {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-secondary);
}

/* "Start Your Project" promo box */
.project-promo-box {
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,31,125,0.1));
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius);
  padding: 28px;
}

.project-promo-box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-promo-box p {
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 18px;
}


/* Promo bullet list */
.promo-list li {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

/*FOOTER*/
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

/* 3-column grid: brand info, quick links, social */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding: 60px 32px 40px;
  max-width: 1200px;
  margin: 0 auto;

}

.footer-brand .logo { margin-bottom: 12px; }

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--orange); }

/* Social icon grid — wraps to multiple rows with 8 icons */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Individual icon button */
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* Bottom copyright bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 32px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}



@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeUp 0.6s ease both;
}

/* Stagger children animations */
.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.2s; }
.animate-in:nth-child(4) { animation-delay: 

0.3s; }
.animate-in:nth-child(5) { animation-delay: 0.4s; }
.animate-in:nth-child(6) { animation-delay: 0.5s; }


/*RESPONSIVE — TABLET (max-width: 1024px) */
@media (max-width: 1024px) {

  .featured-grid      { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid     { grid-template-columns: repeat(2, 1fr); }

  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .why-grid           { grid-template-columns: repeat(2, 1fr); }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .process-steps      { grid-template-columns: repeat(3, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; }

}


/* RESPONSIVE — MOBILE (max-width: 768px)*/
@media (max-width: 768px) {

  /* Hide desktop nav links, show hamburger */
  .nav-links           { display: none; }
  .hamburger           { display: flex; }

  /* Mobile nav menu (shown when .open is added by JS) */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }

  /* Single column layouts on mobile */
  .featured-grid      { grid-template-columns: 1fr; }
  .portfolio-grid     { grid-template-columns: 1fr; }
  .services-grid      { grid-template-columns: 1fr; padding: 40px 24px; }
  .why-grid           { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .process-steps      { grid-template-columns: repeat(2, 1fr); }
  .story-section      { grid-template-columns: 

1fr; }
  .contact-layout     { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; gap: 32px; }

  /* Reduce padding on mobile */
  .container          { padding: 0 20px; }
  .page-hero          { padding: 60px 20px 40px; }

}


.loading-placeholder {
  grid-column: 1 / -1;   /* span all columns */
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1;   }
}

#formMessage {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 500;
  display: none;       /* hidden by default; JS sets display:block */
  line-height: 1.5;
}

/* Green: shown when message is sent successfully */
.form-message--success {
  background: rgba(34, 197, 94, 0.1);
  border-color: #22c55e !important;
  color: #22c55e !important;
}

/* Red/pink: shown when there's a validation error */
.form-message--error {
  background: rgba(255, 31, 125, 0.08);
  border-color: #FF1F7D !important;
  color: #FF1F7D !important;
}
