/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ================= GLOBAL UTILS ================= */
.section-header {
  max-width: 1200px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.section-header p {
  color: #666;
  font-size: 16px;
}

.center-btn {
  text-align: center;
  margin-top: 40px;
}

/* ================= BUTTONS ================= */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #c2185b;
  color: #fff;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #a9144d;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid #c2185b;
  color: #c2185b;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: #c2185b;
  color: #fff;
}

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  border-bottom: 1px solid #eee;
}

.nav-container {
  max-width: 100%;
  padding: 20px 40px;
  margin: auto;
  display: flex;
  align-items: center;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 700;
}

/* NAV LINKS CONTAINER */
.nav-links {
  display: flex;
  align-items: center;
  margin-left: auto;      /* ✅ THIS pushes nav to extreme right */
  gap: 25px;
}

/* NAV ITEMS */
.nav-links a {
  font-weight: 500;
}

/* CTA */
.nav-cta {
  padding: 10px 20px;
  background: #c2185b;
  color: #fff;
}

/* ================= HERO (POWER VERSION) ================= */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.75)
    ),
    url("../images/hero-1.jpg") center / cover no-repeat;

  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 900px;
  padding-left: 8%;
  color: #fff;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 25px;
}

.hero p {
  font-size: 19px;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 35px;
  color: #f0f0f0;
}

.hero-buttons a {
  margin-top: 25px;
  margin-right: 18px;
}
/* ================= INTRO SECTION (POWER) ================= */
.intro-section {
  padding: 120px 0;
}

.intro-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: flex-start;
}

.intro-text h2 {
  font-size: 40px;
  margin-bottom: 24px;
}

.intro-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

.intro-image {
  position: relative;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

.intro-image:hover img {
  transform: scale(1.06);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.0),
    rgba(0,0,0,0.65)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
}

.image-overlay h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.image-overlay span {
  font-size: 14px;
  opacity: 0.9;
}

.intro-text .btn-primary {
  margin-top: 32px;
}


/* ================= PROCESS (POWER VERSION) ================= */

.process-preview {
  background:
    radial-gradient(circle at top center, rgba(194,24,91,0.12), transparent 60%),
    linear-gradient(180deg, #0f0f0f, #111);
    padding:80px 0;
    color:#fff;
}

.process-preview .section-header {
  margin-bottom: 80px;
}

.process-steps {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* STEP CARD */
.step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 28px;
  border-radius: 10px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Accent line */
.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c2185b;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}

.step:hover::before {
  opacity: 1;
}

/* Number */
.step span {
  display: inline-block;
  font-size: 34px;
  font-weight: 700;
  color: #c2185b;
  margin-bottom: 14px;
}

/* Title */
.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

/* Description */
.step p {
  font-size: 15px;
  line-height: 1.7;
  color: #ccc;
  
}

.step span {
  display: block;
  text-align: left; /* keep left */
}

.process-preview .center-btn {
  margin-top: 70px;
}

.process-preview .btn-secondary {
  border-color: #c2185b;
  color: #c2185b;
}

.process-preview .btn-secondary:hover {
  background: #c2185b;
  color: #fff;
}

/* ================= PROCESS PAGE FLOW ================= */
.process-page-flow {
  padding: 120px 0;
  background: #f9f9f9;
  color: #222;
}

.process-page-flow .section-header {
  max-width: 820px;
  margin: 0 auto 60px;
}

.process-page-flow .section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.process-page-flow .section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 82px;
  height: 3px;
  border-radius: 99px;
  background: #c2185b;
}

.process-page-flow .process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.process-page-flow .step {
  display: block;
  padding: 34px 28px;
  border-radius: 12px;
  border: 1px solid rgba(194,24,91,0.18);
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-page-flow .step::before {
  opacity: 1;
}

.process-page-flow .step span {
  font-size: 30px;
  margin-bottom: 10px;
}

.process-page-flow .step h3 {
  font-size: 21px;
  margin-bottom: 12px;
  color: #151515;
}

.process-page-flow .step p {
  margin-bottom: 14px;
  color: #555;
  line-height: 1.75;
  font-size: 15px;
}

.process-page-flow .step p:last-child {
  margin-bottom: 0;
}

.process-page-flow .step:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.1);
}


/* ================= FINAL CTA (POWER) ================= */

.primary-cta {
  padding: 120px 20px;
  margin-bottom: 28px;
  text-align: center;
  background:
    radial-gradient(
      circle at top center,
      rgba(194, 24, 91, 0.25),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      #1a1a1a,
      #111
    );
  color: #fff;
}

