/* ================= GLOBAL ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

:root{
    --primary:#1f1f1f;
    --secondary:#777;
    --accent:#c5a572;
    --bg:#000000;
    --section-space: 72px;
}

body {
  color: #ffffff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  padding-top: 92px;
}

body.home-modern {
  padding-top: 0;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 92%;

  margin: auto;
}

/* ================= NAVIGATION ================= */

.header {
  padding: 25px 0;
  background: #080808;
  border-bottom: 1px solid #333;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-light {
  font-weight: 600;
  font-size: 18px;
}

.logo-badge {
  background: #1a1a1a;
  color: #4ade80;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #aaa;
  font-size: 14px;
  transition: 0.3s ease;
}

.nav a:hover {
  color: #fff;
}

.nav-btn {
  background: #1a1a1a;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 13px;
  color: #fff;
  border: 1px solid #333;
  transition: transform 0.22s ease;
}

.nav-btn:hover {
  transform: scale(1.04);
}


/* ================= MOBILE TOGGLE BUTTON ================= */

.mobile-toggle {
  position: relative;
  background: linear-gradient(145deg, #1c1c1c, #0a0a0a);
  color: #f5f5f5;
  border: 1px solid #303030;
  padding: 12px 12px 10px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease;
  align-items: center;
  justify-content: center;
}

.mobile-toggle:hover {
  transform: translateY(-2px);
  border-color: #f2f2f2;
}

.mobile-toggle.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.menu-icon {
  width: 24px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.menu-icon span {
  height: 2px;
  border-radius: 2px;
  background: #f2f2f2;
  display: block;
}

.menu-icon span:nth-child(1) { width: 24px; }
.menu-icon span:nth-child(2) { width: 18px; }
.menu-icon span:nth-child(3) { width: 12px; }

/* ================= SIDEBAR ================= */

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 45%),
    linear-gradient(180deg, #121212 0%, #070707 100%);
  border-right: 1px solid #2e2e2e;
  padding: 22px 18px;
  transition: 0.4s ease;
  z-index: 1200;
  box-shadow: 12px 0 34px rgba(0,0,0,0.45);
}

.mobile-sidebar.active {
  left: 0;
}

body.sidebar-open {
  overflow: hidden;
}

/* ================= HEADER ================= */

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #2a2a2a;
}

.sidebar-header h2 {
  font-size: 18px;
  font-weight: 500;
}

.sidebar-header button {
  background: #111;
  border: 1px solid #2f2f2f;
  color: #d0d0d0;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
}

/* ================= NAV ITEMS ================= */

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-nav .nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #d7d7d7;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid #262626;
  background: rgba(255, 255, 255, 0.02);
  transition: 0.22s ease;
  cursor: pointer;
}

.sidebar-nav .nav-item:hover {
  background: #f0f0f0;
  color: #070707;
  border-color: #f0f0f0;
}

.side-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #3a3a3a;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bcbcbc;
  flex-shrink: 0;
}

/* ================= DROPDOWN ================= */

.dropdown-menu {
  display: none;
  flex-direction: column;
  margin-left: 25px;
  margin-top: 10px;
  gap: 12px;
}

