@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
  --navy:      #0d2b8e;
  --navy-dark: #081d6a;
  --navy-mid:  #1a3fa8;
  --cyan:      #00b4e6;
  --cyan-light:#4dd0f5;
  --cyan-pale: #e8f8fd;
  --white:     #ffffff;
  --off-white: #f4f8fc;
  --text:      #1a1a2e;
  --text-mid:  #3d4a6e;
  --text-muted:#7a8aaa;
  --border:    #dde6f5;
  --card-bg:   #ffffff;
  --gradient:  linear-gradient(135deg, #0d2b8e 0%, #00b4e6 100%);
  --gradient-r:linear-gradient(135deg, #00b4e6 0%, #0d2b8e 100%);
  --shadow-sm: 0 4px 20px rgba(13,43,142,0.08);
  --shadow-md: 0 12px 40px rgba(13,43,142,0.14);
  --shadow-lg: 0 24px 60px rgba(13,43,142,0.20);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,h2,h3,h4,h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── PIXEL DOTS UTILITY ─── */
.pixel-dots {
  position: absolute;
  width: 120px; height: 120px;
  background-image:
    radial-gradient(circle, rgba(0,180,230,0.35) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  border-radius: 4px;
}

/* ─── SECTION UTILITIES ─── */
section { padding: 90px 0; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px;
  background: var(--cyan-pale);
  border: 1px solid rgba(0,180,230,0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.section-title .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.85;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 6px 20px rgba(13,43,142,0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13,43,142,0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-3px);
}

.btn-white {
  background: white;
  color: var(--navy);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--cyan-pale);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: white;
  transition: all 0.4s;
}

header.scrolled {
  box-shadow: 0 2px 30px rgba(13,43,142,0.12);
}

.header-top-bar {
  background: var(--navy-dark);
  padding: 7px 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}

.header-top-bar a { color: var(--cyan-light); transition: color 0.2s; }
.header-top-bar a:hover { color: white; }
.header-top-item { display: flex; align-items: center; gap: 6px; }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex; align-items: center; gap: 12px;
}

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo-text { line-height: 1.1; }
.logo-text .t1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  display: block;
}
.logo-text .t1 span { color: var(--cyan); }
.logo-text .t2 {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
}

nav { display: flex; align-items: center; gap: 4px; }

nav a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}

nav a:hover, nav a.active {
  color: var(--navy);
  background: var(--cyan-pale);
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); transition: all 0.3s; border-radius: 2px;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 105px;
  background: var(--off-white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: var(--gradient);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--cyan);
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.05;
  color: var(--navy);
}

.hero-title .line2 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.85;
}

.hero-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* Slider nav dots */
.slide { display: none; animation: slideIn 0.7s ease; }
.slide.active { display: block; }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.slider-dots { display: flex; gap: 8px; margin-top: 56px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: all 0.3s; border: none;
}
.dot.active { width: 30px; border-radius: 4px; background: var(--navy); }

/* Hero Visual Side */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}

.hero-mockup {
  width: 420px; height: 420px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}

.hero-badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 14px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  animation: floatBadge 3s ease-in-out infinite;
}

.hero-badge:nth-of-type(1) { top: -20px; right: -20px; animation-delay: 0s; }
.hero-badge:nth-of-type(2) { bottom: 30px; left: -30px; animation-delay: 1s; }
.hero-badge:nth-of-type(3) { top: 140px; left: -40px; animation-delay: 2s; }

@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.badge-icon {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; background: var(--cyan-pale);
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,43,142,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,43,142,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--navy-dark);
  padding: 44px 0;
}

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}

.stat-item {
  text-align: center; padding: 16px 20px; position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 15%; height: 70%; width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--cyan-light);
  line-height: 1;
}

.stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin-top: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── MARQUEE ─── */
.marquee-section {
  overflow: hidden;
  padding: 22px 0;
  background: var(--cyan-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex; gap: 50px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  color: var(--text-mid); flex-shrink: 0;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.marquee-item .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── SERVICES ─── */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 56px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: all 0.4s; cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gradient);
  opacity: 0; transition: opacity 0.3s;
}

.service-card:hover {
  border-color: var(--cyan);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 70px; height: 70px; border-radius: 18px;
  background: var(--cyan-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin-bottom: 22px;
  transition: all 0.3s; position: relative; z-index: 1;
}

.service-card:hover .service-icon-wrap {
  background: var(--gradient);
  transform: scale(1.05);
}

.service-card-title {
  font-size: 1.35rem; margin-bottom: 12px;
  position: relative; z-index: 1;
}

.service-card-desc {
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.8;
  margin-bottom: 22px; position: relative; z-index: 1;
}

.service-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  position: relative; z-index: 1;
}