.primary-cta h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

.primary-cta p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 40px;
  color: #ddd;
}

/* CTA button enhancement */
.primary-cta .btn-primary {
  padding: 14px 36px;
  font-size: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.primary-cta .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(194, 24, 91, 0.35);
}

/* ================= FOOTER (AGENCY STYLE) ================= */

.footer {
  background: #0f0f0f;
  color: #bbb;
  padding: 60px 20px 25px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
  gap: 40px;
}

/* Brand */
.footer-logo {
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-contact i {
  color: #c2185b;
  font-size: 14px;
  min-width: 16px;
}

.footer-contact a {
  color: #bbb;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #c2185b;
}

.footer-contact span {
  color: #c2185b;
  margin-right: 8px;
}

/* Headings */
.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 16px;
}

/* Links */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #bbb;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #c2185b;
}

/* Gallery */
.footer-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

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

/* Social Icons */
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  margin-right: 10px;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #c2185b;
  transform: translateY(-3px);
}



/* Bottom bar */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PORTFOLIO PAGE ===== */

.portfolio-filters {
  text-align: center;
  margin-bottom: 40px;
}

.filter-btn {
  border: 1px solid #c2185b;
  background: none;
  color: #c2185b;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: #c2185b;
  color: #fff;
}

.portfolio-page-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 56px;
  padding-bottom: 80px;
}

.portfolio-item {
  position: relative;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.portfolio-info {
  position: absolute;
  left: 0;
  bottom: 0;
  background: transparent;
  color: #fff;
  width: 100%;
  padding: 14px 14px 12px;
}

.portfolio-info h3 {
  font-size: 21px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.75);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.next {
  right: 24px;
}

.lightbox-counter {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  background: rgba(0,0,0,0.45);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ===== CONTACT PAGE ===== */

/* ===== CONTACT SECTION ===== */

.contact-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #f8f8f8, #ffffff);
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT SIDE */

.contact-highlights {
  margin-bottom: 30px;
}

.contact-highlights div {
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
}
.contact-info h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-info p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* info items */

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 22px;
  background: #c2185b;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.contact-cta:hover {
  background: #a3154a;
  transform: translateY(-2px);
}

.contact-info {
  max-width: 400px;
}

/* icons */

.info-item i {
  color: white;
  background: #c2185b;
  padding: 10px;
  border-radius: 50%;
  font-size: 14px;
  min-width: 36px;
  text-align: center;
}


/* FORM */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #c2185b;
}

/* BUTTON */
.contact-form .btn-primary {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #c2185b, #a3154a);
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(194, 24, 91, 0.3);
}

/* ================= STATUS MESSAGE ================= */

#formStatus {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}


/* MOBILE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* ===== MICRO POLISH ===== */

/* Button subtle lift */
.btn-primary,
.btn-secondary {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Service card image-less polish */
.service-card {
  background: #fff;
}

/* ================= HOME SERVICES (INDEX) ================= */
.home-services {
  padding: 120px 0;
  background: #f9f9f9;
}

.home-services .section-header h2 {
  font-size: 42px;
}

.home-services .services-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.home-services .service-card {
  background: #fff;
  padding: 35px 28px;
  border-radius: 6px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c2185b;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

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

.home-services .service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.home-services .service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.home-services .service-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 4px;
}

.home-services .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-services .service-card:hover .service-img img {
  transform: scale(1.08);
}

/* ================= SERVICES PAGE LIST ================= */
.services-page-list {
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, rgba(194,24,91,0.08), transparent 55%),
    #fff;
}

.services-page-list .section-header {
  margin-bottom: 55px;
}

.services-page-list .section-header h2 {
  font-size: 42px;
  letter-spacing: 0.2px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.services-page-list .section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 3px;
  transform: translateX(-50%);
  background: #c2185b;
  border-radius: 99px;
}