.dropdown-menu.active {
  display: flex;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-item:hover {
  color: #fff;
}

/* Colored Dots */

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.purple { background: #7c3aed; }
.pink { background: #ec4899; }
.red { background: #ef4444; }

/* Arrow */

.arrow {
  margin-left: auto;
  font-size: 14px;
  color: #888;
}

/* ================= MOBILE ONLY ================= */

.mobile-toggle {
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {

  /* Hide desktop nav links */
  .nav {
    display: none;
  }

  .nav ul,
  .nav .nav-btn {
    display: none;
  }

  /* Show hamburger */
  .mobile-toggle {
    display: inline-flex;
    margin-left: auto;
  }
}






















/* ========================================================= HERO ========================================================= */
.hero {
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  background: url('/Assets/media/backgrounds/image.png') right center / cover no-repeat;
  position: relative;
}

.hero-left {
  max-width: 600px;
}

.hero-left h1 {
  font-size: 72px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-left p {
  color: #888;
  font-size: 16px;
  max-width: 450px;
  line-height: 1.6;
}


.header-button{
  background: #1a1a1a;
  padding: 10px 30px;
  border-radius: 5px;
  font-size: 13px;
  color: #fff;
  border: 1px solid #333;
  transition: 0.3s ease;
  margin-top: 2rem;
  display: inline-block;
  text-decoration: none;
}

.cta-attention {
  position: relative;
  overflow: hidden;
  animation: pulseCta 1.9s ease-in-out infinite;
}

.cta-attention::after {
  content: "";
  position: absolute;
  top: 0;
  left: -45%;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  animation: shineCta 2.2s linear infinite;
}

@keyframes pulseCta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.12); }
  50% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}

@keyframes shineCta {
  0% { left: -45%; }
  100% { left: 125%; }
}


.scroll-down {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 122px;
  height: 46px;
  padding: 0 14px;
  background: rgba(10, 10, 10, 0.85);
  color: #fff;
  border: 1px solid #2f2f2f;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: 0.25s ease;
}

.scroll-down:hover {
  background: #222;
  transform: translateX(-50%) translateY(-2px);
}

.scroll-text {
  color: #d8d8d8;
}

.scroll-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #3a3a3a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  animation: bob 1.2s ease-in-out infinite;
}

@keyframes bob {
  0% { transform: translateY(0); }
  50% { transform: translateY(2px); }
  100% { transform: translateY(0); }
}





















/* ========================================================= ABOUT SECTION ========================================================= */

.about-container {
  background: #fbfbfc;
  padding: 100px 5%;
  margin-top: -2.1rem;
  border-radius: 25px;
}

.about-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
    gap: 6rem;
}

/* ------------- IMAGE ------------- */

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

/* ------------- CONTENT ------------- */

.about-content {
  flex: 2;
}

.about-content hr{margin-bottom: 2rem;}

.about-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 7px 20px;
  border-radius: 5px;
  background: #000000;
  color: #ffffff;
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

.about-description {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 800px;
  margin-bottom: 20px;
}

.about-socials {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-socials a {
  width: 42px;
  height: 42px;
  background-color: #eeeded;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 4px; /* optional */
  transition: 0.3s ease;
}

.about-socials a i {
  font-size: 18px;
}

.about-socials a:hover {
  background-color: #111;
  color: #fff;
}

/* BUTTONS */

.about-buttons {
  display: flex;
  gap: 15px;

  margin-top: 25px;
}

.btn-primary {
    background: #000000;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid #2f2f2f;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #4ade80;
  color: #0b0b0b;
}

.btn-secondary {
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid #dcdcdc;
  color: #333;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: #fff;
}

.about-stats {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-stats li {
  color: #fff; /* controls dot color */
}

.about-stat-item span .info{color: #000; font-size: 1.2rem;}

.about-stat-text {
  font-size: 14px;
  color: #777;
}
/* RESPONSIVE */

@media (max-width: 992px) {
  .about-inner {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .about-description {
    margin-left: auto;
    margin-right: auto;
  }

  .about-buttons {
    justify-content: center;
  }

  .about-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
}





/* ================= SERVICES SECTION ================= */
.services-card {
  background: #000000;
  margin: 0 auto;
  padding: 70px 100px;

}

/* HEADER */

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 60px;
}

.services-left h2 {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 15px;
  color: #ffffff;
}

.services-right p {
  max-width: 420px;
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
}

.services-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 20px;
  background: #ffffff;
  color: #000000;
}

/* SERVICES LIST */

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.services-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 14px;
  row-gap: 0;
  padding: 20px 25px;
  border-radius: 16px;
  background: #1b1b1b;
  border: 1px solid #333;
  transition: 0.3s ease;
  cursor: pointer;
  min-height: 78px;
}

.service-item:hover {
  background: #262626;
  border-color: #3a3a3a;
}

/* ACTIVE ITEM */

.service-item.active {
  background: #1b1b1b;
  border: 1px solid #333;
  color: #fff;
}

.service-item.active .service-desc {
  color: rgba(255,255,255,0.9);
}

.service-item.active .service-arrow {
  background: #fff;
  background: #1b1b1b;
  border: 1px solid #333;
}

/* CONTENT */

.service-title {
  grid-column: 1;
  font-weight: 500;
  font-size: 16px;
}

.service-desc {
  grid-column: 1 / -1;
  font-size: 13px;
  color: #ffffff;
  line-height: 1.4;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-top 0.35s ease;
  padding-top: 0;
  will-change: max-height;
}

.service-arrow {
  grid-column: 2;
  grid-row: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1b1b1b;
  border: 1px solid #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.service-item.active .service-desc {
  max-height: 320px;
  padding-top: 10px;
}

.service-item.active .service-arrow {
  transform: rotate(90deg);
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .services-header {
    flex-direction: column;
  }

  .services-right p {
    max-width: 100%;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 1fr auto;
    gap: 0;
  }

  .service-arrow {
    align-self: center;
  }
}






/* ================= STATS SECTION ================= */

.stats {
  padding: 80px 5%;
  background: #fbfbfc;
  color: #000000;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.stat h3 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 8px;
}

.stat p {
  font-size: 14px;
  color: #000000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.divider {
  width: 1px;
  height: 60px;
  background: #222;
}

/* Responsive */

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 30px;
  }

  .divider {
    display: none;
  }
}


