/* Team Page Styles */
.team-wrap {
  padding: 120px 0 80px;
}

.team-top {
  text-align: left;
  margin-bottom: 4rem;
}

.scale_img {
  transform: scale(1.1);
}

.team-top .muted {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

.team-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand);
}

.team-title-head {
  font-size: 2.5rem;
  margin: 4rem 0 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.team-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.member-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.member-card:hover {
  transform: translateY(-5px);
}

.member-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.member-bar {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.member-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.member-role {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .team-wrap {
    padding: 100px 0 60px;
  }

  .team-title {
    font-size: 2.5rem;
  }

  .team-title-head {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
  }

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

  .member-name {
    font-size: 1.1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .team-wrap {
    padding: 80px 0 40px;
  }

  .team-top {
    margin-bottom: 2rem;
  }

  .team-top .muted {
    font-size: 0.9rem !important;
    line-height: 30px !important;
  }

  .team-title {
    font-size: 2rem !important;
    line-height: 30px !important;
  }

  .team-title-head {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-grid.four {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .member-bar {
    padding: 1.2rem;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .team-wrap {
    padding: 60px 0 30px;
  }

  .team-top .muted {
    font-size: 0.9rem;
  }

  .team-title {
    font-size: 1.8rem;
  }

  .team-title-head {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
  }

  .member-name {
    font-size: 1rem;
  }

  .member-role {
    font-size: 0.8rem;
  }

  .member-bar {
    padding: 1rem;
  }
}

/* Services Page Styles */
.services-hero {
  padding: 120px 0 60px;
  background: var(--light);
}

.services-subtitle {
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 2rem;
  max-width: 900px;
}

.services-subtitle .accent {
  color: var(--accent);
  font-weight: 600;
}

.services-subtitle-two {
  font-size: 1.5rem;
  color: var(--brand);
  margin-bottom: 3rem;
  font-weight: 600;
}

.service-sub-head {
  font-size: 2rem;
  color: var(--brand);
  margin: 3rem 0 1.5rem;
}

.service-sub-head-p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.services-pointes-head {
  font-weight: 600;
  color: var(--brand);
}

.service-points-flex {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.services-points {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  /* margin-top: 0.5rem; */
}

.service-sub-head-points {
  font-size: 1.1rem;
  color: var(--text);
  margin: 0;
}

.services-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  /* box-shadow: var(--shadow); */
  margin: 3rem 0;
}

.services-card p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.services-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.services-list {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.services-list li {
  margin-bottom: 0.5rem;
  color: var(--text);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .services-hero {
    padding: 100px 0 50px;
  }

  .services-title {
    font-size: 3rem;
  }

  .services-subtitle {
    font-size: 1.6rem;
  }

  .services-subtitle-two {
    font-size: 1.3rem;
  }

  .service-sub-head {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
  }

  .service-sub-head-p,
  .service-sub-head-points {
    font-size: 1rem;
  }

  .services-card {
    padding: 1.5rem;
    margin: 2.5rem 0;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .services-hero {
    padding: 0px 0 40px !important;
  }

  .services-title {
    font-size: 3rem !important;
    line-height: 70px !important;
  }

  .services-subtitle {
    font-size: 1.4rem !important;
    line-height: 30px !important;
  }

  .services-subtitle-two {
    font-size: 1.2rem !important;
    line-height: 29px !important;
    margin: 0 !important;
  }

  .service-sub-head {
    font-size: 1.6rem !important;
    line-height: 35px !important;
    margin: 1rem 0rem 1rem;
  }

  .service-points-flex {
    gap: 0.8rem;
  }

  .services-card {
    padding: 1.2rem;
    margin: 2rem 0;
  }

}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .services-hero {
    padding: 60px 0 30px;
  }

  .services-title {
    font-size: 2rem;
  }

  .services-subtitle {
    font-size: 1.2rem;
  }

  .services-subtitle-two {
    font-size: 1.1rem;
  }

  .service-sub-head {
    font-size: 1.4rem;
  }

  .service-sub-head-p,
  .service-sub-head-points {
    font-size: 0.95rem;
    width: 100%;
  }

  .services-card {
    padding: 1rem;
    margin: 1.5rem 0;
  }

  .services-list {
    margin: 8px 0 6px 0 !important;
    padding-left: 1rem;
  }

  .services-list li {
    font-size: 14px !important;
    line-height: 24px !important;
  }
}

/* R&D Incentives Page Styles */
.incentives-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: url('../images/incentives-hero.jpg') center/cover no-repeat;
}

.incentive-img-p {
  font-size: 1.2rem;
  color: #fff;
  max-width: 800px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.hero-cta-incentive {
  position: relative;
  z-index: 2;
}

.benefits {
  padding: 5rem 0;
}

.science {
  padding: 5rem 0;
  background: #f8f9fa;
}

.science-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.science-label span:last-child {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  letter-spacing: 2px;
}

.science-copy {
  max-width: 900px;
}

.science-copy-p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .incentives-hero {
    min-height: 450px;
    padding: 100px 0 60px;
  }

  .incentive-img-p {
    font-size: 1.1rem;
  }

  .benefits {
    padding: 4rem 0;
  }

  .science {
    padding: 4rem 0;
  }

  .science-copy-p {
    font-size: 1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .incentives-hero {
    min-height: 400px;
    padding: 80px 0 50px;
  }

  .incentive-img-p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .benefits {
    padding: 3rem 0;
  }

  .science {
    padding: 3rem 0;
  }

  .science-label {
    margin-bottom: 1.5rem;
  }

  .science-copy-p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .incentives-hero {
    min-height: 350px;
    padding: 60px 0 40px;
  }

  .incentive-img-p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .benefits {
    padding: 2rem 0;
  }

  .science {
    padding: 2rem 0;
  }

  .science-label span:last-child {
    font-size: 0.9rem;
  }

  .science-copy-p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .container {
    padding: 0 20px;
  }
}

/* Industry Page Styles */
.industries-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: url('../images/sr-and-ed-program-developments-resdev-canada.svg') center/cover no-repeat;
}

.industries-img-text-head {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.industry-img-p {
  font-size: 1.2rem;
  color: #fff;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.industries-grid-wrap {
  padding: 5rem 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.industry-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
}

.industry-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: #fff;
}

.industry-text h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Manrope';
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .industries-img-text-head {
    font-size: 2.8rem;
  }

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

  .industry-text h3 {
    font-size: 1.3rem;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .industries-hero {
    height: auto !important;
    padding: 100px 0 60px;
  }

  .industry-card {
    height: auto !important;
  }

  .industry-card img {
    height: 100% !important;
  }

  .industries-img-text-head {
    font-size: 2.2rem;
  }

  .industry-img-p {
    font-size: 1rem;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .industries-grid-wrap {
    padding: 3rem 0;
  }

  .industry-text {
    padding: 1.5rem;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .industries-hero {
    min-height: 350px;
    padding: 80px 0 40px;
  }

  .industries-img-text-head {
    font-size: 1.8rem;
  }

  .industry-img-p {
    font-size: 0.9rem;
  }

  .industry-text h3 {
    font-size: 1.2rem;
  }

  .industry-text p {
    font-size: 0.9rem;
  }

  .container {
    padding: 0 20px;
  }
}

/* ResDev landing page styles */
:root {
  --brand: #14121C;
  --brand-2: #0B0A12;
  --primary: #111;
  --accent: #E25200;
  --muted: #6B7280;
  --surface: #0E0D16;
  --light: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, .15)
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope";
  ;
  color: #0F1220;
  background: #fff
}

/* .container {
  max-width: 1400px;
  padding: 0 40px;
  margin: 0 auto;
} */

.margin-auto {
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  /* border-bottom: 1px solid rgba(0, 0, 0, .06) */
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px;
}

.brand img {
  height: 45px;
  width: 115px;
}

.main-nav {
  display: flex;
  align-items: center
}

.main-nav a {
  /* color: #0F1220;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  opacity: .85; */
  font-family: "Manrope";
  ;
  font-weight: 400;
  font-size: 18px;
  line-height: 72px;
  vertical-align: middle;
  color: #080520;
}

.main-nav a:hover {
  opacity: 1
}

.btn {
  display: inline-block;
  border-radius: 52px;
  padding: 10px 6px 10px 28px;
  font-weight: 600;
  text-decoration: none
}

.btn-primary {
  background: #0F1220;
  color: #fff;
  width: 195px;
  height: 55px;
  border-radius: 40px;
  opacity: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 72px;
  vertical-align: middle;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-light {
  background: #fff;
  color: #0F1220;
  border: 1px solid rgba(0, 0, 0, .12)
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  width: 195px;
  height: 55px;
  font-size: 18px;
}

.btn-dark {
  background: #0F1220;
  color: #fff;
  border: 1px solid #0F1220;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 210px;
  margin-top: 0.5rem;
}

.breathe {
  padding: 5rem 0;
}

.home_flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.breathe-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem;
}

.breathe-text-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand);
  margin: 0;
}

.breathe-text-container p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .breathe {
    padding: 4rem 0;
  }

  .home_flex {
    gap: 3rem;
  }

  .breathe-text-container h2 {
    font-size: 2.2rem;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .breathe {
    padding: 3rem 0;
  }

  .home_flex {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .breathe-text-container {
    text-align: center;
    align-items: center;
  }

  .breathe-text-container h2 {
    font-size: 2rem;
  }

  .breathe-text-container p {
    font-size: 1rem;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .breathe {
    padding: 2rem 0;
  }

  .breathe-text-container h2 {
    font-size: 1.8rem;
  }

  .breathe-text-container p {
    font-size: 0.9rem;
  }
}

/* Contact Page Styles */

.contact-eyebrow {
  color: #FF6A1A;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-sub {
  font-size: 1.2rem;
  color: #6B7280;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-form {
  background: #fff;
}

.form-row label {
  flex: 1;
}

.form-row input,
.form-full textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #E5E7EB;
  /* border-radius: 8px; */
  font-size: 1rem;
}

.form-full {
  display: block;
  margin-bottom: 1.5rem;
}

.contact-submit {
  background: #FF6A1A;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background-color 0.3s;
}

.contact-submit:hover {
  background: #E25200;
}

.contact-side {
  background: #fff;
}

.contact-side h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #14121C;
}

.contact-side ul {
  list-style: none;
  padding: 0;
}

.contact-side ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: #6B7280;
  font-size: 1rem;
}

/* About Page Styles */
.about-hero {
  position: relative;
  height: 510px;
  background: linear-gradient(90.08deg, #E25200 4.46%, rgba(8, 5, 32, 0.6) 99.94%), url('../images/sr-and-ed-program-developments-resdev-canada.svg');
  background-size: cover;
  color: #fff;
  margin: 0 1rem;
  border-radius: 18px;
}

.vision {
  padding: 5rem 0;
}

.feature-grid-about {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}


.feature-box-chip {
  background: #F3F4F6;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.mission {
  padding: 5rem 0;
  background: #F9FAFB;
}

.mission-copy {
  font-size: 1.5rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.breathe {
  padding: 5rem 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .feature-grid-about {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col {
    gap: 2rem;
  }

  .mission-copy {
    font-size: 1.25rem;
    padding: 0 2rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    height: auto;
    padding: 4rem 1rem;
    margin: 0;
    border-radius: 0;
  }

  .hero-content {
    padding: 0 1rem !important;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .feature-grid-about {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .breathe-text-container {
    align-items: center;
  }

  .breathe-text-container h2 {
    font-size: 1.75rem;
  }

  .breathe-text-container p {
    font-size: 1rem;
  }

  .btn-dark {
    margin: 0 auto;
  }

  .vision,
  .mission,
  .breathe {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .contact-form {
    padding: 1rem !important;
  }

  .contact-form .form-row {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .feature {
    padding: 1.5rem;
  }

  .feature-box-chip {
    font-size: 0.75rem;
  }

  .mission-copy {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* Clients Page Styles */
.clients-wrap {
  padding: 8rem 0 5rem;
}

.clients-title {
  font-size: 1.25rem;
  color: #FF6A1A;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.clients-sub {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #14121C;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  position: relative;
  margin-bottom: 1.5rem;
}

.quote-mark {
  margin-bottom: 1rem;
}

.quote-mark img {
  width: 22px;
  height: auto;
}

.testimonial-body {
  color: #4B5563;
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-body p {
  margin-bottom: 1rem;
}


@media (max-width: 1024px) {
  .clients-sub {
    font-size: 2.5rem;
  }

  .testimonials-grid {
    gap: 1.5rem;
  }

  .testimonial-container {
    padding: 1.5rem;
  }

  .testimonial-body {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .clients-wrap {
    padding: 0 !important;
  }

  .clients-sub {
    font-size: 36px !important;
    line-height: 45px !important;
  }

  .testimonial {
    gap: 0.5rem !important;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-container {
    padding: 10px !important;
  }

  .quote-mark {
    font-size: 12px !important;
  }

  .quote-mark img {
    width: 20px !important;
  }

  .testimonial-author {
    margin-top: 1rem !important;
    padding-top: 5px !important;
    line-height: 30px !important;
  }
}

@media (max-width: 480px) {
  .clients-wrap {
    padding: 5rem 1rem 2rem;
  }

  .clients-title {
    font-size: 1rem;
  }

  .clients-sub {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .testimonial-body {
    font-size: 0.95rem;
  }

  .testimonial-author {
    font-size: 1rem;
  }
}

/* Hero */
.hero {
  position: relative;
  height: 725px;
  background: linear-gradient(90.08deg, #E25200 4.46%, rgba(8, 5, 32, 0.6) 99.94%), url('../images/scientific-research-and-experimental-development-resdev-canada.svg');
  background-size: cover;
  color: #fff;
  display: flex;
  margin: 0 1rem;
  border-radius: 18px;
  background-repeat: no-repeat;
}

.section-hero {
  position: relative;
  height: 510px;
  background: linear-gradient(90.08deg, #E25200 4.46%, rgba(8, 5, 32, 0.6) 90.94%), url('../images/sr-and-ed-program-developments-resdev-canada.svg');
  background-size: cover;
  color: #fff;
  display: flex;
  margin: 0 1rem;
  border-radius: 18px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: saturate(110%) contrast(105%)
}

.hero-content-home {
  position: relative;
  /* padding: 6rem 4rem; */
  padding: 6rem 0.5rem;
}

.hero-content {
  position: relative;
  padding: 5rem 1rem;
}

.hero h1 {
  margin: 0 0 10px;
  font-family: "Manrope";
  font-weight: 500;
  font-style: Medium;
  /* font-size: 88px;
  line-height: 105px; */
  text-align: left;
  font-size: 88px;
  line-height: 95px;
}

.lead {
  max-width: 760px;
  opacity: .95;
  font-size: 16px;
  line-height: 1.7;
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 12px
}

.hero-cta-home {
  margin-top: 7rem;
  display: flex;
  gap: 12px
}

.hero-cta-incentive {
  margin-top: 2rem;
  display: flex;
  gap: 12px
}

.hero-badges {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-wrap: wrap;
  position: absolute;
  bottom: 8rem;
  /* right: 12rem; */
  gap: 100px;
  align-items: center;
  right: 4.5rem;
}

.badge {
  border: 1px solid #fff;
  color: #fff;
  /* padding: 10px 14px; */
  border-radius: 50px;
  font-weight: 600;
  background: rgba(255, 255, 255, .08);
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  height: 50px;
  font-family: "Manrope";
  font-weight: 400;
  /* height: 40px; */
  font-size: 22px;
  padding: 8px 14px;
}

.badge-top {
  margin-left: 5rem;
}

/* About hero uses a darker photo per screenshot */

/* Generic section spacing */
.section {
  padding: 40px 0;
  background: #fff
}

.section .section-label {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px
}

.section .section-label span {
  font-family: "Manrope";
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 72px;
  vertical-align: middle;
  text-transform: uppercase;
}

.section-title {
  font-size: 28px;
  line-height: 1.4;
  margin: 10px auto 20px;
  max-width: 1200px;
  text-align: center
}

.section-title .bold {
  font-weight: 800;
  color: #111
}

.section-title.center {
  text-align: center;
  font-family: "Manrope";
  font-weight: 400;
  font-size: 54px;
  line-height: 72px;
  text-align: center;
}

.home-hero--img-p {
  max-width: 700px;
  margin-top: 3rem;
}

.industries-img-text-head {
  margin-bottom: 20px;
  font-family: "Manrope";
  font-weight: 500;
  font-size: 88px;
  line-height: 95px;
  letter-spacing: 0%;
  color: #fff;
  max-width: 1200px;
}

.industry-img-p {
  color: #fff;
  max-width: 1200px;
  font-family: "Manrope";
  font-weight: 200;
  font-size: 22px;
  line-height: 37px;
}

/* Vision pills */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px
}

.pill {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 16px;
  text-align: center
}

.pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #eef2ff;
  color: #111;
  margin: 0 auto 8px
}

.pill-title {
  font-weight: 700;
  margin-bottom: 6px
}

/* Mission */
.mission-copy {
  max-width: 1100px;
  margin: 0 auto;
  color: #374151;
  text-align: center;
  line-height: 1.8;

  font-family: "Manrope";
  font-weight: 400;
  font-size: 24px;
  line-height: 42px;
  text-align: center;
}

/* Why section */
.why {
  padding: 64px 0;
  background: #fff
}

.why-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px
}

.dot {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--accent)
}

.eyebrow {
  color: #000;
  font-family: "Manrope";
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 72px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
}

.why-header-container {
  width: 25%;
}

.why-header-container h2 {
  font-family: "Manrope";
  font-weight: 500;
  font-style: Medium;
  font-size: 54px;
  line-height: 52px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.grid {
  display: grid
}

.two-col {
  grid-template-columns: .9fr 1.1fr
}

.gap-xl {
  gap: 40px
}

.align-start {
  align-items: flex-start
}

.align-center {
  align-items: center
}

.why h2 {
  /* font-size: 40px; */
  line-height: 52px;
  margin: 22px 0;
}

.accent {
  color: var(--accent)
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 75%;
}

.feature-grid-about {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.feature {
  padding: 16px 20px;
  border: 2px solid #0805201A;
  border-radius: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.feature-title {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 6px;
}

.benefits .feature-title {
  align-items: center;
}

.feature p {
  margin: 32px 0;
  color: #080520;
  font-family: "Manrope";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0%;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #E0E6F4;
  color: #111;
  font-size: 14px
}

.feature .icon {
  width: 60px;
  height: 58px;
}

.feature .feature-box-chip {
  font-family: 'manrope-bold';
}

.image-card {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 25px;
}

.image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.image-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90.08deg,
      rgba(8, 5, 32, 0.3) 4.46%,
      rgba(8, 5, 32, 0.6) 99.94%);
  pointer-events: none;
  /* allows clicks to pass through */
}

.shadow-lg {
  box-shadow: var(--shadow);
}

.flex {
  display: flex;
}

.why-use-container-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.feature-box-chip {
  background-color: #DFE5F3;
  padding: 4px 16px;
  border-radius: 40px;
  font-family: "Manrope";
  font-size: 16px;
  font-weight: 400;
}

/* Breathe */
.breathe {
  padding: 12px 0 100px;
  background: #fff
}

.breathe h2 {
  margin: 0;
  width: 600px;
  font-family: "Manrope";
  font-weight: 500;
  font-style: Medium;
  font-size: 51px;
  /* line-height: 62px; */
  line-height: 55px;
}

.breathe p {
  color: #374151;
  max-width: 660px;

  font-family: "Manrope";
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  vertical-align: middle;

}

/* Footer */
.site-footer {
  background: #0F1220;
  color: #cfd4df;
  margin-top: 40px
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 40px 0
}

.footer-brand img {
  margin-bottom: 12px
}

.footer-brand p {
  color: #9aa3b2;
  font-size: 13px;
  line-height: 1.6
}

.footer-col h3 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 15px
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #cfd4df;
  font-size: 14px
}

.footer-col a {
  color: #cfd4df;
  text-decoration: none
}

.footer-col a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 14px 0;
  font-size: 13px;
  text-align: center
}

/* Responsive */
@media (max-width: 960px) {
  .two-col {
    grid-template-columns: 1fr
  }

  .feature-grid {
    grid-template-columns: 1fr
  }

  .hero h1 {
    font-size: 38px
  }

  .pill-grid {
    grid-template-columns: 1fr 1fr
  }
}

/* =================== Services Page =================== */
.services-hero {
  padding: 32px 0 0px;
  background: #fff
}

.services-title {
  font-size: 48px;
  margin: 10px 0 24px;
  color: #0F1220;

  font-family: "Manrope";
  font-weight: 600;
  font-size: 88px;
  line-height: 105px;
}

.services-subtitle {
  max-width: 1200px;
  color: #111;

  font-family: "Manrope";
  font-weight: 400;
  font-style: Medium;
  font-size: 54px;
  line-height: 72px;
  letter-spacing: 0%;
  vertical-align: middle;

}

.services-subtitle-two {
  max-width: 1200px;
  color: #111;
  margin-top: 2rem;
  font-family: "Manrope";
  font-weight: 400;
  font-style: Medium;
  font-size: 44px;
  line-height: 72px;
  letter-spacing: 0%;
  vertical-align: middle;

}

.service-sub-head {
  color: var(--accent);
  margin-top: 2rem;
  font-family: "Manrope";
  font-weight: 600;
  font-size: 36px;
  line-height: 72px;
}

.service-sub-head-p {
  margin-top: 0.5rem;
  color: #000;
  text-align: left;
  font-family: "Manrope";
  font-weight: 400;
  font-style: "Regular";
  font-size: 22px;
  line-height: 37px;
}

.services-pointes-head {
  /* text-decoration: underline; */
  font-weight: 700;
}

.services-points {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: var(--accent);
}

.service-sub-head-points {
  font-size: 20px;
}

.service-points-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.services-card {
  margin-top: 18px;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff
}

.services-card p {
  color: #000;
  margin: 10px 0;
  text-align: left;
  max-width: 1200px;
  font-family: "Manrope";
  font-weight: 400;
  font-style: "Regular";
  font-size: 24px;
  line-height: 37px;
}

.services-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none
}

.services-list {
  margin: 8px 0 6px 18px
}

.services-list li {
  margin: 6px 0;
  color: #000;
  text-align: left;
  /* max-width: 700px; */
  font-family: "Manrope";
  font-weight: 400;
  font-size: 24px;
  line-height: 37px;
}

.services-list li::marker {
  color: var(--accent);
  height: 10px;
  width: 10px;
}

.services-split {
  margin-top: 6rem;
}

/* =================== Industries Page =================== */
.industries-hero {
  margin: 0 1rem;
  border-radius: 18px;
  height: 510px;
  background-image: linear-gradient(90.08deg, #E25200 4.46%, rgba(8, 5, 32, 0.6) 90.94%), url('../images/sr-and-ed-program-developments-resdev-canada.svg');
  background-size: cover;
}

.industries-grid-wrap {
  padding: 40px 0;
  background: #fff
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.industry-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 390px;
}

.industry-card img {
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.industry-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(0deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .05)) */
  background: linear-gradient(90.08deg, rgba(8, 5, 32, 0.5) 4.46%, rgba(8, 5, 32, 0.6) 99.94%);
}

.industry-text {
  position: absolute;
  inset: 0;
  color: #fff;
  padding: 18px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.industry-text p {
  margin: 0;
  opacity: .9;
  text-align: center;
  font-family: 'Manrope';
  font-size: 28px;
  font-weight: 400;
}

.industries-breathe {
  margin-top: 26px
}

@media (max-width: 960px) {
  .industries-grid {
    grid-template-columns: 1fr
  }

  .industry-card img {
    height: 200px
  }
}

/* =================== R&D Incentives Page =================== */
.incentives-hero {
  margin: 0 1rem;
  border-radius: 18px;
  height: 510px;
  background: linear-gradient(90.08deg, #E25200 4.46%, rgba(8, 5, 32, 0.6) 99.94%), url("../images/sr-and-ed-program-developments-resdev-canada.svg");
  background-size: cover;
}

.incentive-img-p {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 22px;
  line-height: 37px;
  max-width: 1200px;
}

.benefits {
  background: #fff;
  padding: 0;
}

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

.benefit {
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff
}

.benefit-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eef2ff;
  display: inline-grid;
  place-items: center;
  margin-bottom: 4px
}

.benefit-title {
  font-weight: 700;
  margin-bottom: 6px
}

.science {
  padding: 64px 0;
  background: #fff
}

.science-label {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;

  font-family: "Manrope";
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 72px;
  text-transform: uppercase;
}

.science-copy {
  max-width: 1200px;
  margin: 0 auto;
  color: #374151;
  line-height: 1.8;
}

.science-copy-p {
  font-family: "Manrope";
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 33px;
  text-align: center;
}

@media (max-width: 960px) {
  .benefits-grid {
    grid-template-columns: 1fr
  }
}

/* =================== Team Page =================== */
.team-wrap {
  background: #fff;
  padding: 24px 0 40px
}

.team-top .muted {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 24px;
  line-height: 105px;
  color: #1E1E1E;
}

.team-title {
  margin: 10px 0 6px;
  font-family: "Manrope";
  font-weight: 500;
  font-size: 88px;
  line-height: 105px;
  color: #1E1E1E;
  border-bottom: 8px solid #020317;
  padding-bottom: 20px;
}

.team-title-head {
  margin-top: 6rem;
}

.team-divider {
  height: 2px;
  background: #10131f;
  margin: 12px 0 26px;
  opacity: .2
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem
}

.team-grid.four {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.member-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background: #f3f4f6;
  width: 100%;
  height: 378px;
}

.member-card-img {
  display: block;
  object-fit: cover;
  filter: grayscale(100%);
  height: 100%;
  width: 100%;
}

.member-bar {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: #171616;
  color: #fff;
  padding: 8px 10px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  height: 64px;
  border: 1px solid #8C8C8C80;
}

.member-name {
  font-weight: 700;

  font-family: "Manrope";
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  line-height: 120%;
  text-transform: capitalize;
  color: #C0F589;
}

.member-role {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 10px;
  line-height: 16px;
  color: #E8E8E8;
  margin-top: 2px;
}

.member-arrow {
  justify-self: end;
  background: #111826;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%
}

@media (max-width: 960px) {
  .team-grid {
    grid-template-columns: 1fr
  }

  .team-grid.four {
    grid-template-columns: 1fr 1fr
  }
}

/* Modal */
/* .modal {
  position: fixed;
  inset: 0;
  display: none
}

.modal[aria-hidden="false"] {
  display: block
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(1px)
}

.modal-card {
  position: relative;
  max-width: 720px;
  margin: 12% auto;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #111826;
  color: #fff;
  border: none;
  border-radius: 999px;
  width: 28px;
  height: 28px;
  cursor: pointer
}

.modal-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px
}

.modal-avatar {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover
}

.modal-eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  color: #6b7280;
  letter-spacing: .06em
}

.modal-title {
  margin: 2px 0 0;
  font-size: 16px
}

.modal-body {
  color: #111827;
  line-height: 1.7
}

.modal-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  color: #6b7280
} */

/* =================== Clients Page =================== */
.clients-wrap {
  background: #fff;
  padding: 24px 0 40px
}

.clients-title {
  font-size: 56px;
  margin: 10px 0 6px;
  color: #0F1220;
  font-family: "Manrope";
  font-weight: 600;
  font-size: 88px;
  line-height: 105px;
}

.clients-sub {
  margin: 0 0 18px;
  color: #1E1E1E;

  font-family: "Manrope";
  font-weight: 500;
  font-size: 54px;
  line-height: 72px;
}

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

.testimonial-container {
  border: 2px solid #0805201A;
  border-radius: 12px;
  background: #fff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testimonial {

  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.quote-mark {
  color: var(--accent);
  font-size: 22px;
  /* margin-top: 8px */
}

.testimonial-body p {
  color: #000;

  font-family: "Manrope";
  font-weight: 500;
  font-size: 24px;
  line-height: 42px;
}

.testimonial-author {
  margin-top: 4rem;
  border-top: 4px solid #000;
  padding-top: 10px;
  color: #111827;

  font-family: "Manrope";
  font-weight: 600;
  font-size: 20px;
  line-height: 42px;
}

@media (max-width: 960px) {
  .testimonials-grid {
    grid-template-columns: 1fr
  }

  .clients-title {
    font-size: 38px;
    line-height: 60px;
  }
}

/* =================== Contact Page =================== */
.contact-container {
  max-width: 1200px;
  padding: 0 40px;
}

.contact-wrap {
  /* max-width: 1400px; */
  background: #fff;
  padding: 24px 0 60px;
  margin-left: 10%;
}

.contact-eyebrow {
  color: #1E1E1E;
  margin: 0;

  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
}

.contact-title {
  font-size: 32px;
  margin: 6px 0;
  color: #1E1E1E;

  font-family: "Manrope";
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
}

.contact-sub {
  color: #1E1E1E;
  margin: 0 0 16px;

  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 40px;
  max-width: 1200px;
}

.contact-form label span {
  display: block;
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 6px
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  padding: 10px 4px;
  background: transparent;
  outline: none
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 14px
}

.form-full {
  display: block;
  margin-top: 6px
}

.contact-form input,
.contact-form textarea {
  font-family: "Manrope";
  font-size: 16px;
  color: #000;
  height: 60px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-family: "Manrope";
  font-size: 16px;
}

.contact-submit {
  margin-top: 16px;
  background: #0F1220;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 10px 8px 10px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 150px;
  height: 50px;

  font-family: "Manrope";
  font-weight: 500;
  font-size: 18px;
  line-height: 72px;

}

.contact-submit .arrow {
  margin-left: 6px
}

.contact-side h3 {
  margin: 0 0 10px;

  font-family: "Manrope";
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
}

.contact-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #111827
}

.contact-side li {
  margin: 8px 0;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 8px;
  font-family: "Manrope";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #1E1E1E;
}

textarea {
  resize: vertical;
  width: 100%;
  max-width: 100%;
  min-height: 60px;
  max-height: 160px;
}

@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr
  }
}

/* contact mobile */

@media (max-width: 480px) {
  .contact-title {
    font-size: 1.5rem;
  }

  .breathe h2 {
    font-family: "Manrope";
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
  }
}

@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr
  }
  .contact-wrap {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 1.5rem;
  }

  .why-header-container h2{
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-container {
    padding: 2rem 1rem;
  }

  .contact-wrap {
    padding: 0px;
    margin: 0;
  }

  .contact-side {
    padding: 1rem 0.5rem;
  }
}

.contact-side ul li a[href^="tel"],
.contact-side ul li a[href^="mailto"] {
  color: #6B7280;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-side ul li a[href^="tel"]:hover,
.contact-side ul li a[href^="mailto"]:hover {
  color: #6B7280;
  text-decoration: underline;
}