/* ================= HERO SECTION ================= */

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

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
}

/* CENTER CONTENT PROPERLY */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 900px;        /* 🔥 center fix */
  margin: 0 auto;          /* 🔥 center fix */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 70px;
  font-weight: 300;
  font-family: 'Playfair Display', serif;
}

.hero-content span {
  font-style: italic;
}

.hero-content p {
  font-size: 16px;
  margin-top: 10px;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.hero-buttons a {
  background: #1a2b4c;
  color: #fff;
  padding: 8px 14px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-buttons a:hover {
  background: #fff;
  color:#1a2b4c;
}

/* MOBILE HERO */
@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons a {
    min-width: 180px;
    text-align: center;
  }
  
  .hero {
  height: 80vh;
    }
  
}

/* ================= WHY BROADWALK ================= */

.why-broadwalk {
  padding: 40px 0; /* 🔥 fixed (no side padding) */
  background: #fff;
}

/* CONTAINER SYSTEM (VERY IMPORTANT) */
.container {
  width: 100%;
  max-width: 1200px;   /* 🔥 keeps center on zoom */
  margin: 0 auto;
  padding: 0 20px;
}

/* FLEX LAYOUT */
.why-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.why-image {
  flex: 1;
}

.why-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* CONTENT */
.why-content {
  flex: 1;
}

.why-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  font-weight:400;
  color: #1a2b4c;
}

.subtitle {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
 font-size:18px;
}

/* POINTS */
.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.point {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

/* ICON */
.point span {
  background: #1a2b4c;
  color: #fff;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* TEXT */
.point h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color:var(--primary-light);
}

.point p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.point:hover span {
  background: #333;
}

/* TABLET */
@media (max-width: 992px) {
  .why-wrapper {
    flex-direction: column;
  }

  .why-content h2 {
    font-size: 24px;
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .why-broadwalk {
    padding: 60px 0;
  }

  .why-content {
    text-align: center;
  }

  .point {
    justify-content: center;
    text-align: left;
  }
}

/* feauters */
.projects {
  padding: 40px 0;
  background: #fafafa;
}

/* HEADER */
.section-head.center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-head h2 {
  font-size: 30px;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
 color: #1a2b4c;
}

.section-head p {
  color: #666;
  margin-top: 10px;
}

/* ================= PROJECT SLIDER ================= */

.project-slider {
  position: relative;
  margin-top: 50px;
}

/* TRACK */
.project-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.project-track::-webkit-scrollbar {
  display: none;
}

/* CARD */
.project-card {
  min-width: calc(50% - 15px);
  flex: 0 0 auto;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.project-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 22px;

  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* TEXT */
.project-overlay h3 {
  font-size: 20px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.project-overlay span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: 0.3s;
}

/* HOVER */
.project-card:hover img {
  transform: scale(1.08);
}

.project-card:hover .project-overlay h3,
.project-card:hover .project-overlay span {
  color: #fff;
}

/* CONTROLS */
.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

/* BUTTONS */
.slider-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: #fff;
  color:#1a2b4c;
  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s ease;
}

.slider-btn:hover {
  background: #1a2b4c;
  color: #fff;
  border-color: #1a2b4c;
}

/* MOBILE */
@media (max-width: 768px) {

  .project-card {
    min-width: 100%;
  }

  .project-card img {
    height: 240px;
  }

  .slider-controls {
    justify-content: center;
  }
}

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

.services-accordion {
  padding: 40px 0;
  background: #fff;
}

/* WRAPPER */
.acc-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.acc-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ITEM */
.acc-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* HEADER */
.acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.acc-header h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: 0.3s;
  color: var(--primary-light);
}

/* BODY */
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.acc-body p {
  font-size: 14px;
  color: #666;
  margin-top: 12px;
  line-height: 1.7;
}

/* ACTIVE */
.acc-item.active .acc-body {
  max-height: 140px;
}

.acc-item.active h3 {
  color: #1a2b4c;
}

/* ===== PREMIUM GRADIENT EFFECT ===== */

.acc-item:hover {
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.04),
    rgba(0,0,0,0)
  );
  padding-left: 10px;
}

.acc-item.active {
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.06),
    rgba(0,0,0,0)
  );
  padding-left: 12px;
}

/* ===== ICON (UPDATED) ===== */
/* ===== SVG ICON ===== */

