/* =========================
   BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: white;
  overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  padding: 15px 40px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0 5px 25px rgba(0, 255, 255, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.logo span {
  color: cyan;
  text-shadow: 0 0 8px cyan;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.nav-links a:hover {
  color: white;
}

.cta-btn {
  padding: 8px 16px;
  border: 1px solid cyan;
  background: transparent;
  color: cyan;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background: cyan;
  color: black;
  box-shadow: 0 0 15px cyan;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* =========================
   HERO + 3D
========================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  width: 90%;
  max-width: 900px;
}

#three-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}


.hero-text {
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  padding: 30px 50px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 255, 0.25);
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-text p {
  color: #ccc;
  font-size: 15px;
}

/* ===== Stats ===== */

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
}

.stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 255, 255, 0.25);
  border-radius: 14px;
  padding: 18px 10px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: 0.35s;
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.35);
}

.stat-number {
  display: block;
  font-size: 26px;
  font-weight: bold;
  color: cyan;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: #bbb;
}

/* =========================
   SERVICES
========================= */

.services {
  padding: 120px 60px;
  background: #070707;
  text-align: center;
}

.services h2 {
  font-size: 40px;
  margin-bottom: 40px;
}

.services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: auto;
}

.services .grid div {
  padding: 22px 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 255, 0.2);
  font-weight: 600;
  transform: translateY(-4px);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.35);
}

.services .grid div:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.45);
  border-color: cyan;
}


/* =========================
   TECHNOLOGIES
========================= */

.technologies {
  padding: 50px 60px 50px 60px;
  background: #060606;
  text-align: center;
}

.technologies h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.tech-subtitle {
  color: #aaa;
  margin-bottom: 40px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.tech-card {
  padding: 16px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 255, 0.2);
  font-size: 14px;
  transition: 0.3s;
  transform: translateY(-4px);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.35);
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.45);
  border-color: cyan;
}

/* =========================
   VIEW BUTTON
========================= */

.view-btn {
  margin-top: 30px;
  padding: 10px 18px;
  border: 1px solid cyan;
  background: transparent;
  color: cyan;
  border-radius: 6px;
  cursor: pointer;
}

/* =========================
   MODALS
========================= */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #0b0b0b;
  padding: 30px;
  border-radius: 14px;
  max-width: 700px;
  width: 92%;
  max-height: 85vh;
  overflow: auto;
  text-align: center;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.modal-grid div {
  padding: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 13px;
}

.modal-close {
  margin-top: 20px;
  padding: 8px 16px;
  border: 1px solid cyan;
  background: transparent;
  color: cyan;
  cursor: pointer;
  border-radius: 6px;
}


/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 768px) {

  .hero-content {
    top: 35%;
    width: 100%;
    padding: 10px;
  }

  .hero-text {
    width: 90%;
    padding: 20px 25px;
  }

  .hero-text h1 {
    font-size: 20px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box {
    padding: 14px 8px;
  }

  .stat-number {
    font-size: 22px;
  }

  .services,
  .technologies {
    padding: 80px 20px;
  }

  .services h2,
  .technologies h2 {
    font-size: 28px;
  }

  .services .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .services .grid div {
    font-size: 13px;
    padding: 16px 8px;
  }

  /* Tech horizontal swipe */
  /* ============================
   TECHNOLOGIES – MOBILE FIX
============================ */

  @media (max-width: 768px) {

    .technologies {
      padding: 60px 16px 80px;
    }

    .technologies h2 {
      font-size: 26px;
      margin-bottom: 6px;
    }

    .tech-subtitle {
      font-size: 13px;
      margin-bottom: 22px;
      line-height: 1.5;
    }

    .tech-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .tech-card {
      padding: 13px 10px;
      font-size: 12px;
      border-radius: 8px;
      text-align: center;
    }

    .open-tech {
      margin-top: 22px;
      padding: 9px 14px;
      font-size: 13px;
    }

  }


  .nav-links {
    position: fixed;
    top: 65px;
    right: -100%;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    width: 220px;
    padding: 25px;
    transition: 0.4s;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }
}

/* =========================
   PROCESS SECTION
========================= */

.process {
  padding: 120px 20px;
  background: #050505;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-header h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 10px;
}

.process-subtitle {
  color: cyan;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.process-timeline-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

/* Center Line */
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-progress {
  position: fixed;
  /* For visual debugging before GSAP: absolute */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  /* Animated by GSAP */
  background: cyan;
  box-shadow: 0 0 15px cyan;
}

/* Individual Steps */
.process-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
  width: 100%;
  position: relative;
  z-index: 2;
}

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

.step-content,
.step-graphic {
  width: 45%;
}

/* Number Badge */
.step-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #0a0a0a;
  border: 2px solid cyan;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: cyan;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
  z-index: 3;
}

