* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    background-color: black;
}

/* Background styling */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('https://images.unsplash.com/photo-1487956382158-bb926046304a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Main content container */
.content-container {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.navbar {
    padding: 2.5rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 1.3rem 3.5rem;
    border-radius: 60px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.nav-item {
    position: relative;
    flex: 1;
    text-align: center;
    margin: 0 0.3rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    border-radius: 30px;
    white-space: nowrap;
}

.nav-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.07);
}

/* Hover line effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, transparent, gold, transparent);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1.8);
}

/* Hero Section */
.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Main heading */
.main-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
    padding: 0 1rem;
    position: relative;
    text-align: center;
}

/* SIMPLE GLASS EFFECT FOR TEXT */
.main-heading .gold-text {
    color: #f5c400;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.4),
        0 2px 2px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    background: rgba(144, 132, 56, 0.1);
    padding: 2px 5px;
    border-radius: 3px;
}

.main-heading .lavender-text {
    color: rgba(154, 101, 173, 0.95);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.4),
        0 2px 2px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    background: rgba(172, 150, 180, 0.1);
    padding: 2px 5px;
    border-radius: 3px;
}

.main-heading .white-text {
    color: rgba(255, 255, 255, 0.95);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.4),
        0 2px 2px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 5px;
    border-radius: 3px;
}

.subheading {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 3.5rem;
    max-width: 750px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    padding: 0 1.5rem;
}

/* CTA Button */
.cta-button {
    background: #f5c400;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.95);
    padding: 1.3rem 3.2rem;
    font-size: 1.15rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    backdrop-filter: blur(12px);
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    min-width: 230px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #867b54, transparent);
    transition: left 0.7s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover .button-icon {
    transform: translateX(8px);
}

.button-icon {
    font-size: 1.1rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
}


/* =========================
   PORTFOLIO SECTION
========================= */

/* Helps anchor jump not hide behind fixed navbar */
#portfolio {
  scroll-margin-top: 90px; /* adjust if your navbar is taller/shorter */
}

.portfolio-sec {
  background: #0b0b0b;
  color: #fff;
}

/* HERO */
.portfolio-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.portfolio-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.portfolio-hero__content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 24px;
}

.portfolio-hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0 0 10px;
}

.portfolio-hero__subtitle {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.85;
  line-height: 1.6;
  font-family: "Open Sans", sans-serif;
}

/* WRAP */
.portfolio-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 16px 60px;
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.portfolio-card {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
}

.portfolio-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.portfolio-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.25s ease;
}

.portfolio-card:hover .portfolio-card__img {
  transform: scale(1.06);
}

.portfolio-card__body {
  padding: 14px 14px 16px;
}

.portfolio-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.portfolio-card__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.portfolio-card__year {
  opacity: 0.6;
  font-size: 14px;
  white-space: nowrap;
  font-family: "Open Sans", sans-serif;
}

.portfolio-card__desc {
  margin: 6px 0 10px;
  opacity: 0.75;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

/* TAGS */
.portfolio-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.portfolio-tag--interior { background: #d8a800; color: #111; }
.portfolio-tag--arch     { background: #d8a800; color: #111; } /* same gold look */
.portfolio-tag--brand    { background: #d8a800; color: #111; }
.portfolio-tag--market   { background: #d8a800; color: #111; }


/* SECTION */
.services-section {
    background: #0b0b0f;
    padding: 70px 0;
}

/* TEXT BLOCK */
.services-text {
    text-align: center;
    margin-bottom: 30px;
}

.services-text__title {
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    margin-bottom: 8px;
}

.services-text__subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
}

/* VIDEO BLOCK */
.services-video-wrapper {
    justify-content: center;
    align-items: center;
    position: relative;
    width: 90%;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    margin-left: 100px;
}

.services-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* VIDEO OVERLAY (ISOLATED) */
.services-video-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
    background-color: black;
    transition: opacity 0.3s ease;
}

.services-video-play {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.35);
    position: relative;
}

.services-video-play::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%);
    width: 0;
    height: 0;
    border-left: 18px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

/* Hide overlay when playing */
.services-video-wrapper.is-playing .services-video-overlay {
    opacity: 0;
}

/* =========================
   SERVICES CARDS SECTION
   ========================= */

.svc-cards {
    background: #050506;
    padding: 60px 0;
}

/* 3-column layout */
.svc-cards__wrap {
    width: min(1400px, 96%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 44px;
    row-gap: 24px;
}


/* CARD */
.svc-card {
    background: #070708;
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.03) inset,
        0 20px 60px rgba(0, 0, 0, 0.62);
    position: relative;
    min-height: 700px;

    display: flex;
    flex-direction: column;
}

/* ICON SQUARE */
.svc-card__icon {
    width: 62px;
    height: 62px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    margin: 6px auto 18px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.55);
}