.acc-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG STYLE */
.acc-icon svg {
  width: 18px;
  height: 18px;
  stroke: #999;
  stroke-width: 2;
  fill: none;
  transition: 0.35s ease;
}

/* ROTATE ON ACTIVE */
.acc-item.active .acc-icon svg {
  transform: rotate(180deg);
  stroke: #000;
}

/* HOVER */
.acc-item:hover .acc-icon svg {
  stroke: #000;
}

/* ===== IMAGE ===== */

.acc-right {
  flex: 1;
}

.acc-right img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 16px;

  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* IMAGE ANIMATION */
.acc-right img.fade-out {
  opacity: 0;
  transform: scale(1.02);
}

/* ===== SECTION HEADER ===== */

.section-head.center {
  text-align: center;
  margin-bottom: 70px;
}

.section-head h2 {
  font-size: 30px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  color: #1a2b4c;
}

.section-head p {
  color: #777;
  font-size: 16px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .acc-wrapper {
    flex-direction: column;
  }

  .acc-right {
    width: 100%;
  }

  .acc-right img {
    height: 320px;
  }
}

@media (max-width: 600px) {

  .services-accordion {
    padding: 80px 0;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .acc-header h3 {
    font-size: 18px;
    
  }

  .acc-body p {
    font-size: 14px;
  }

  .acc-icon {
    width: 22px;
    height: 22px;
  }
}

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

.timeline-wrapper {
    background-color: #f7f9fc;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* min-height: 100vh; */
}

/* Header Section */
.timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-header h2 {
    margin: 0;
    font-size: 30px;
    letter-spacing: 5px;
    color: #333;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    color:#1a2b4c;
}

.timeline-header p {
    margin: 5px 0;
    letter-spacing: 8px;
    color: #999;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* The Grid */
.timeline-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    width: 100%;
}

/* Individual Cards */
.step-card {
    background: white;
    width: 280px;
    border-radius: 25px;
    position: relative;
    padding: 60px 25px 100px 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

/* Top Badge */
.badge {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    border: 6px solid white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 5;
}

.badge span { font-size: 0.6rem; font-weight: bold; margin-bottom: -3px; }
.badge strong { font-size: 1.4rem; font-weight: 800; }

.icon-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.icon-wrap svg {
    width: 45px;
    height: 45px;
    stroke: #444;
    stroke-width: 1.2;
    fill: none;
}

.step-card h2 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 800;
   color: #1a2b4c;
}

.step-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
   
}

/* Bottom Ribbon */
.card-footer {
    position: absolute;
    bottom: 30px;
    left: -12px;
    width: calc(100% - 20px);
}

.ribbon {
    padding: 12px 20px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 0 30px 30px 0;
    position: relative;
    display: block;
}

.ribbon::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 10px solid;
    border-left: 12px solid transparent;
}

/* ===== CARD VARIANTS ===== */

/* MAIN */
.card-red h2 { color: var(--primary-light); }
.card-red .badge,
.card-red .ribbon { background: var(--primary-light); }
.card-red .ribbon::before { border-top-color: var(--primary-soft); }


/* LIGHT */
.card-green h2 { color: var(--primary-light); }
.card-green .badge,
.card-green .ribbon { background: var(--primary-light); }
.card-green .ribbon::before { border-top-color: var(--primary-soft); }


/* SOFT */
.card-blue h2 { color: var(--primary-light); }
.card-blue .badge,
.card-blue .ribbon { background: var(--primary-light); }
.card-blue .ribbon::before { border-top-color: var(--primary-soft); }


/* PALE */
.card-purple h2 { color: var(--primary-light); }
.card-purple .badge,
.card-purple .ribbon { background: var(--primary-light); }
.card-purple .ribbon::before { border-top-color: var(--primary-soft); }

/* Mobile View */
@media (max-width: 600px) {
    .timeline-grid { flex-direction: column; align-items: center; }
    .step-card { width: 95%; margin-bottom: 20px; }
}

/* suppliers */
/* ================= SUPPLIERS ================= */

.suppliers {
  padding: 40px 0;
  background: #f9f9f9;
}

