/* =========================================================
   GLOBAL THEME
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.25);
  --accent-strong: #0ea5e9;
  --text-main: #eef3f7;
  --text-muted: #a9b4c5;
  --border-subtle: rgba(148, 163, 184, 0.4);
  --card-bg: rgba(15, 23, 42, 0.8);
  --radius-xl: 1.4rem;
  --shadow-soft: 0 22px 45px rgba(0, 0, 0, 0.45);
  --transition: all 0.25s ease;
}

body {
  font-family: "Poppins", sans-serif;
  background: #0f172a;
  color: var(--text-main);
  overflow-x: hidden;
}

/* Background Layer */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, rgba(15,23,42,0.92), rgba(15,23,42,0.75)),
    url("https://images.pexels.com/photos/323780/pexels-photo-323780.jpeg") center/cover no-repeat fixed;
}

/* Containers */
.container {
  width: 88%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 4.2rem 0;
}

/* Section Headers */
.section-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: .4rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  font-size: .95rem;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}



/* =========================================================
   NAVBAR
========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(15px);
  background: rgba(15, 23, 42, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: radial-gradient(circle at 30% 20%, var(--accent) 40%, #0f172a);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0f172a;
  border-radius: 50%;
  font-weight: 700;
}

.logo-text {
  font-size: 1rem;
  font-weight: 600;
}

/* Color only "Lucky" */
.logo-highlight {
  color: var(--accent);   /* or any color */
  font-weight: 800;       /* optional stronger look */
}

/* ================= NAV LINKS ================= */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .9rem;
  position: relative;
  transition: .25s;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--accent);
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: .3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ================= CTA BUTTON ================= */
.nav-cta {
  background: var(--accent);
  color: #0f172a;
  padding: 0.55rem 1.2rem;
  border-radius: 25px;
  font-size: .9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.nav-cta:hover {
  background: #00d0ff;
  transform: translateY(-2px);
}

/* ================= MOBILE MENU ================= */
.nav-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--text-main);
  background: none;
  border: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.2rem;
    transition: 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    padding: 0.8rem;
  }

  .nav-toggle {
    display: block;
  }
}



/* =========================================================
   HERO — LEFT SLIDER + RIGHT TEXT CARD
========================================================= */
.hero {
  height: 90vh;
  display: grid;
  grid-template-columns: 1.4fr 1fr;   /* LEFT big, right card */
  gap: 2rem;
  padding: 2rem 5%;
  align-items: center;
  position: relative;
}

/* LEFT SLIDER BOX */
.hero-left {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 25px 40px rgba(0,0,0,0.45);
}

/* Slider images */
.hero-slider {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.slide.active {
  opacity: 1;
}

/* RIGHT TEXT CARD */
.hero-right {
  background: rgba(15,23,42,0.78);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  border-radius: 1.2rem;
  padding: 2rem 2.2rem;
  animation: fadeUp 1.2s ease-out forwards;
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Title */
.hero-right h1 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 700;
  letter-spacing: .03em;
}

/* Subtitle */
.hero-right h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-top: .3rem;
}
.hero-right h2 span {
  color: var(--accent);
}

/* Paragraph */
.hero-right p {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: .95rem;
  max-width: 420px;
}

/* Buttons */
.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 1rem;
}

.btn-primary,
.btn-outline {
  padding: .7rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-strong), #22c55e);
  color: #0f172a;
  box-shadow: 0 0 25px rgba(56,189,248,.35);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #e5e7eb;
}

/* Stats */
.hero-stats {
  margin-top: 2rem;
  display: flex;
  gap: 2.5rem;
}

.hero-stats h3 {
  font-size: 1.8rem;
  color: var(--accent);
}
.hero-stats p {
  font-size: .9rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-left {
    height: 45vh;
  }

  .hero-right {
    margin-top: 1rem;
  }
}




/* =========================================================
   ABOUT SECTION — PREMIUM CLASSICAL (CENTERED TEXT)
========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  animation: fadeUpAbout 1s ease-out forwards;
}

@keyframes fadeUpAbout {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ✨ CENTER ALL TEXT */
.about-text {
  text-align: center;
}