.stag {
  padding: 4px 12px;
  background: var(--cyan-pale);
  border: 1px solid rgba(0,180,230,0.2);
  border-radius: 50px;
  font-size: 0.75rem; color: var(--navy);
  font-weight: 500;
}

.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--cyan); font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem; letter-spacing: 0.04em;
  text-transform: uppercase; margin-top: 20px;
  transition: gap 0.2s; position: relative; z-index: 1;
}
.service-link:hover { gap: 12px; }

/* ─── WHY US ─── */
.why-section { background: white; }

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.why-visual {
  position: relative;
}

.why-main-img {
  width: 100%; border-radius: 24px;
  background: var(--gradient);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; position: relative; overflow: hidden;
}

.why-main-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.08), transparent);
}

.why-year-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: white;
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 2px solid var(--border);
}

.why-year {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem; font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.why-year-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.why-items { display: flex; flex-direction: column; gap: 22px; }

.why-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px;
  background: var(--off-white);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.why-item:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}

.why-item-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--cyan-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}

.why-item-title { font-size: 1rem; margin-bottom: 4px; font-weight: 700; }
.why-item-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; font-family: 'Exo 2', sans-serif; }

/* ─── PROCESS ─── */
.process-section { background: var(--navy-dark); color: white; }
.process-section h2 { color: white; }
.process-section .section-desc { color: rgba(255,255,255,0.6); }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 60px; position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(0,180,230,0.2));
  z-index: 0;
}

.step {
  text-align: center; padding: 0 16px; position: relative; z-index: 1;
}

.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem; font-weight: 700; color: white;
  margin: 0 auto 22px;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px rgba(0,180,230,0.15);
}

.step-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: white; margin-bottom: 10px;
}
.step-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ─── PORTFOLIO / GALLERY ─── */
.gallery-section { background: var(--off-white); }

.gallery-filter {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin: 44px 0 36px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600; font-size: 0.88rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  cursor: pointer; transition: all 0.25s;
  background: white; border: 1px solid var(--border);
  color: var(--text-mid);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--gradient);
  color: white; border-color: transparent;
  box-shadow: 0 4px 14px rgba(13,43,142,0.22);
}

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s;
  position: relative;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan);
}

.gallery-img {
  aspect-ratio: 4/3;
  background: var(--cyan-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
}

.gallery-img img {
  width: 100%; height: 100%; object-fit: cover;
}

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,43,142,0.85), transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 20px;
}

.gallery-card:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-text {
  color: white; font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 0.9rem;
}

.gallery-info { padding: 20px 22px; }
.gallery-cat {
  font-size: 0.75rem; color: var(--cyan);
  font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 6px;
}
.gallery-title { font-size: 1.05rem; color: var(--navy); }
.gallery-desc { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; }

/* Add Work Button */
.add-work-btn {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: unset; min-height: 200px;
  border: 2px dashed var(--cyan);
  border-radius: 16px;
  background: rgba(0,180,230,0.03);
  cursor: pointer; transition: all 0.3s;
  flex-direction: column; gap: 12px;
  color: var(--cyan); font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.add-work-btn:hover { background: var(--cyan-pale); transform: translateY(-4px); }

/* ─── REVIEWS ─── */
.reviews-section { background: white; }

.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}

.review-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 28px;
  transition: all 0.3s; position: relative;
}

.review-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.review-quote {
  font-size: 3.5rem; line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  font-family: 'Rajdhani', sans-serif;
}

.review-stars { display: flex; gap: 3px; margin-bottom: 14px; color: #f59e0b; }

.review-text {
  color: var(--text-mid); font-size: 0.93rem; line-height: 1.8;
  margin-bottom: 22px; font-style: italic;
}

.reviewer { display: flex; align-items: center; gap: 12px; }

.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 700; color: white;
  flex-shrink: 0;
}

.reviewer-name { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.reviewer-role { font-size: 0.78rem; color: var(--text-muted); }

/* ─── CONTACT ─── */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 56px; align-items: start; margin-top: 56px;
}