/* SLIDER */
.logo-slider {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

/* TRACK */
.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

/* ITEM */
.logo-item {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
  margin-right: 40px;

  /* filter: grayscale(100%); */
  /* opacity: 0.6; */
  transition: 0.3s ease;
}

/* IMAGE */
.logo-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* HOVER */
.logo-item:hover {
  /* filter: grayscale(0%); */
  opacity: 1;
  transform: scale(1.05);
}

/* PAUSE ON HOVER */
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* ANIMATION */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 768px) {

  .logo-item {
    width: 140px;
    margin-right: 20px;
  }

  .logo-item img {
    max-height: 50px;
  }
}

/* contact form */
/* ===== CONTACT CLEAN ===== */

.contact-clean {
  padding: 40px 0;
  background: #fff;
}

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

/* LEFT */
.contact-left h2 {
  font-size: 30px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
  font-weight:400;
  color:#1a2b4c;
}

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

/* META INFO */
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-meta strong {
  display: block;
  font-size: 15px;
  color: var(--primary-light)
}

.contact-meta span {
  font-size: 13px;
  color: #777;
}

/* RIGHT FORM */
.contact-right {
  background: #fafafa;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #eee;
}

/* INPUT ROW */
.row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

/* INPUTS */
input, select, textarea {
  padding: 13px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
  transition: 0.2s;
}

/* FOCUS */
input:focus, select:focus, textarea:focus {
  border-color: #000;
}

/* TEXTAREA */
textarea {
  height: 100px;
  resize: none;
}

/* BUTTON */
button {
  width: 100%;
  padding: 14px;
  background: #1a2b4c;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  border-radius:15px
}

button:hover {
  background: var(--primary-light);
}

/* ERROR */
.error {
  font-size: 12px;
  color: red;
  margin-top: 4px;
}

/* SUCCESS MSG */
#formMsg {
  margin-top: 10px;
  font-size: 14px;
}

/* PRIVACY */
.privacy {
  font-size: 12px;
  color: #777;
  margin-top: 10px;
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 768px) {

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

  .contact-left h2 {
    font-size: 24px;
  }

  .contact-right {
    padding: 25px;
  }
}
/* testimonials */
/* =========================
   SECTION
========================= */
.testimonials {
  padding: 40px 20px;
  text-align: center;
}

.header-t h2 {
  font-size: 30px;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  color: #1a2b4c;
}

.header-t p {
  color: #666;
  margin-top: 8px;
}

/* =========================
   VIEWPORT
========================= */
.slider {
  max-width: 1200px;
  margin: 60px auto 0;
  overflow: hidden;
  position: relative;
}

/* =========================
   TRACK (LOOP ANIMATION)
========================= */
.broadwalkReviewDeck {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLoop 25s linear infinite;
}

/* PAUSE ON HOVER */
.slider:hover .broadwalkReviewDeck {
  animation-play-state: paused;
}

/* LOOP KEYFRAME */
@keyframes scrollLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================
   CARD STYLE
========================= */
.card {
  width: 320px;
  flex-shrink: 0;
}

.inner {
  background: #fff;
  border-radius: 16px;
  padding: 22px;

  border: 1px solid rgba(0,0,0,0.06);

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);

  transition: 0.3s ease;
}

.inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

/* =========================
   TOP SECTION
========================= */
.top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.top img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #7b1e2b;
  object-fit: cover;
}

.top h4 {
  font-size: 15px;
  font-weight: 600;
  color:var(--primary-light);
}

.location {
  font-size: 12px;
  color: #888;
}

/* STARS */
.stars {
  color: #f5b301;
  font-size: 13px;
  margin-top: 2px;
}

/* TEXT */
.inner p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .card {
    width: 280px;
  }

  .header-t h2 {
    font-size: 24px;
  }
}

/* cta */
/* =========================
   CTA SECTION
========================= */
.cta {
  position: relative;
  padding: 90px 20px;
  min-height: 420px;
  margin-bottom: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  background: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

/* DARK OVERLAY */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

/* CONTENT */
.cta-wrapper {
  position: relative;
  max-width: 950px;
  text-align: center;
}

/* TITLE */
.cta-wrapper h2 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
}

/* TEXT */
.cta-wrapper p {
  font-size: 18px;
  color: #e6e6e6;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* BUTTON WRAP */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* BUTTON */
.btn {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 20px;
  border-radius: 8px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 500;

  transition: 0.3s ease;
}

/* PRIMARY */
.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-light);
}

/* OUTLINE */
.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* SVG ICON */
.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .cta-wrapper h2 {
    font-size: 24px;
  }

  .cta-wrapper p {
    font-size: 14px;
  }

}