.services-page-list .services-zigzag {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.services-page-list .service-zigzag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border: 1px solid rgba(194,24,91,0.16);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.services-page-list .service-zigzag:nth-child(even) .service-zigzag-media {
  order: 2;
}

.services-page-list .service-zigzag:nth-child(even) .service-zigzag-content {
  order: 1;
}

.services-page-list .service-zigzag:hover {
  transform: translateY(-8px);
  border-color: rgba(194,24,91,0.36);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.services-page-list .service-zigzag-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.services-page-list .service-zigzag-content {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-page-list .service-zigzag h3 {
  font-size: 23px;
  margin-bottom: 14px;
  color: #151515;
  line-height: 1.35;
  text-align: center;
}

.services-page-list .service-zigzag p {
  font-size: 16px;
  line-height: 1.8;
  color: #4f4f4f;
}

/* Portfolio hover zoom */
.portfolio-grid img,
.portfolio-item img {
  transition: transform 0.5s ease;
}

.portfolio-grid img:hover,
.portfolio-item:hover img {
  transform: scale(1.05);
}


#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #c2185b;
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 999;
}

/* Active nav link */
.nav-links a.active {
  color: #c2185b;
  font-weight: 600;
}

/* CTA should stay white */
.nav-links a.nav-cta {
  color: #fff !important;
}

/* ================= SERVICES (POWER VERSION) ================= */
.services-power {
  padding: 120px 0;
  background: #f9f9f9;
}

.services-power .section-header h2 {
  font-size: 42px;
}

.services-power .services-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.services-power .service-card {
  background: #fff;
  padding: 35px 28px;
  border-radius: 6px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* subtle top accent */
.services-power .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c2185b;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services-power .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

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

.services-power .service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.services-power .service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ===== SERVICES WITH IMAGES ===== */

.services-power .service-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 4px;
}

.services-power .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services-power .service-card:hover .service-img img {
  transform: scale(1.08);
}

/* ================= ABOUT: WHAT WE STAND FOR ================= */
.about-values {
  background:
    radial-gradient(circle at top right, rgba(194,24,91,0.12), transparent 58%),
    #f9f9f9;
}

.about-values .section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.about-values .section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 85px;
  height: 3px;
  border-radius: 99px;
  background: #c2185b;
}

.about-values .services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-values .service-card {
  border: 1px solid rgba(194,24,91,0.18);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.07);
}

.about-values .service-card h3 {
  text-align: center;
}

/* ================= WHY US PAGE ================= */
.why-values {
  background: #f9f9f9;
}

.why-values .services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-values .service-card {
  border: 1px solid rgba(194,24,91,0.16);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

/* ================= PORTFOLIO (POWER VERSION) ================= */

.portfolio-power {
  padding: 120px 0;
  background:#f9f9f9;
  color: #ffffff;
}

.portfolio-power .section-header h2,
.portfolio-power .section-header p {
  color: #111;
}

.portfolio-power .portfolio-grid {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portfolio-power .portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-power .portfolio-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-power .portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0),
    rgba(0,0,0,0.65)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.portfolio-overlay h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.portfolio-overlay span {
  font-size: 13px;
  opacity: 0.85;
}

/* ================= INNER PAGE HERO (POWER) ================= */

.portfolio-hero {
  min-height: 60vh;
  background:
    linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.65)
    ),
    url("../images/inner-hero.jpg") center / cover no-repeat;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}

.portfolio-hero h1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 15px;
}

.portfolio-hero p {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.6;
  color: #f0f0f0;
}

/* ================= SECTION RHYTHM ================= */

/* Light background sections */
.section-light {
  background: #f9f9f9;
}

/* Dark sections already handled (portfolio-power) */


/* ================= SPACING CONSISTENCY ================= */

section {
  scroll-margin-top: 100px;
}

.section-header {
  margin-bottom: 60px;
}

.center-btn {
  margin-top: 60px;
}
/* ================= STATS (DARK + POWER) ================= */

/* ================= STATS LAYOUT ================= */

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat h3 {
  font-size: 42px;
  color: #c2185b;
  margin-bottom: 8px;
}

.stat p {
  color: #ccc;
  font-size: 14px;
}

.dark-stats {
  background:
    radial-gradient(
      circle at top left,
      rgba(194, 24, 91, 0.15),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 255, 255, 0.05),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      #0f0f0f,
      #111
    );

  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

/* ================= STAT HOVER FEEDBACK ================= */

.dark-stats .stat {
  transition: transform 0.25s ease;
}

.dark-stats .stat:hover {
  transform: translateY(-6px);
}

/* ===== FORCE DESKTOP NAV (FINAL OVERRIDE) ===== */
 @media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
  }
} 

/* ===== DESKTOP NAV FIX ===== */
 @media (min-width: 769px) {
  .nav-links {
    display: flex !important;
    align-items: center;
    gap: 25px;
  }

  .menu-toggle {
    display: none !important;
  }
} 