/* ========================================
   FAQ SECTION
======================================== */
.faq-section{margin-top: 4rem;}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: #ffffff;
}

/* 2 Independent Columns */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
    background: #1b1b1b;
  border-radius: 8px;
  border: 1px solid #333;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  color: #ffffff;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 15px 0 20px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
}










/* ================= PROJECTS SECTION ================= */

.projects {
  padding: 60px 6%;
  background: #000000;
}

.projects-container {
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* GRID */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */

.project-card {
  background: #1b1b1b;
  border: 1px solid #333;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.22s ease, border-color 0.22s ease;
  padding-bottom: 25px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-card:hover {
  transform: scale(1.025);
  border-color: #4a4a4a;
}

.project-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  background: #101010;
}

.project-card h2 {
  font-size: 20px;
  margin: 20px 25px 10px;
  color: #ffffff;
}

.project-card p {
  font-size: 15px;
  color: #ffffff;
  margin: 0 25px;
  line-height: 1.6;
}

/* ================= TESTIMONIALS SECTION ================= */

.testimonials-section {
  padding: 60px 6%;
  background: #000000;
}

.testimonials-container {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.testimonial-card {
  border: 1px solid #2c2c2c;
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(20, 20, 20, 0.9), rgba(6, 6, 6, 0.95));
  padding: 22px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: #f0f0f0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.testimonial-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.testimonial-card p {
  color: #d0d0d0;
  line-height: 1.75;
  font-size: 15px;
}

.testimonial-meta {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #2f2f2f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.testimonial-meta-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #3a3a3a;
  flex-shrink: 0;
}

.testimonial-client {
  display: block;
  font-size: 12px;
  color: #e2e2e2;
}

.testimonial-stars {
  display: inline-flex;
  gap: 3px;
  color: #ffd56a;
  font-size: 11px;
}

.testimonial-link {
  display: inline-block;
  border: 1px solid #3b3b3b;
  border-radius: 8px;
  padding: 9px 13px;
  font-size: 12px;
  color: #f2f2f2;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.testimonial-link:hover {
  background: #f4f4f4;
  color: #080808;
  border-color: #f4f4f4;
  transform: translateY(-1px);
}

@media (max-width: 576px) {
  .testimonial-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}














/* ========================================
   SECTION WRAPPER
======================================== */
.contact-section {
  background-color: #4ade80;
  font-family: Arial, sans-serif;
}



.contact-section {
  padding: 80px 6%;
}

.contact-container {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT SIDE */
.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1b1b1b;
}

.contact-desc {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item strong {
  font-size: 14px;
  display: block;
  color: #1b1b1b;
}

.contact-item p {
  font-size: 13px;
  color: #666;
}

.icon {
  width: 40px;
  height: 40px;
  background: #1b1b1b;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
}

.contact-socials span {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #1b1b1b;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 14px;
}

/* RIGHT SIDE */
.contact-form-card {
  background: #1b1b1b;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-card input,
.contact-form-card textarea {
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  font-size: 14px;
  outline: none;
  background: #1b1b1b;
  color: white;
}

.contact-form-card textarea {
  resize: none;
  height: 90px;
}

.privacy-text {
  font-size: 11px;
  color: #777;
  line-height: 1.4;
}

.contact-form-card button {
  align-self: flex-start;
  background: white;
  color: rgb(0, 0, 0);
  border: none;
  padding: 10px 28px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form-card button:hover {
  background: #e67e00;
}









/* ======================================== SHOWCASE PAGE ======================================== */
.showcase-section {
  position: relative;
  overflow: hidden;
  padding: 96px 4% 72px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.14), transparent 32%),
    radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.08), transparent 38%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 78px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 78px
    ),
    #050505;
}

.showcase-background-shape {
  position: absolute;
  width: 560px;
  height: 560px;
  right: -220px;
  top: -180px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0.35;
  pointer-events: none;
}

.showcase-container {
  max-width: 1700px;
  margin: 0 auto;
  position: relative;
}

.showcase-label {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #444;
  border-radius: 99px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e0e0e0;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 18px;
}

.showcase-title {
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.showcase-subtitle {
  max-width: 760px;
  color: #a0a0a0;
  line-height: 1.7;
  margin-bottom: 44px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.9fr);
  gap: 30px;
  align-items: start;
}

.showcase-slider,
.showcase-info {
  border: 1px solid #252525;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(26, 26, 26, 0.85), rgba(8, 8, 8, 0.9));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.showcase-slider {
  padding: 18px;
}

.showcase-media-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 14px;
}

.showcase-media-head h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  margin: 0;
}