.about-text p,
.section-subtitle {
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 0.9rem;
  font-size: 0.95rem;
}

/* Center badge row */
.about-highlights {
  margin-top: 1.4rem;
  text-align: center;
}

/* Badge design */
.badge {
  background: rgba(255,255,255,0.06);
  padding: .55rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: .4rem .6rem;
  font-size: .88rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.badge i {
  color: var(--accent);
  font-size: 0.95rem;
}

/* Badge hover effect */
.badge:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
  border-color: var(--accent-soft);
}

/* Image styling */
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 20px 45px rgba(0,0,0,0.45);
  transition: 0.4s ease;
}

/* Soft hover zoom effect */
.about-image img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text p {
    max-width: 100%;
  }

  .about-image img {
    height: 320px;
  }
}




/* =========================================================
   SERVICES
========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.service-item {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  border: 1px solid var(--border-subtle);
  transition: .3s;
}

.service-item img {
  width: 100%;
  height: 180px;
  border-radius: 1rem;
  object-fit: cover;
  margin-bottom: .8rem;
}

.service-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-soft);
}



/* =========================================================
   PROJECTS
========================================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.project-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-body {
  padding: 1rem;
}



/* =========================================================
   PROCESS
========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-step {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid var(--border-subtle);
}



/* =========================================================
   CONTACT
========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}

.contact-details p {
  color: var(--text-muted);
  margin-bottom: .4rem;
}

.contact-details i {
  color: var(--accent);
  margin-right: .4rem;
}

.contact-form {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-group {
  flex: 1;
}

input,
select,
textarea {
  width: 100%;
  padding: .6rem;
  border-radius: .6rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-main);
  margin-bottom: .9rem;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
}



/* =========================================================
   FOOTER
========================================================= */
.footer {
  padding: 1.4rem 0;
  text-align: center;
  background: rgba(15,23,42,0.9);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  font-size: .85rem;
  color: var(--text-muted);
}



/* =========================================================
   RESPONSIVE STYLES
========================================================= */
@media (max-width: 900px) {

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    background: rgba(15,23,42,0.96);
    flex-direction: column;
    padding: 1rem;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 2rem;
  }

  .about-grid,
  .service-grid,
  .projects-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .hero-content-box {
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
}



/* =========================================================
   ABOUT PAGE — INDUSTRIAL / BLUEPRINT THEME
   (Only applies when <body class="about-page">)
========================================================= */

/* Background */
.about-page .bg-layer {
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #0b1220 100%);
}

/* ================= HERO ================= */
.about-page-hero {
  width: 100%;
  height: 320px;
  padding-top: 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #020617;
  position: relative;
  overflow: hidden;
}

/* Blueprint Grid */
.about-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
}

/* Light Glow Corners */
.about-page-hero::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0% 0%, rgba(56,189,248,0.22), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(15,23,42,0.9), transparent 60%);
  opacity: 0.8;
}

.about-page-hero-content {
  position: relative;
  z-index: 2;
}

.about-page-hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e5e7eb;
  text-shadow: 0 6px 18px rgba(0,0,0,0.7);
}

.about-page-hero-content p {
  margin-top: 0.7rem;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #38bdf8;
}

/* Divider line */
.about-page-hero-content::after {
  content: "";
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, transparent);
  display: block;
  margin: 1rem auto 0;
}

/* ================= ABOUT CONTENT GRID ================= */
.about-page-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 3rem;
  animation: aboutFadeUp 0.9s ease-out forwards;
}

@keyframes aboutFadeUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

.about-page-text p {
  margin-top: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.96rem;
  max-width: 95%;
}

/* Hover highlight */
.about-page-text:hover {
  transition: 0.35s ease;
  text-shadow: 0 0 15px rgba(56,189,248,0.15);
}

/* ================= HIGHLIGHTS ================= */
.about-page-highlights {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.about-page-badge {
  background: rgba(15,23,42,0.95);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.55);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #e5e7eb;
  transition: 0.3s ease;
}