.svc-card__icon--gold {
    background: linear-gradient(135deg, #fff2a1, #cdbb54);
}

.svc-card__icon--orange {
    background: linear-gradient(135deg, #ffb000, #ff6a00);
}

.svc-card__icon--blue {
    background: linear-gradient(135deg, #3fe0c4, #7a5cff);
}

/* icon color */
.svc-card__iconSvg {
    width: 28px;
    height: 28px;
    color: #0a0a0d;
}

/* TEXT */
.svc-card__title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
}

.svc-card__desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0 0 14px;
    max-width: 96%;
}

/* =========================
   CHECK LIST (with consistent height)
   This is what aligns ALL grids across cards
   ========================= */

.svc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 10px;

    /* IMPORTANT: forces same vertical footprint */
    min-height: 132px;
}

.svc-list__item {
    color: rgba(255, 255, 255, 0.86);
    font-size: 13.5px;
    line-height: 1.45;
    position: relative;
    padding-left: 30px;
}

.svc-list__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid #22c55e;

    /* more closed gap */
    border-top-color: rgba(34, 197, 94, 0.6);
    transform: rotate(35deg);
}

.svc-list__item::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 6px;
    width: 7px;
    height: 10px;
    border-right: 2px solid #22c55e;
    border-bottom: 2px solid #22c55e;
    transform: rotate(40deg);

    /* realistic escape (not too much) */
    translate: 2px -2px;
}

/* =========================
   IMAGE GRID (aligned)
   ========================= */

.svc-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.svc-grid__img {
    height: 78px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.svc-grid__real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   BUTTON (aligned across cards)
   ========================= */

.svc-btn {
    margin-top: auto;
    /* pushes button to same baseline */
    width: min(260px, 100%);
    display: block;
    margin-left: auto;
    margin-right: auto;

    padding: 11px 16px;
    border-radius: 9px;
    border: none;

    background: #f5c400;
    color: #0b0b0f;

    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.svc-btn:hover {
    filter: brightness(0.96);
}

.svc-btn:active {
    transform: translateY(1px);
}


/* =========================
   ABOUT SECTION
   ========================= */

.about-sec {
    background: #050506;
    /* deep black like your site */
}

/* TOP BANNER */
.about-sec__banner {
    position: relative;
    width: 100%;
    height: 320px;
    /* adjust if you want taller */
    overflow: hidden;
}

.about-sec__banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* darken overlay for text readability */
.about-sec__banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* centered text on banner */
.about-sec__banner-content {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 0 18px;
    z-index: 1;
}

.about-sec__banner-title {
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;
    margin: 0 0 6px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.about-sec__banner-subtitle {
    max-width: 900px;
    font-size: 14px;
    line-height: 1.45;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.75);
}

/* BODY */
.about-sec__body {
    padding: 44px 0 70px;
}

.about-sec__wrap {
    width: min(1280px, 94%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr 1fr;
    /* left a bit wider */
    gap: 42px;
    align-items: start;
}

/* LEFT CONTENT */
.about-sec__title {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 16px;
    font-family: 'Montserrat', sans-serif;
}

.about-sec__lead {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.86);
    max-width: 620px;
}

.about-sec__text {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    max-width: 720px;
}

/* STATS GRID (2x2) */
.about-sec__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: min(560px, 100%);
}

.about-stat {
    background: #f5c400;
    /* yellow cards */
    border-radius: 10px;
    padding: 22px 18px;
    text-align: center;
}

.about-stat__value {
    font-size: 34px;
    font-weight: 900;
    color: #0b0b0f;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.about-stat__label {
    font-size: 13px;
    color: rgba(11, 11, 15, 0.8);
}

/* RIGHT IMAGE */
.about-sec__image-card {
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
}

.about-sec__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    /* close to your screenshot */
}

.process-sec {
    background: #050506;
    padding: 70px 0;
}

/* MAIN RECTANGULAR PANEL */
.process-sec__panel {
    width: 90%;
    /* THIS is what actually increases width */
    margin: 0 auto;
    background: #8f8f92;
    padding: 54px clamp(24px, 4vw, 64px) 56px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}


/* Header */
.process-sec__head {
    text-align: center;
    margin-bottom: 38px;
}

.process-sec__title {
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.process-sec__subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

/* Steps */
.process-sec__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 56px;
}

.process-step {
    text-align: center;
}

.process-step__icon {
    width: 64px;
    height: 44px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.process-step__icon::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: translateX(-60%) rotate(20deg);
    animation: proc-sheen 3.2s ease-in-out infinite;
}

@keyframes proc-sheen {
    0% {
        transform: translateX(-70%) rotate(20deg);
        opacity: 0;
    }

    40% {
        opacity: .6;
    }

    100% {
        transform: translateX(70%) rotate(20deg);
        opacity: 0;
    }
}