.contact-info-card {
  background: var(--gradient);
  border-radius: 24px;
  padding: 44px 36px;
  color: white;
  position: relative; overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.contact-info-card::after {
  content: '';
  position: absolute; bottom: -40px; left: -40px;
  width: 150px; height: 150px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.contact-info-card h3 {
  color: white; font-size: 1.8rem; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.contact-info-card p {
  color: rgba(255,255,255,0.7); margin-bottom: 36px;
  position: relative; z-index: 1; font-size: 0.92rem;
}

.ci-item {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 24px; position: relative; z-index: 1;
}

.ci-icon-box {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}

.ci-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; }
.ci-value { color: white; font-weight: 600; font-size: 0.92rem; margin-top: 2px; }

.contact-social { display: flex; gap: 10px; margin-top: 36px; position: relative; z-index: 1; }
.csoc-link {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: white; transition: all 0.3s;
}
.csoc-link:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

.contact-form-box {
  background: white;
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text-mid); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  outline: none; transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cyan);
  background: white;
  box-shadow: 0 0 0 3px rgba(0,180,230,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: white; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ─── SUBSCRIBE ─── */
.subscribe-section {
  background: var(--gradient);
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}

.subscribe-section::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.subscribe-section h2 { color: white; }
.subscribe-section p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 16px auto 36px; }

.subscribe-form {
  display: flex; gap: 12px; max-width: 480px; margin: 0 auto;
}

.subscribe-form input {
  flex: 1; padding: 14px 22px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  color: white; font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem; outline: none;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.6); }
.subscribe-form input:focus { background: rgba(255,255,255,0.22); }

.sub-success { color: rgba(255,255,255,0.9); margin-top: 18px; font-weight: 600; display: none; font-size: 1rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 36px;
}

.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 56px; margin-bottom: 56px;
}

.footer-logo-img { height: 52px; width: auto; object-fit: contain; margin-bottom: 16px; filter: brightness(0) invert(1); }

.footer-brand p {
  font-size: 0.88rem; line-height: 1.85; margin-bottom: 24px;
  color: rgba(255,255,255,0.55);
}

.f-social { display: flex; gap: 10px; }
.f-soc {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  transition: all 0.3s;
}
.f-soc:hover { background: var(--cyan); border-color: var(--cyan); color: white; }

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: white; margin-bottom: 22px;
  letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--cyan);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55); font-size: 0.88rem;
  transition: color 0.2s; display: flex; align-items: center; gap: 7px;
}
.footer-col ul li a::before {
  content: '▸'; font-size: 0.65rem; color: var(--cyan);
}
.footer-col ul li a:hover { color: var(--cyan-light); padding-left: 4px; }

.f-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px; font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.f-contact-item .ico { color: var(--cyan); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 12px;
}

/* ─── PAGE HERO ─── */
.page-hero {
  min-height: 50vh;
  background: var(--gradient);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 105px; text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { color: white; font-size: clamp(2.5rem,5vw,4rem); }
.page-hero-desc { color: rgba(255,255,255,0.75); max-width: 560px; margin: 16px auto 0; font-size: 1.05rem; }

.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 0.82rem;
  color: rgba(255,255,255,0.6); margin-bottom: 18px;
}
.breadcrumb a { color: var(--cyan-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ─── ABOUT PAGE ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 52px; }

.team-card {
  background: white; border: 1px solid var(--border);
  border-radius: 18px; padding: 30px 22px; text-align: center;
  transition: all 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--cyan); }

.team-av {
  width: 76px; height: 76px; border-radius: 50%;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.7rem; font-weight: 700; color: white;
}
.team-name { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--cyan); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.team-bio { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; font-family: 'Exo 2', sans-serif; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }

.value-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px; text-align: center; transition: all 0.3s;
}
.value-card:hover { border-color: var(--cyan); transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.v-icon { width: 60px; height: 60px; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin: 0 auto 16px; }
.v-title { font-size: 1.05rem; margin-bottom: 8px; }
.v-desc { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; font-family: 'Exo 2', sans-serif; }

/* ─── SERVICE DETAIL ─── */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-bottom: 90px; }
.service-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 52px; }
.sf-item {
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 22px; transition: all 0.3s;
}
.sf-item:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.sf-icon { font-size: 1.7rem; margin-bottom: 10px; }
.sf-title { font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.sf-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; font-family: 'Exo 2', sans-serif; }

.cta-box {
  background: var(--gradient); border-radius: 24px;
  padding: 72px 40px; text-align: center; margin: 80px 0;
  position: relative; overflow: hidden;
}
.cta-box h2 { color: white; margin-bottom: 14px; }
.cta-box p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 36px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero::before { display: none; }
  .hero { background: var(--off-white); }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  nav { display: none; }
  nav.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; background: white;
    justify-content: center; align-items: center;
    gap: 24px; z-index: 999; font-size: 1.3rem;
  }
  .hamburger { display: flex; }
  .header-top-bar { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
  .subscribe-form { flex-direction: column; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-feature-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
}