.showcase-media-head p {
  color: #a9a9a9;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  max-width: 360px;
  text-align: right;
}

.slider-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2d2d2d;
  max-height: 580px;
}

.slider-frame-hero {
  max-height: none;
  aspect-ratio: 16 / 10;
}

.slider-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.showcase-slider:hover .slider-frame-hero img {
  transform: scale(1.015);
}

.slider-controls {
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-btn {
  border: 1px solid #3b3b3b;
  background: #0f0f0f;
  color: #4ade80;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s ease;
}

.slider-btn:hover {
  background: #f4f4f4;
  color: #0e0e0e;
}

.slider-progress {
  color: #bbb;
  letter-spacing: 1px;
  font-size: 14px;
}

.slider-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.slider-thumbs-rail {
  grid-template-columns: repeat(6, minmax(90px, 1fr));
}

.thumb {
  padding: 0;
  border: 1px solid #303030;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  transition: 0.3s ease;
}

.thumb img {
  width: 100%;
  height: 76px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.2);
}

.thumb.active,
.thumb:hover {
  border-color: #f1f1f1;
  transform: translateY(-2px);
}

.showcase-info {
  padding: 24px;
}

.info-head {
  margin-bottom: 14px;
}

.info-overline {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: #8d8d8d;
  margin-bottom: 8px;
}

.showcase-info h2 {
  font-size: 26px;
  margin-bottom: 0;
}

.info-highlight {
  border-left: 2px solid #a4a4a4;
  padding: 10px 0 10px 14px;
  color: #cccccc;
  line-height: 1.65;
  margin-bottom: 20px;
}

.project-timeline {
  position: relative;
  border-left: 1px solid #3a3a3a;
  margin: 8px 0 22px 8px;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #2d2d2d;
  border-radius: 10px;
  padding: 12px 14px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #efefef;
  box-shadow: 0 0 0 4px #111;
}

.timeline-key {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #909090;
  margin-bottom: 6px;
}

.timeline-value {
  font-size: 14px;
  color: #ffffff;
}

.info-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.project-client-testimonial {
  border: 1px solid #2f2f2f;
  border-radius: 12px;
  background: #0f0f0f;
  padding: 14px;
  margin-bottom: 16px;
}

.project-client-rating {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.8px;
  color: #ffd56a;
  margin-bottom: 8px;
}

.project-client-testimonial p {
  color: #d0d0d0;
  line-height: 1.65;
  font-size: 14px;
}

.info-stat-card {
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 12px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
}

.info-stat-number {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.info-stat-label {
  font-size: 12px;
  color: #b9b9b9;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-tag {
  border: 1px solid #3c3c3c;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  background: #0c0c0c;
  color: #ebebeb;
}

/* ======================================== MORE PROJECTS ======================================== */
.more-projects-section {
  padding: 72px 4%;
  background: #060606;
}

.section-topline {
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 12px;
  color: #919191;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  color: #fff;
  margin-bottom: 26px;
}

.more-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.more-project-card {
  border: 1px solid #282828;
  border-radius: 14px;
  overflow: hidden;
  background: #0d0d0d;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.more-project-card:hover {
  transform: translateY(-6px);
  border-color: #f1f1f1;
}

.more-project-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  content-visibility: auto;
  contain-intrinsic-size: 350px;
}

/* ================= SMOOTH REVEAL ANIMATIONS ================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

.more-project-content {
  padding: 16px;
}

.more-project-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.more-project-content p {
  color: #b6b6b6;
  line-height: 1.55;
  font-size: 14px;
}

/* ======================================== SHOWCASE CONTACT ======================================== */
.showcase-contact {
  padding: 24px 4% 90px;
  background: #060606;
}

.contact-shell {
  max-width: 1240px;
  margin: 0 auto;
  border: 1px solid #262626;
  border-radius: 16px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 55%),
    #0c0c0c;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px;
}

.contact-copy p {
  color: #bcbcbc;
  line-height: 1.7;
  max-width: 500px;
}

.contact-mini-form {
  display: grid;
  gap: 12px;
}

.contact-mini-form input,
.contact-mini-form textarea {
  width: 100%;
  border: 1px solid #313131;
  border-radius: 10px;
  background: #080808;
  color: #fff;
  padding: 12px;
  font-size: 14px;
}

.contact-mini-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-mini-form button {
  width: fit-content;
  border: 1px solid #e9e9e9;
  background: #f4f4f4;
  color: #060606;
  border-radius: 8px;
  padding: 11px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.contact-mini-form button:hover {
  background: #0f0f0f;
  color: #fff;
}

@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .more-projects-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }}