.step-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #fff;
}

.step-content p {
  color: #aaa;
  font-size: 16px;
  line-height: 1.6;
}

/* Left Align Odd Steps, Right Align Even Steps */
.process-step .step-content {
  text-align: right;
  padding-right: 40px;
}

.process-step.step-even {
  flex-direction: row-reverse;
}

.process-step.step-even .step-content {
  text-align: left;
  padding-left: 40px;
  padding-right: 0;
}

/* Graphic Boxes */
.graphic-box {
  background: #0f0f0f;
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  /* gap: 15px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.graphic-box:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.3);
}

.icon-large {
  font-size: 48px;
  color: cyan;
}

.graphic-box span {
  font-size: 18px;
  color: #ddd;
  font-weight: 500;
}

.graphic-code {
  align-items: flex-start;
  font-family: 'Courier New', Courier, monospace;
  font-size: 15px;
  line-height: 1.5;
  background: #050505;
}

/* Responsive Process Section */
@media (max-width: 900px) {
  .timeline-line {
    left: 20px;
    transform: none;
  }

  .step-number {
    left: 20px;
    top: 0;
    transform: translate(-50%, -10px);
  }

  .process-step {
    flex-direction: column !important;
    align-items: flex-start;
    margin-bottom: 60px;
  }

  .step-content {
    order: 1;
    width: 100%;
    padding-left: 60px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .step-graphic {
    order: 2;
    width: 100%;
    padding-left: 60px !important;
    margin-top: 30px !important;
  }
}

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

.testimonials {
  padding: 120px 60px;
  background: #000000;
  text-align: center;
  position: relative;
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  text-align: left;
}

.testimonials-quote-mark {
  color: cyan !important;
  font-size: 80px;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 20px;
  letter-spacing: -5px;
}

.testimonials-slider {
  min-height: 300px;
  position: relative;
  margin-bottom: 40px;
}

.testimonial-slide {
  display: none;
  animation: fadeSlide 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-quote-text {
  font-size: 32px;
  line-height: 1.4;
  font-style: italic;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.testimonial-author-block {
  margin-bottom: 30px;
}

.testimonial-author-block h4 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 5px;
  font-weight: 600;
}

.testimonial-author-block p {
  font-size: 16px;
  color: #aaaaaa;
}

.testimonial-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.testimonial-tag {
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  border: 1px solid #333333;
  color: #aaaaaa;
  transition: all 0.3s ease;
}

.testimonial-tag.active {
  border-color: cyan !important;
  color: cyan !important;
}

/* Nav Buttons */
.testimonials-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  pointer-events: none;
}

.test-nav-btn {
  pointer-events: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateX(-100px);
  /* Move outside */
}

.test-nav-btn.next {
  transform: translateX(100px);
}

.test-nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFC107;
  color: #FFC107;
}

/* Progress Indicators */
.testimonials-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  gap: 20px;
}

.progress-bar {
  height: 2px;
  background: cyan !important;
  width: 0%;
  transition: width 0.4s ease;
  max-width: 300px;
  margin: 0 auto;
}

.progress-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.test-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.test-dot.active {
  background: cyan !important;
}

@media (max-width: 1200px) {
  .test-nav-btn {
    transform: translateX(-20px);
  }

  .test-nav-btn.next {
    transform: translateX(20px);
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 80px 20px;
  }

  .testimonial-quote-text {
    font-size: 24px;
  }

  .test-nav-btn {
    display: none;
    /* Hide arrows on small mobile, rely on dots/swipe if implemented */
  }
}

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

.portfolio {
  padding: 120px 60px;
  background: #050505;
  text-align: center;
}

.portfolio h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.portfolio-subtitle {
  color: #aaa;
  margin-bottom: 50px;
}

.portfolio-grid {
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Portfolio Card */
.portfolio-card {
  background: #0b0b0b;
  border-radius: 16px;
  padding: 0;
  cursor: pointer;
}

.portfolio-card-inner {
  padding: 16px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover .portfolio-card-inner {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.15);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.15);
}

.force-hover-reset .portfolio-card:hover {
  transform: none !important;
  box-shadow: none !important;
}


/* Image container */
.portfolio-thumb {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1e293b, #020617);
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.05);
}


.portfolio-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.portfolio-card p {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 8px;
}