/* Badge Hover */
.about-page-badge:hover {
  background: rgba(56,189,248,0.12);
  border-color: #38bdf8;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.65),
              0 0 12px rgba(56,189,248,0.3);
}

.about-page-badge i {
  color: #38bdf8;
}

/* ================= ABOUT IMAGE ================= */
.about-page-image {
  position: relative;
}

.about-page-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 1.3rem;
  border: 1px solid rgba(148,163,184,0.6);
  box-shadow: 0 26px 55px rgba(15,23,42,0.9);
  transition: 0.45s ease;
}

/* Image Hover - Industrial Glow */
.about-page-image img:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #38bdf8;
  box-shadow: 0 40px 80px rgba(56,189,248,0.15),
              0 20px 30px rgba(0,0,0,0.9);
}

/* Blueprint frame corners */
.about-page-image::before,
.about-page-image::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(148,163,184,0.5);
}

.about-page-image::before {
  top: -12px;
  left: -12px;
  border-right: none;
  border-bottom: none;
}

.about-page-image::after {
  bottom: -12px;
  right: -12px;
  border-left: none;
  border-top: none;
}

/* ================= STATS ================= */
.about-page .hero-stats div {
  padding: 1rem 1.6rem;
  background: rgba(15,23,42,0.65);
  border-radius: 1rem;
  border: 1px solid rgba(148,163,184,0.25);
  transition: 0.35s ease;
}

.about-page .hero-stats div:hover {
  transform: translateY(-10px);
  border-color: #38bdf8;
  box-shadow: 
    0 22px 45px rgba(0,0,0,0.8),
    0 0 18px rgba(56,189,248,0.25);
}

/* =========================================================
   OUR DESIGN PHILOSOPHY — ULTRA PROFESSIONAL STYLE
========================================================= */

.about-page .process-grid {
  display: grid;
  gap: 1.8rem;
}

.about-page .process-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.3rem;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Thin premium top border bar */
.about-page .process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  height: 3px;
  background: #38bdf8;
  border-radius: 5px;
  opacity: 0.6;
}

/* Hover: clean and premium */
.about-page .process-step:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255,255,255,0.20);
  box-shadow: 0 25px 55px rgba(0,0,0,0.35);
}

/* Step Index Number */
.about-page .process-step .step-index {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.08rem;
  color: #38bdf8;
  opacity: 0.85;
}

/* Step Title */
.about-page .process-step h3 {
  margin-top: 0.8rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #f7f7f7;
  letter-spacing: 0.5px;
}

/* Step Description */
.about-page .process-step p {
  margin-top: 0.6rem;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 92%;
}

/* Mobile Responsive */
@media (max-width: 800px) {
  .about-page .process-step {
    padding: 1.4rem;
    text-align: center;
  }

  .about-page .process-step p {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}


/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .about-page-hero {
    height: 260px;
  }

  .about-page-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-page-text p {
    max-width: 100%;
  }

  .about-page-highlights {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .about-page-hero {
    height: 230px;
  }

  .about-page-image img {
    height: 300px;
  }
}


/* =========================================================
   SERVICES PAGE — PREMIUM INDUSTRIAL MODERN DESIGN
========================================================= */

.services-page {
  background: #0f172a;
  color: #eef3f7;
}

.services-bg-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, rgba(15,23,42,0.96), rgba(15,23,42,0.78)),
    url("https://images.pexels.com/photos/323780/pexels-photo-323780.jpeg") center/cover no-repeat fixed;
}

/* HERO */
.services-hero-section {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(135deg, rgba(15,23,42,0.92), rgba(29,78,216,0.55)),
    url("https://images.pexels.com/photos/313691/pexels-photo-313691.jpeg") center/cover no-repeat;
}

.services-hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 3.7rem);
  font-weight: 700;
}

.services-hero-content p {
  margin-top: .5rem;
  color: #c7d4e8;
  font-size: 1.1rem;
}