@media (max-width: 680px) {
  .showcase-section {
    padding: 72px 4%;
  }

  .slider-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .info-stats {
    grid-template-columns: 1fr;
  }

  .more-projects-grid {
    grid-template-columns: 1fr;
  }
}



































































































.site-footer {
  background: #000000;
  padding: 70px 6%;
  font-family: "Inter", sans-serif;
  color: #444;
}

.footer-container {
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 0 20px 50px;
}

/* Brand */
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.logo-icon {
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 4px;
}

.footer-brand h3 {
  font-size: 18px;
  font-weight: 600;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #666;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  background: #e3e6ee;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: #4ade80;
  color: #0b0b0b;
}

/* Links */
.footer-links h4,
.footer-contact h4 {
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #666;
  font-size: 13px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #4ade80;
}

/* Contact */
.footer-contact .contact-item {
  display: flex;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 12px;
  color: #666;
}

.footer-contact i {
  color: white;
  margin-top: 3px;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #e2e2e2;
  padding: 18px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-size: 12px;
  color: #777;
  text-align: center;
}

.footer-legal {
  display: none;
}

.footer-legal a {
  text-decoration: none;
  color: #777;
  transition: 0.3s;
}

.footer-legal a:hover {
  color: #4ade80;
}

.footer-contact .contact-item:hover i {
  color: #4ade80;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* ======================================== INDEX MODERN THEME ======================================== */
.home-modern {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.14), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(255, 255, 255, 0.08), transparent 36%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 78px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 78px
    ),
    #050505;
  background-attachment: scroll;
}

.home-modern .header {
  background: rgba(8, 8, 8, 0.88);
  border-bottom: 1px solid #232323;
  backdrop-filter: blur(8px);
}

.home-modern .hero {
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.82) 28%, rgba(0, 0, 0, 0.22) 72%),
    url('/Assets/media/backgrounds/image.png') right center / cover no-repeat;
  min-height: 82vh;
}

.home-modern .about-container,
.home-modern .services-card,
.home-modern .stats,
.home-modern .projects,
.home-modern .testimonials-section,
.home-modern .contact-section,
.home-modern .site-footer {
  border: 1px solid #272727;
  border-radius: 18px;
  margin: 18px 4%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.home-modern .about-container,
.home-modern .stats,
.home-modern .contact-section {
  background: linear-gradient(165deg, rgba(26, 26, 26, 0.92), rgba(8, 8, 8, 0.94));
}

.home-modern .services-card,
.home-modern .projects,
.home-modern .testimonials-section,
.home-modern .site-footer {
  background: linear-gradient(165deg, rgba(20, 20, 20, 0.9), rgba(6, 6, 6, 0.95));
}

.home-modern .projects {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.home-modern .testimonials-section {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.home-modern .about-container,
.home-modern .services-card,
.home-modern .stats,
.home-modern .projects,
.home-modern .testimonials-section,
.home-modern .contact-section {
  padding: var(--section-space) 4%;
}

.home-modern .about-container {
  margin-top: 18px;
}

.home-modern .about-content h2,
.home-modern .about-description,
.home-modern .about-stat-text,
.home-modern .stat h3,
.home-modern .stat p,
.home-modern .faq-title,
.home-modern .contact-info h2,
.home-modern .contact-desc,
.home-modern .contact-item strong,
.home-modern .contact-item p {
  color: #e6e6e6;
}

.home-modern .about-socials a {
  background-color: #111;
  color: #f2f2f2;
  border: 1px solid #2f2f2f;
}

.home-modern .about-socials a:hover {
  background-color: #f2f2f2;
  color: #0a0a0a;
}

.home-modern .btn-secondary {
  color: #e8e8e8;
  border: 1px solid #2f2f2f;
  background: #121212;
}

.home-modern .btn-secondary:hover {
  background: #fff;
  color: #000;
}

.home-modern .divider {
  background: #303030;
}

.home-modern .project-card {
  background: #111;
  border: 1px solid #2d2d2d;
}

.home-modern .contact-form-card {
  border: 1px solid #303030;
  box-shadow: none;
}

.home-modern .contact-form-card button {
  border: 1px solid #fff;
}

.home-modern .contact-form-card button:hover {
  background: #111;
  color: #fff;
}

.home-modern .footer-bottom {
  border-top: 1px solid #2d2d2d;
}

/* ======================================== SHOWCASE PAGE ======================================== */
.showcase-main {
  padding: 70px 4% 24px;
}

.showcase-shell {
  max-width: 1700px;
  margin: 0 auto;
  border: 1px solid #262626;
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.09), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05), transparent 35%),
    linear-gradient(165deg, rgba(20, 20, 20, 0.92), rgba(8, 8, 8, 0.98));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  padding: 28px;
}