.portfolio-card span {
  font-size: 12px;
  color: cyan;
}

/* =========================
   CONTACT (Commented out for now)
========================= */
/*
.contact {
  padding: 120px 60px;
  background: #070707;
  text-align: center;
}

.contact h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.contact-subtitle {
  color: #aaa;
  margin-bottom: 40px;
}

.contact-wrapper {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info p {
  margin-bottom: 15px;
  color: #ccc;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  background: #050505;
  color: white;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form button {
  padding: 12px;
  border: 1px solid cyan;
  background: transparent;
  color: cyan;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: cyan;
  color: black;
  box-shadow: 0 0 12px cyan;
}
*/

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 768px) {

  .portfolio {
    padding: 80px 20px;
  }

  .portfolio h2 {
    font-size: 28px;
  }

  .portfolio-subtitle {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .portfolio-grid {
    gap: 18px;
  }

  .portfolio-thumb {
    height: 130px;
  }

  /*
  .contact {
    padding: 80px 20px;
  }

  .contact h2 {
    font-size: 28px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 13px;
  }

  .contact-form button {
    font-size: 14px;
  }
  */

}

/* =========================
   FOOTER
========================= */

.footer {
  background: #0b0b0b;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  padding: 80px 60px 40px;
  color: #ccc;
  text-align: left;
}

.footer-top {
  text-align: center;
  margin-bottom: 60px;
}

.footer-top h2 {
  font-size: 36px;
  color: white;
  margin-bottom: 24px;
}

.footer-cta-btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid cyan;
  background: cyan;
  color: black;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.footer-cta-btn:hover {
  background: transparent;
  color: cyan;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.footer-col h3 {
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
}

.footer-logo {
  display: inline-block;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: none;
  color: white;
  margin-bottom: 16px;
}

.footer-logo span {
  color: cyan;
  text-shadow: 0 0 8px cyan;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: cyan;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.newsletter-form {
  display: flex;
  margin-top: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  background: #050505;
  color: white;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.newsletter-form input:focus {
  border-color: cyan;
}

.newsletter-form button {
  padding: 10px 16px;
  border: 1px solid cyan;
  background: cyan;
  color: black;
  font-weight: bold;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: transparent;
  color: cyan;
}

.footer-bottom {
  max-width: 1100px;
  margin: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.footer-social a:hover {
  color: cyan;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* =========================
   FOOTER MOBILE OPTIMIZATION
========================= */

@media (max-width: 768px) {
  .footer {
    padding: 60px 20px 30px;
    text-align: center;
  }

  .footer-top h2 {
    font-size: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col a {
    display: inline-block;
    margin: 0 10px 12px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* =========================
   ESTIMATE PAGE
========================= */

.estimate-header {
  padding: 180px 20px 80px;
  background: linear-gradient(to bottom, #050505, #080808);
  text-align: center;
}

.estimate-header-content h1 {
  font-size: 38px;
  margin-bottom: 16px;
  color: cyan;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.estimate-header-content p {
  font-size: 16px;
  color: #ccc;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

.estimate-section {
  padding: 40px 20px 120px;
  background: #050505;
}

.estimate-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

/* Left Form */
.estimate-form-wrapper {
  background: #0b0b0b;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.estimate-form-wrapper h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.estimate-subtitle {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 14px;
}

.estimate-form h3 {
  font-size: 18px;
  margin: 30px 0 15px;
  color: cyan;
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  padding-bottom: 8px;
}

.estimate-form h3:first-child {
  margin-top: 0;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row input,
.form-row select {
  flex: 1;
  padding: 14px;
  background: #050505;
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 6px;
  color: white;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.form-row input:focus,
.form-row select:focus,
.form-group textarea:focus {
  border-color: cyan;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
}

.form-row select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300FFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 14px top 50%;
  background-size: 10px auto;
}

.form-group textarea {
  width: 100%;
  padding: 14px;
  background: #050505;
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 6px;
  color: white;
  font-size: 14px;
  min-height: 140px;
  resize: vertical;
  outline: none;
  transition: 0.3s;
  margin-bottom: 24px;
}

.estimate-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: bold;
  background: cyan;
  color: black;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.estimate-submit-btn:hover {
  background: #00cccc;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

/* Right Sidebar */
.estimate-sidebar {
  padding-top: 20px;
}

.estimate-sidebar h2 {
  font-size: 26px;
  margin-bottom: 30px;
}

.feature-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-of-type {
  border-bottom: none;
}

.feature-item h4 {
  color: cyan;
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-item p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.need-help {
  margin-top: 40px;
  background: rgba(0, 255, 255, 0.05);
  padding: 24px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.need-help h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.need-help p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 16px;
}

.need-help a {
  display: block;
  color: cyan;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
  transition: 0.3s;
}

.need-help a:hover {
  text-shadow: 0 0 5px cyan;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
  .estimate-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .estimate-form-wrapper {
    padding: 24px;
  }
}

.project-detail {
  padding: 120px 20px 80px;
  max-width: 1100px;
  margin: auto;
}

.project-container h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.project-desc {
  color: #ccc;
  margin-bottom: 18px;
  line-height: 1.6;
}

.project-meta {
  margin-bottom: 20px;
  color: cyan;
}

.project-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.project-btn {
  padding: 10px 16px;
  border: 1px solid cyan;
  color: cyan;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.project-btn:hover {
  background: cyan;
  color: black;
}

.project-btn.outline {
  border-color: #666;
  color: #aaa;
}

.project-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.project-images img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: 0.3s;
}

.project-images img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

@media(max-width:768px) {
  .project-container h1 {
    font-size: 26px;
  }
}

/* =========================
   GROWTH / STRATEGY
========================= */

.growth {
  padding: 120px 60px;
  background: #02040a;
  /* Deep dark blue/black */
  position: relative;
  overflow: hidden;
}

.growth::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.growth-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.growth-text h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 5px;
  color: #ffffff;
}

.growth-highlight {
  color: cyan !important;
  margin-bottom: 25px !important;
}

.growth-text p {
  color: #aaaaaa;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.growth-metrics {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.growth-metrics li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.growth-metrics i {
  font-size: 24px;
  color: #FFC107;
  background: rgba(255, 193, 7, 0.1);
  padding: 15px;
  border-radius: 12px;
}

.growth-metrics strong {
  display: block;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 5px;
}

.growth-metrics span {
  font-size: 14px;
  color: #888888;
}

.growth-visual {
  position: relative;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.growth-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.growth-card.primary {
  top: 10%;
  right: 10%;
  width: 280px;
  z-index: 2;
  border-top: 1px solid cyan;
  animation: floatUp 6s ease-in-out infinite;
}

.growth-card.secondary {
  bottom: 10%;
  left: 10%;
  width: 250px;
  z-index: 1;
  border-top: 1px solid #FFC107;
  animation: floatDown 7s ease-in-out infinite;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes floatDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }
}

.g-card-header {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaaaaa;
  margin-bottom: 15px;
}

.g-card-number {
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 15px;
}

.g-card-number span {
  font-size: 32px;
  color: cyan;
}

.g-card-label {
  font-size: 14px;
  color: #cccccc;
}

.g-card-icon {
  width: 40px;
  height: 40px;
  background: #FFC107;
  color: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

.g-card-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
  margin-top: 15px;
}

.g-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px 3px 0 0;
}

.g-bar.active {
  background: #FFC107;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

@media (max-width: 900px) {
  .growth-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .growth-visual {
    height: 350px;
  }

  .growth-card.primary {
    right: 5%;
    top: 5%;
  }

  .growth-card.secondary {
    left: 5%;
    bottom: 5%;
  }
}

@media (max-width: 768px) {
  .growth {
    padding: 80px 20px;
  }

  .growth-text h2 {
    font-size: 30px;
  }
}


/* =========================
   FLOATING FAB (GET QUOTE)
========================= */

.fab-quote {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #FFC107;
  /* Makra yellow */
  color: #000000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 2px solid transparent;
}

.fab-quote:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 193, 7, 0.6);
  background: #ffffff;
  color: #000000;
  border-color: #FFC107;
}

@media (max-width: 768px) {
  .fab-quote {
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
  }

  .fab-quote span {
    display: none;
    /* Icon only on mobile */
  }

  .fab-quote {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
  }
}

/* =========================
   SUCCESS OVERLAY & ANIMATION
========================= */

.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.success-logo{
    margin-bottom:20px;
}

.success-overlay.show {
  opacity: 1;
  visibility: visible;
}

.success-card {
  background: #02040a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: translateY(30px) scale(0.95);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 450px;
  width: 90%;
}

.success-overlay.show .success-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.success-icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: #00e676;
  /* Bright Green */
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #00e676;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.success-checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: #00e676;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {

  0%,
  100% {
    transform: none;
  }

  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 40px rgba(0, 230, 118, 0.1);
  }
}

.success-card h2 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 10px;
}

.success-card p {
  font-size: 16px;
  color: #aaaaaa;
  line-height: 1.5;
}