.process-step__icon--discovery {
    background: linear-gradient(135deg, #ffcf57, #9be37a);
}

.process-step__icon--design {
    background: linear-gradient(135deg, #8a3ffc, #58a6ff);
}

.process-step__icon--collab {
    background: linear-gradient(135deg, #9bd56a, #1f6b63);
}

.process-step__icon--delivery {
    background: linear-gradient(135deg, #ffb158, #d65b72);
}

.process-step__svg {
    width: 22px;
    height: 22px;
    color: #0b0b0f;
}

.process-step__title {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.process-step__text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 260px;
    margin: 0 auto;
}

/* CTA */
.process-sec__cta {
    text-align: center;
    margin: 18px 0 46px;
}

.process-sec__cta-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.process-sec__cta-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 18px;
}

.process-sec__cta-btn {
    background: #f5c400;
    border: none;
    border-radius: 10px;
    padding: 12px 26px;
    font-weight: 800;
    cursor: pointer;
    min-width: 230px;
}

/* Mission */
.process-sec__mission {
    text-align: center;
}

.process-sec__mission-title {
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.process-sec__mission-text {
    max-width: 980px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* =========================
   VISION + TEAM SECTION
   ========================= */

.vision-team {
    background: linear-gradient(180deg, #caa13a 0%, #7f8150 45%, #1f6f7b 100%);
    padding: 70px 0 90px;
}

.vision-team__wrap {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 34px);
}

.vision-team__head {
    text-align: center;
    margin-bottom: 26px;
}

.vision-team__head--team {
    margin-top: 54px;
}

.vision-team__title {
    margin: 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(34px, 3.6vw, 54px);
}

/* =========================
   OUR VISION CARDS
   ========================= */

.vision-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
    align-items: stretch;
}

.vision-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 18px 18px 20px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.vision-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #0b0b0f;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
}

/* ✅ FIX HERE: makes ALL icons (including heart) white */
.vision-card__svg {
    width: 22px;
    height: 22px;
    color: #ffffff;
    /* <--- THIS is the fix */
}

.vision-card__title {
    margin: 0 0 10px;
    color: #0b0b0f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
}

.vision-card__text {
    margin: 0;
    color: rgba(0, 0, 0, 0.72);
    line-height: 1.6;
    font-size: 14px;
    max-width: 310px;
}

/* =========================
   TEAM CARDS
   ========================= */

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
    align-items: stretch;
}

.team-card {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(0, 0, 0, 0.65);
}

.team-card__media {
    padding: 14px;
    background: rgba(0, 0, 0, 0.55);
}

.team-card__imgPlaceholder {
    height: 240px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.team-card__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.team-card__meta {
    background: #050506;
    padding: 14px 14px 16px;
}

.team-card__name {
    color: #fff;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 4px;
}

.team-card__role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* =========================
   RESPONSIVE
   ========================= */



/* =========================
   CONTACT SECTION (Get in Touch)
   ========================= */

.contact-sec {
    background: #050506;
    padding: 60px 0 80px;
}

.contact-sec__wrap {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 34px);
}

/* =========================
   TOP BANNER
   ========================= */

.contact-hero {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    height: 260px;
    box-shadow: 0 20px 65px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    padding: 0 3vw;
    /* controls how close it gets to the edges */
}


.contact-hero__image {
    width: 100%;
    height: 360px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}


.contact-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.contact-hero__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 18px;
}

.contact-hero__title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 4vw, 64px);
    color: #ffffff;
    line-height: 1.05;
}