.showcase-head {
  margin-bottom: 22px;
}

.showcase-head h1 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  margin: 10px 0;
}

.showcase-head p {
  color: #bcbcbc;
  line-height: 1.65;
}

.showcase-jump-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.showcase-jump-links a {
  background: #101010;
  color: #e8e8e8;
  border: 1px solid #2f2f2f;
  border-radius: 8px;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s ease;
}

.showcase-jump-links a:hover {
  background: #f0f0f0;
  color: #080808;
  border-color: #f0f0f0;
}

.showcase-block {
  margin-bottom: 20px;
  border: 1px solid #2e2e2e;
  border-left: none;
  border-right: none;
  border-radius: 16px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), transparent 55%),
    linear-gradient(160deg, rgba(17, 17, 17, 0.92), rgba(6, 6, 6, 0.95));
  padding: 16px;
}

.showcase-block-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin: 4px 4px 16px;
}

.showcase-block-head span {
  color: #9a9a9a;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.showcase-block-head h2 {
  font-size: 1.3rem;
}

.showcase-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.showcase-card {
  border: 1px solid #2b2b2b;
  border-radius: 14px;
  overflow: hidden;
  background: #0f0f0f;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.showcase-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: #f1f1f1;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.showcase-card:visited,
.showcase-card:active {
  color: inherit;
}

.showcase-card * {
  text-decoration: none;
}

.showcase-card > img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.showcase-card-body {
  padding: 14px;
}

.showcase-card-body h2 {
  font-size: 18px;
  margin-bottom: 6px;
}

.showcase-card-body p {
  color: #bcbcbc;
  font-size: 14px;
}

.client-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid #2f2f2f;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #3c3c3c;
}

.client-avatar-icon {
  display: inline-block;
  position: relative;
  background: #121212;
  border-color: #353535;
}

.client-avatar-icon::before {
  content: "";
  position: absolute;
  top: 22%;
  left: 50%;
  width: 24%;
  height: 24%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #d0d0d0;
}

.client-avatar-icon::after {
  content: "";
  position: absolute;
  bottom: 18%;
  left: 50%;
  width: 44%;
  height: 22%;
  transform: translateX(-50%);
  border-radius: 999px 999px 8px 8px;
  background: #bcbcbc;
}

.client-name,
.client-stars {
  display: block;
}

.client-name {
  font-size: 12px;
  color: #d8d8d8;
}

.client-stars {
  font-size: 12px;
  letter-spacing: 1px;
  color: #ffd56a;
}

.project-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tag {
  font-size: 11px;
  color: #e5e5e5;
  border: 1px solid #3a3a3a;
  border-radius: 999px;
  padding: 5px 10px;
  background: #121212;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
  animation: none;
}

.project-tag::after {
  content: "";
  position: absolute;
  top: 0;
  left: -55%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  animation: none;
}

.project-tag:hover {
  border-color: #f0f0f0;
  transform: translateY(-1px);
  animation: none;
}

.project-tag:hover::after {
  opacity: 0;
  animation: none;
}

@keyframes pulseTag {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1); }
  50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
}

@keyframes shineTag {
  0% { left: -55%; }
  100% { left: 130%; }
}

@media (max-width: 980px) {
  .showcase-grid-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .showcase-grid-cards {
    grid-template-columns: 1fr;
  }
}

/* ======================================== SHOWCASE PERFORMANCE ======================================== */
.showcase-page .header {
  backdrop-filter: none;
  background: #080808;
}

.projects-page .header {
  border-bottom: 1px solid #2a2a2a !important;
  box-shadow: none !important;
  background: #080808 !important;
}

.projects-page::before {
  display: none !important;
}

.projects-page .showcase-section::before {
  display: none !important;
}

.projects-page .showcase-section {
  border-top: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  margin-top: -1px;
  padding-top: 97px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.14), transparent 32%),
    radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.08), transparent 38%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 78px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 78px
    ),
    #050505;
}

.projects-page .header + section {
  border-top: 0 !important;
  margin-top: 0 !important;
}

.projects-page .showcase-container {
  z-index: 2;
}

.projects-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.14), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(255, 255, 255, 0.08), transparent 36%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 78px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 78px
    ),
    #050505 !important;
}

/* Keep projects page section rhythm consistent */
.projects-page .more-projects-section,
.projects-page .contact-section,
.projects-page .site-footer {
  margin: 18px 4%;
  border: 1px solid #272727;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  padding: var(--section-space) 4% !important;
}

.projects-page .more-projects-section,
.projects-page .site-footer {
  background: linear-gradient(165deg, rgba(20, 20, 20, 0.9), rgba(6, 6, 6, 0.95));
}