/* CONTAINER */
.services-container {
  width: 88%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.services-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.services-title {
  font-size: 2.3rem;
  font-weight: 700;
}

.services-subtitle {
  margin-top: .3rem;
  color: #aab3c5;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* CARD */
.services-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.4rem;
  padding: 1.6rem;
  position: relative;
  transition: 0.35s ease;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* Hover effect */
.services-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 25px 50px rgba(0,0,0,0.55);
}

/* Accent bar */
.services-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 80px;
  background: #38bdf8;
}

/* IMAGE */
.services-card img {
  width: 100%;
  height: 210px;
  border-radius: 1rem;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

/* ICON */
.services-icon {
  font-size: 1.7rem;
  color: #38bdf8;
  margin-bottom: .7rem;
}

/* TEXT */
.services-card h3 {
  font-size: 1.35rem;
  margin-bottom: .4rem;
}

.services-card p {
  color: #aebad0;
  margin-bottom: .7rem;
  font-size: .95rem;
}

/* LIST */
.services-card ul {
  list-style: none;
  padding-left: 0;
}

.services-card ul li {
  font-size: .9rem;
  margin-bottom: .35rem;
  padding-left: 1rem;
  position: relative;
}

.services-card ul li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0;
  color: #38bdf8;
}

/* BUTTON */
.services-button-wrapper {
  text-align: center;
  margin-top: 3rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   PROJECTS PAGE
========================================================= */

.projects-page {
  background: #0f172a;
  color: #eef3f7;
}

.projects-bg-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, rgba(15,23,42,0.96), rgba(15,23,42,0.78)),
    url("https://images.pexels.com/photos/323780/pexels-photo-323780.jpeg") center/cover no-repeat fixed;
}

/* HERO */
.projects-hero-section {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(135deg, rgba(15,23,42,0.9), rgba(29,78,216,0.55)),
    url("https://images.pexels.com/photos/439391/pexels-photo-439391.jpeg") center/cover no-repeat;
}

.projects-hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 3.7rem);
  font-weight: 700;
}

.projects-hero-content p {
  margin-top: .5rem;
  color: #c7d4e8;
}

/* CONTENT */
.projects-container {
  width: 88%;
  max-width: 1200px;
  margin: auto;
}

.projects-header {
  text-align: center;
  margin-bottom: 2.4rem;
}

.projects-header h2 {
  font-size: 2.3rem;
  margin-bottom: .4rem;
}

.projects-header p {
  color: #aab3c5;
}

/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

/* CARD */
.project-card {
  background: rgba(255,255,255,0.05);
  border-radius: 1.3rem;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.45);
  transition: 0.35s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 24px 55px rgba(0,0,0,0.6);
}

/* Image */
.project-image-wrapper {
  position: relative;
}

.project-image-wrapper img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* Tag */
.project-tag {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  background: rgba(15,23,42,0.85);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(148,163,184,0.7);
}

/* Body */
.project-body {
  padding: 1rem 1.2rem 1.2rem;
}

.project-body h3 {
  font-size: 1.15rem;
  margin-bottom: .3rem;
}

.project-body p {
  font-size: 0.9rem;
  color: #aeb6c9;
  margin-bottom: .5rem;
}

.project-meta {
  font-size: 0.8rem;
  color: #cbd5f5;
}

/* Button wrapper */
.projects-button-wrapper {
  text-align: center;
  margin-top: 2.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   PROCESS PAGE
========================================================= */

.process-page {
  background: #0f172a;
  color: #eef3f7;
}

.process-bg-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, rgba(15,23,42,0.96), rgba(15,23,42,0.78)),
    url("https://images.pexels.com/photos/323780/pexels-photo-323780.jpeg") center/cover no-repeat fixed;
}

/* HERO */
.process-hero-section {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(135deg, rgba(15,23,42,0.9), rgba(29,78,216,0.55)),
    url("https://images.pexels.com/photos/313691/pexels-photo-313691.jpeg") center/cover no-repeat;
}

.process-hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 3.7rem);
  font-weight: 700;
}

.process-hero-content p {
  margin-top: .5rem;
  color: #c7d4e8;
}