.contact-hero__subtitle {
    margin: 10px auto 0;
    max-width: 720px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

/* =========================
   BODY: 2 columns
   ========================= */

.contact-body {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 36px;
    align-items: start;
}

/* =========================
   LEFT: CONTACT INFO
   ========================= */

.contact-info__title {
    margin: 0 0 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(34px, 3.2vw, 54px);
    color: #ffffff;
}

.contact-info__subtitle {
    margin: 0 0 26px;
    max-width: 560px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.contact-info__list {
    display: grid;
    gap: 22px;
    margin-bottom: 26px;
}

.contact-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: center;
}

.contact-item__icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.contact-item__icon--email {
    background: linear-gradient(180deg, #b7f3b3, #50d7a0);
}

.contact-item__icon--phone {
    background: linear-gradient(180deg, #f1c34a, #f6e27d);
}

.contact-item__icon--office {
    background: linear-gradient(180deg, #7aa7ff, #8b7dff);
}

.contact-item__svg {
    width: 22px;
    height: 22px;
    color: #0b0b0f;
}

.contact-item__label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    margin-bottom: 2px;
}

.contact-item__value {
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.45;
}

/* =========================
   Office Hours (catchy)
   ========================= */

.office-hours {
    margin-top: 10px;
}

.office-hours__title {
    margin: 0 0 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: #ffffff;
}

.office-hours__rows {
    max-width: 520px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.office-hours__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.office-hours__row:last-child {
    border-bottom: none;
}

.office-hours__day {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    font-size: 13px;
}

.office-hours__time {
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
}

.office-hours__row--closed .office-hours__time {
    color: rgba(255, 255, 255, 0.55);
}

/* =========================
   RIGHT: FORM CARD
   ========================= */

.contact-formCard {
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.70);
    border: 2px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.55),
        0 0 0 2px rgba(255, 255, 255, 0.06) inset;
    padding: 22px 22px 26px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.field__label {
    display: block;
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.80);
}

.field__input,
.field__textarea,
.field__select {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(0, 0, 0, 0.40);
    color: rgba(255, 255, 255, 0.88);
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
}

.field__input::placeholder,
.field__textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.field__input:focus,
.field__textarea:focus,
.field__select:focus {
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.16);
}

.field__textarea {
    min-height: 160px;
    resize: vertical;
}

/* Select + chevron */
.field__selectWrap {
    position: relative;
}

.field__select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 44px;
    cursor: pointer;
}

.field__chev {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.85);
    pointer-events: none;
}

.field__chev svg {
    width: 18px;
    height: 18px;
}

/* Button */
.contact-btn {
    width: min(320px, 100%);
    margin: 10px auto 0;
    display: block;

    padding: 12px 16px;
    border-radius: 10px;
    border: none;

    background: #f5c400;
    color: #0b0b0f;

    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
}

.contact-btn:hover {
    filter: brightness(0.96);
}

.contact-btn:active {
    transform: translateY(1px);
}


.footer {
  background-color: #8f8f94;
  color: #ffffff;
  padding: 60px 80px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 80px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s ease;
}

.footer-section ul li a:hover {
  opacity: 0.7;
}

/* Brand Section */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.logo-icon {
  background: #ffffff;
  color: #000;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
}

.tagline {
  max-width: 280px;
  line-height: 1.6;
  font-size: 15px;
}

/* Contact spacing */
.contact-info li {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}



/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 980px) {
    .contact-body {
        grid-template-columns: 1fr;
    }

    .contact-formCard {
        padding: 18px 18px 22px;
    }

    .office-hours__row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .contact-hero {
        height: 230px;
    }
}


@media (max-width: 1100px) {

    .vision-grid,
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {

    .vision-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* Responsive */
@media (max-width: 980px) {
    .process-sec__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 560px) {
    .process-sec__steps {
        grid-template-columns: 1fr;
    }
}



/* RESPONSIVE */
@media (max-width: 980px) {
    .about-sec__banner {
        height: 260px;
    }

    .about-sec__wrap {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .about-sec__stats {
        width: 100%;
    }
}



/* Remove forced list height on mobile (prevents big empty spaces) */
@media (max-width: 980px) {
    .svc-list {
        min-height: unset;
    }
}

/* Cards responsive */
@media (max-width: 980px) {
    .svc-cards__wrap {
        grid-template-columns: 1fr;
    }

    .svc-card {
        min-height: auto;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        max-width: 1000px;
        padding: 0 1.5rem;
    }

    .main-heading {
        font-size: 3.4rem;
    }
}

@media (max-width: 992px) {
    .main-heading {
        font-size: 2.9rem;
    }

    .subheading {
        font-size: 1.15rem;
        max-width: 650px;
    }

    .nav-menu {
        padding: 1.1rem 2.5rem;
    }

    .nav-link {
        font-size: 0.98rem;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 768px) {
    .content-container {
        padding: 0;
    }

    .navbar {
        padding: 2rem 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.8rem;
        border-radius: 25px;
        max-width: 400px;
        margin: 0 auto;
        backdrop-filter: blur(10px);
    }

    .nav-item {
        width: 100%;
        margin: 0;
    }

    .nav-link {
        padding: 1rem;
        border-radius: 12px;
        font-size: 1.05rem;
    }

    .nav-link::after {
        display: none;
    }

    .hero-section {
        padding: 1.5rem;
    }

    .main-heading {
        font-size: 2.5rem;
        padding: 0 0.5rem;
    }

    .subheading {
        font-size: 1.1rem;
        padding: 0 1rem;
        margin-bottom: 3rem;
    }

    .cta-button {
        padding: 1.1rem 2.8rem;
        font-size: 1.1rem;
        min-width: 210px;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 2.1rem;
    }

    .subheading {
        font-size: 1.05rem;
    }

    .nav-menu {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .cta-button {
        padding: 1rem 2.3rem;
        font-size: 1.05rem;
        min-width: 190px;
    }
}