.projects-page .contact-section {
  background: linear-gradient(165deg, rgba(26, 26, 26, 0.92), rgba(8, 8, 8, 0.94));
}

.projects-page .footer-container {
  padding: 0 0 40px;
}

.project-tag {
  animation: none !important;
}

.project-tag::after {
  opacity: 0;
  animation: none !important;
}

.project-tag:hover {
  animation: none !important;
}

.project-tag:hover::after {
  opacity: 0;
  animation: none !important;
}

.showcase-card:hover .project-tag {
  border-color: #f0f0f0;
  transform: translateY(-1px);
  animation: pulseTag 2.2s ease-in-out infinite !important;
}

.showcase-card:hover .project-tag::after {
  opacity: 1;
  animation: shineTag 2.3s linear infinite !important;
}

.showcase-page .showcase-shell {
  background: linear-gradient(165deg, rgba(18, 18, 18, 0.95), rgba(8, 8, 8, 0.98));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.showcase-page .showcase-block {
  content-visibility: visible;
}

.showcase-page .showcase-grid-cards {
  content-visibility: visible;
}

.showcase-card {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease, border-color 0.22s ease;
  box-shadow: none;
}

.showcase-card:hover {
  transform: translateY(-5px) scale(1.012);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  border-color: #505050;
}

.showcase-card > img {
  height: 300px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-card:hover > img {
  transform: scale(1.04);
}

.showcase-page .site-footer {
  margin-top: 6px;
}

/* ======================================== RESPONSIVE LAYOUT ======================================== */
html,
body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1366px) {
  .hero-left h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .showcase-shell,
  .showcase-container,
  .projects-container,
  .contact-container {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1024px) {
  .container {
    width: 94%;
  }

  .header {
    padding: 18px 0;
  }

  .nav {
    gap: 20px;
  }

  .nav ul {
    gap: 16px;
  }

  .nav a {
    font-size: 13px;
  }

  .nav-btn {
    padding: 8px 14px;
  }

  .hero {
    min-height: 72vh;
    height: auto;
    padding: 82px 0 64px;
    background-position: 72% center;
  }

  .hero-left h1 {
    font-size: clamp(2.2rem, 7vw, 3.4rem);
  }

  .about-inner,
  .contact-container,
  .showcase-grid,
  .services-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services-column {
    width: 100%;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .faq-column {
    gap: 14px;
  }

  .projects-grid,
  .more-projects-grid,
  .showcase-grid-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .divider {
    display: none;
  }

  .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .services-card {
    padding: 56px 6%;
  }

  .projects,
  .testimonials-section,
  .contact-section {
    padding: 56px 6%;
  }

  .projects-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-left {
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .container {
    width: 94%;
  }

  body {
    padding-top: 78px;
  }

  body.home-modern {
    padding-top: 0;
  }

  .header {
    padding: 14px 0;
  }

  .hero {
    min-height: 68vh;
    padding: 78px 0 52px;
    background-position: 78% center;
  }

  .hero-left {
    max-width: 100%;
    padding-inline: 10px;
    text-align: center;
  }

  .hero-left h1 {
    font-size: clamp(1.95rem, 9vw, 2.7rem);
  }

  .hero-left p {
    font-size: 15px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .stat {
    padding: 6px 0;
  }

  .about-container {
    margin-top: -42px;
  }

  .about-inner {
    padding: 20px;
    border-radius: 16px;
  }

  .about-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-socials {
    justify-content: center;
  }

  .services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services-column {
    display: contents;
  }

  .projects-grid,
  .more-projects-grid,
  .showcase-grid-cards {
    grid-template-columns: 1fr;
  }

  .project-card img,
  .showcase-card > img,
  .more-project-card img,
  .slider-frame img {
    height: 240px;
    object-fit: cover;
  }

  .slider-controls {
    flex-wrap: wrap;
    gap: 10px;
  }

  .slider-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .showcase-media-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .showcase-media-head p {
    text-align: left;
    max-width: 100%;
  }

  .showcase-shell {
    padding: 20px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .mobile-sidebar {
    width: min(88vw, 320px);
  }

  .home-modern .about-container,
  .home-modern .services-card,
  .home-modern .stats,
  .home-modern .projects,
  .home-modern .testimonials-section,
  .home-modern .contact-section {
    padding: 56px 4%;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 74px;
  }

  body.home-modern {
    padding-top: 0;
  }

  .logo-light {
    font-size: 16px;
  }

  .logo-badge {
    font-size: 10px;
    padding: 3px 8px;
  }

  .mobile-toggle {
    padding: 13px 11px 10px;
  }

  .hero-left h1 {
    font-size: clamp(1.7rem, 10vw, 2.2rem);
  }

  .hero-left {
    padding-inline: 14px;
    text-align: center;
  }

  .hero-left p,
  .about-description,
  .services-right p,
  .project-card p,
  .showcase-head p {
    font-size: 14px;
  }

  .header-button {
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }

  .showcase-shell {
    padding: 16px;
  }

  .showcase-block {
    padding: 12px;
  }

  .showcase-block-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-card img,
  .showcase-card > img,
  .more-project-card img {
    height: 220px;
  }

  .client-avatar {
    width: 40px;
    height: 40px;
  }
}

/* ================= PROJECT IMAGE FIT ================= */
/* Keep all project card images visually consistent across pages */
.showcase-card > img,
.project-card img,
.more-project-card img,
.index-project-media {
  width: 100%;
  height: 380px;
  object-fit: cover !important;
  object-position: top center;
  background: transparent !important;
}

/* ================= MOBILE IMAGE LIGHTBOX ================= */
.mobile-zoomable {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2200;
  padding: 18px;
  gap: 12px;
}

.image-lightbox.active {
  display: flex;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.28s ease;
  transform-origin: center;
}

#lightboxImage {
  max-width: 96vw;
  max-height: 88vh;
  object-fit: contain !important;
  border: 1px solid #2f2f2f;
  border-radius: 10px;
  background: #090909;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #3a3a3a;
  background: #111;
  color: #f2f2f2;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-rotate {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #3a3a3a;
  background: #111;
  color: #f2f2f2;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2201;
}

.lightbox-rotate:hover {
  background: #f2f2f2;
  color: #080808;
  border-color: #f2f2f2;
}

.lightbox-nav-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lightbox-counter {
  min-width: 70px;
  text-align: center;
  color: #f0f0f0;
  font-size: 13px;
  letter-spacing: 0.6px;
}

.lightbox-nav {
  position: static;
  transform: none;
  border: 1px solid #3a3a3a;
  background: #111;
  color: #f2f2f2;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  cursor: pointer;
  z-index: 2201;
  min-width: 96px;
  justify-content: center;
}

.lightbox-nav:hover {
  background: #f2f2f2;
  color: #080808;
  border-color: #f2f2f2;
}

.image-lightbox.is-rotated .lightbox-content {
  transform: rotate(90deg);
}

.image-lightbox.is-rotated #lightboxImage {
  max-width: 84vh;
  max-height: 84vw;
}

.image-lightbox.is-rotated .lightbox-nav-row {
  min-width: min(84vh, 96vw);
  justify-content: center;
}

.image-zoom-btn {
  display: none;
  margin: 10px 12px 0;
  border: 1px solid #383838;
  background: #101010;
  color: #f0f0f0;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.22s ease;
}

.image-zoom-btn:hover {
  background: #f0f0f0;
  color: #080808;
  border-color: #f0f0f0;
}

@media (max-width: 768px) {
  .image-zoom-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px 0 14px;
  }

  .more-projects-section .image-zoom-btn {
    display: none !important;
  }

  .projects-page .showcase-card > img,
  .projects-page .slider-frame img {
    object-fit: contain !important;
    background: #0b0b0b !important;
  }

  .projects-page .showcase-card > img {
    height: 240px;
  }

  .projects-page .slider-frame img {
    height: auto !important;
    max-height: none !important;
    object-fit: fill !important;
    object-position: center center;
    background: transparent !important;
  }

  .projects-page .slider-frame-hero {
    aspect-ratio: auto;
  }
}

@media (max-width: 576px) {
  .projects-page .showcase-card > img {
    height: 220px;
  }

  .projects-page .slider-frame img {
    height: auto !important;
    max-height: none !important;
    object-fit: fill !important;
    object-position: center center;
    background: transparent !important;
  }
}

@media (max-width: 768px) {
  .showcase-card > img,
  .project-card img,
  .more-project-card img,
  .index-project-media {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .showcase-card > img,
  .project-card img,
  .more-project-card img,
  .index-project-media {
    height: 220px;
  }
}

@media (min-width: 769px) {
  .projects-page .slider-frame {
    max-height: none;
  }

  .projects-page .slider-frame-hero {
    aspect-ratio: auto !important;
  }

  .projects-page .slider-frame img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: fill !important;
    object-position: center center;
    background: transparent !important;
  }
}

/* ================= LOGO IMAGE FIT ================= */
.showcase-card > img[src*="/projects/logos/"] {
  object-fit: contain !important;
  object-position: center center !important;
  background: #0b0b0b !important;
  padding: 14px;
}

.projects-page .slider-frame img[src*="/projects/logos/"] {
  object-fit: contain !important;
  object-position: center center !important;
  background: #0b0b0b !important;
  padding: 14px;
}