/* CONTAINER */
.process-container {
  width: 88%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.process-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.process-header h2 {
  font-size: 2.2rem;
  margin-bottom: .4rem;
}

.process-header p {
  color: #aab3c5;
}

/* TOP 4 STEPS GRID */
.process-grid-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-step-card {
  background: rgba(255,255,255,0.05);
  border-radius: 1.3rem;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.5rem 1.4rem;
  box-shadow: 0 14px 35px rgba(0,0,0,0.45);
  transition: 0.35s ease;
}

.process-step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.process-step-number {
  font-size: 1.4rem;
  font-weight: 600;
  color: #38bdf8;
}

.process-step-card h3 {
  margin-top: .6rem;
  font-size: 1.15rem;
}

.process-step-card p {
  margin-top: .4rem;
  color: #aeb6c9;
  font-size: .9rem;
}

/* TIMELINE SECTION */
.process-timeline-section {
  border-radius: 1.4rem;
  margin-top: 1rem;
}

.process-timeline {
  position: relative;
  padding-left: 1.5rem;
  margin-top: 1rem;
}

/* Vertical line */
.process-timeline::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0.48rem;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #38bdf8, transparent);
  opacity: 0.8;
}

.process-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.7rem;
}

/* Dot */
.process-timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid #38bdf8;
  background: #0f172a;
  margin-top: 0.15rem;
}

/* Content */
.process-timeline-content {
  background: rgba(15,23,42,0.9);
  border-radius: 1.1rem;
  border: 1px solid rgba(148,163,184,0.4);
  padding: 0.9rem 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.45);
}

.process-timeline-content h3 {
  font-size: 1rem;
}

.process-timeline-content p {
  margin-top: .3rem;
  font-size: .88rem;
  color: #aeb6c9;
}

.process-timeline-content span {
  display: inline-block;
  margin-top: .3rem;
  font-size: .78rem;
  color: #38bdf8;
}

/* Responsive */
@media (max-width: 1024px) {
  .process-grid-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .process-grid-main {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    padding-left: 0.7rem;
  }

  .process-timeline::before {
    left: 0.2rem;
  }
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
  background: #0f172a;
  color: #eef3f7;
}

.contact-bg-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, rgba(15,23,42,0.96), rgba(15,23,42,0.78)),
    url("https://images.pexels.com/photos/323780/pexels-photo-323780.jpeg") center/cover no-repeat fixed;
}

/* HERO */
.contact-hero-section {
  height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(135deg, rgba(15,23,42,0.9), rgba(29,78,216,0.55)),
    url("https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg") center/cover no-repeat;
}

.contact-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
}

.contact-hero-content p {
  margin-top: .5rem;
  color: #d1ddf2;
}

/* LAYOUT */
.contact-container {
  width: 88%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 2.2rem;
}

/* INFO CARD */
.contact-info-card {
  background: rgba(15,23,42,0.96);
  border-radius: 1.4rem;
  border: 1px solid rgba(148,163,184,0.4);
  padding: 1.8rem 1.6rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

.contact-info-card h2 {
  font-size: 1.6rem;
  margin-bottom: .4rem;
}

.contact-info-card p {
  color: #aeb6c9;
  font-size: .95rem;
}

.contact-info-list {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.contact-info-list p {
  margin-bottom: .4rem;
}

.contact-info-list i {
  color: #38bdf8;
  margin-right: .5rem;
}

/* Small titles */
.contact-subtitle {
  margin-top: 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-info-card ul {
  margin-top: 0.5rem;
  padding-left: 1rem;
  font-size: .9rem;
  color: #d0d8ea;
}

/* FORM CARD */
.contact-form-card {
  background: rgba(15,23,42,0.96);
  border-radius: 1.4rem;
  border: 1px solid rgba(148,163,184,0.4);
  padding: 1.8rem 1.6rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

.contact-form-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

/* Form layout */
.contact-form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.contact-form-group {
  flex: 1;
}

.contact-form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: #cbd5e1;
}

/* Inputs reuse base styles, but ensure full width */
.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  width: 100%;
}

/* Full-width button helper */
.full-width {
  width: 100%;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}


