/* ============================================
   Combined Building Consultancy — shared styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --navy: #0e2038;
  --navy-2: #13294a;
  --blue: #1c58c9;
  --blue-dark: #144399;
  --green: #57a238;
  --green-dark: #45861f;
  --ink: #16233d;
  --gray-700: #4d5871;
  --gray-500: #6b7690;
  --gray-100: #eef1f6;
  --gray-50: #f6f8fb;
  --white: #ffffff;
  --line: #e3e8f0;
  --black: #000000;
  --text-dark: #0E2038;
  --light-bg: #EDF0F5;
  --grey-medium: #c9c9c9;
  --cream-white: #FAFAFA;
  --font-body: 'Inter', sans-serif;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 10px 30px rgba(14, 32, 56, 0.08);
  --shadow-lg: 0 20px 50px rgba(14, 32, 56, 0.14);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream-white);
  line-height: 1.6;
  animation: pageFadeIn 0.6s ease-out forwards;
  overflow-x: hidden;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.section {
  margin: 80px 0;
}

.section-tight {
  padding: 56px 0;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* hamburger morphs into a close icon while the offcanvas is open */
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
 
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
 
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
 
/* ---------------- Mobile offcanvas menu ---------------- */
.mobile-menu {
  width: min(340px, 86vw);
  background: var(--white);
  border-left: 1px solid var(--line);
}
 
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
 
.mobile-menu-header .header-logo img {
  width: 160px;
}
 
.mobile-close {
  position: relative;
  width: 36px;
  height: 36px;
  background: var(--gray-50);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
}
 
.mobile-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--navy);
  transform-origin: center;
}
 
.mobile-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
 
.mobile-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
 
.mobile-menu .offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 10px 22px 28px;
}
 
.mobile-nav {
  display: flex;
  flex-direction: column;
}
 
.mobile-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text-dark);
  padding: 15px 4px;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  padding-left: 16px;
}
 
.mobile-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--blue);
  border-radius: 2px;
  transition: height .2s ease;
}
 
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--blue);
}
 
.mobile-nav a:hover::before,
.mobile-nav a.active::before {
  height: 22px;
}
 
.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  text-align: center;
}
 
.mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-100);
}
 
.mobile-contact a {
  color: var(--gray-700);
  font-size: 15px;
}
 
.mobile-contact .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gray-50);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 2px;
}

.eyebrow {
  display: inline-block;
  color: var(--green);
  font-family: 'Inter';
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.03rem;
}

.section-head {
  text-align: center;
  margin: 0 auto 48px;
}

.section-title {
  color: var(--text-dark);
  font-weight: 700;
  font-family: 'Inter';
  font-size: 2rem;
}

.section-head .rule {
  width: 56px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin: 16px auto 0;
}

.section-head.left {
  text-align: left;
  margin: 0 0 40px;
}

.section-head.left .rule {
  margin: 16px 0 0;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 600;
  font-size: .92rem;
  font-family: var(--font-body);
}

.link-arrow svg {
  transition: .2s;
}

.link-arrow:hover svg {
  transform: translateX(3px);
}

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.site-header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}

.header-logo img {
  width: 200px;
  display: block;
}

.logo-mark {
  width: 42px;
  height: 42px;
}

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

.main-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  position: relative;
  padding: 0px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
}

.main-nav a.active::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  width: 70%;
  margin: 0 auto;
  height: 2px;
  background: var(--blue);
}

.main-nav .dropdown-toggle.active::before {
  right: 14px;
}

/* ---------------- Dropdown Styles ---------------- */
.nav-item.dropdown {
  position: relative;
}

/* Dropdown arrow style */
.nav-item.dropdown .dropdown-toggle::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--blue-dark);
  transition: transform 0.2s ease;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
  border-top-color: var(--blue);
}

.nav-item.dropdown .dropdown-menu {
  display: block; /* Override Bootstrap's display: none */
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

/* Triangle indicator */
.nav-item.dropdown .dropdown-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
.nav-item.dropdown:hover .dropdown-menu a::before{
  display: none;
}
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-item.dropdown .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  text-align: left;
  transition: all 0.2s ease;
  border-bottom: none;
}

.nav-item.dropdown .dropdown-menu a::after {
  display: none !important; /* Hide underline indicator from sub-items */
}

.nav-item.dropdown .dropdown-menu a:hover,
.nav-item.dropdown .dropdown-menu a.active {
  background: var(--gray-50);
  color: var(--blue);
  padding-left: 24px;
}

/* Mobile Dropdown styles */
.mobile-dropdown {
  width: 100%;
}
.mobile-dropdown-toggle{
  border: none !important;
}
.mobile-dropdown-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-dropdown-arrow {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--text-dark);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-dropdown-arrow svg {
  transition: transform 0.3s ease;
}
.mobile-dropdown-arrow.is-open svg {
  transform: rotate(180deg);
}
.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, visibility 0.25s ease;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  border-left: 2px solid var(--line);
  gap: 12px;
}
.mobile-dropdown-menu.show {
  max-height: 350px;
  opacity: 1;
  visibility: visible;
  margin-top: 8px;
  margin-bottom: 15px;
}
.mobile-dropdown-menu a {
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: var(--text-dark) !important;
  opacity: 0.8;
  padding: 4px 0 !important;
}
.mobile-dropdown-menu a::before {
  display: none !important; /* Hide the vertical blue bar for sub links */
}
.mobile-dropdown-menu a:hover,
.mobile-dropdown-menu a.active {
  color: var(--blue) !important;
  opacity: 1;
}

/* Scroll offset for sticky header */
.section[id] {
  scroll-margin-top: 100px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}


/* ---------------- Page hero (inner pages) ---------------- */
.page-hero {
  background-image: url('Images/poster-hero-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 130px 0px 80px 0px;
  position: relative;
  height: calc(100vh - 260px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero.about-hero {
  background-image: url('Images/about-hero.png');
}

.page-hero.services-hero {
  background-image: url('Images/services-hero.png');
}

.page-hero.projects-hero {
  background-image: url('Images/projects-hero.png');
}

.page-hero.news-hero {
  background-image: url('Images/news-hero.png');
}

.page-hero.contact-hero {
  background-image: url('Images/contact-hero.png');
}


.page-hero::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(90deg, rgba(14, 32, 56, 0.95) 0%, rgb(14 32 56 / 90%) 35%, rgb(14 32 56 / 0%) 65%, rgb(14 32 56 / 0%) 100%);
  left: 0;
  top: 0;
  z-index: 1;
}

.page-hero .hero-content-detail {
  position: relative;
  z-index: 2;
}

.page-hero .breadcrumb {
  font-family: var(--font-body);
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 14px;
}

.page-hero .breadcrumb a {
  color: #fff;
}

.page-hero .breadcrumb .sep {
  margin: 0 8px;
  opacity: .6;
}

.page-hero .hero-content-detail {
  max-width: 550px;
  text-align: left;
}

.page-hero .hero-content-detail h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 2.8rem;
  position: relative;
  font-family: 'Inter';
}

.page-hero .hero-content-detail h1::before {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #57a238;
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.page-hero p {
  color: rgba(255, 255, 255, .78);
  max-width: 370px;
  margin: 30px 0px 25px;
  font-weight: 500;
  font-size: 0.94rem;
}

.page-hero .hero-content-detail .main-hero-title {
  font-size: 2.7rem;
  line-height: 1.2;
  margin-bottom: 5px;
}

.page-hero .main-hero-text {
  max-width: 540px;
  margin: 20px 0px 35px;
  font-size: 1.05rem;
}

.theme-button-filled {
  background-color: var(--blue);
  border-radius: 5px;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter';
  border: 1px solid var(--blue);
  transition: 0.3s all ease-in-out;
  color: var(--white);
}

.theme-button-filled svg {
  margin-left: 6px;
  fill: var(--white);
  width: 14px;
}

.theme-button-filled:hover {
  color: var(--white);
  background-color: var(--blue-dark);
  border: 1px solid var(--blue-dark);
}

.theme-button-border {
  border: 1px solid var(--white);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: var(--white);
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter';
  transition: 0.3s all ease-in-out;
}

.theme-button-border svg {
  margin-left: 6px;
  fill: var(--white);
  width: 14px;
}

.theme-button-border:hover {
  color: var(--black);
  background-color: var(--white);
  border: 1px solid var(--white);
}

.theme-button-border:hover svg {
  fill: var(--black);
}

.theme-button-dark {
  border: 1px solid var(--black);
  background-color: var(--white);
  border-radius: 5px;
  color: var(--black);
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter';
  transition: 0.3s all ease-in-out;
}

.theme-button-dark svg {
  margin-left: 6px;
  fill: var(--black);
  width: 14px;
}

.theme-button-dark:hover {
  color: var(--white);
  background-color: var(--black);
  border: 1px solid var(--black);
}

.theme-button-dark:hover svg {
  fill: var(--white);
}

/* ---------------- Feature strip ---------------- */
.feature-strip {
  background: var(--navy);
  color: #fff;
  padding: 44px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-right: 1px solid #a3a3a3;
  padding: 0px 40px;
}

.feature-item:last-child {
  border-right: none;
}

.feature-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-item .icon svg {
  width: 100%;
  height: 100%;
  fill: var(--green);
}

.feature-item h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 5px;
  font-family: 'Inter';
  font-weight: 600;
}

.feature-item p {
  color: rgba(255, 255, 255, .8);
  font-size: .88rem;
  margin-top: 12px;
  font-weight: 500;
  font-family: 'Inter';
  margin-bottom: 0px;
}

/* ---------------- Cards ---------------- */
.service-card,
.value-card {
  background: var(--white);
  padding: 26px 20px;
  border: none;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: 0.3s ease-in-out;
  position: relative;
  text-align: center;
}

.service-card:hover,
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.service-card .icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue);
}

.service-card svg{
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  text-align: center;
  display: block;
  fill: var(--blue);
}

.value-card svg {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  text-align: center;
  display: block;
  stroke: var(--blue);
}

.service-card svg path {
  fill: var(--blue);
}

.service-card h3,
.value-card h3 {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 700;
  font-family: 'Inter';
  text-align: center;
  margin-bottom: 15px;
  padding: 0px 20px;
}

.service-card p,
.value-card p {
  font-size: .92rem;
  text-align: center;
  color: #374151;
  margin-bottom: 15px;
  font-family: 'Inter';
}

.projectcard-wrap {
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 2px 6px #c5c5c561;
  transition: 0.3s ease-in-out;
}

.projectcard-wrap:hover {
  box-shadow: 0px 5px 15px grey;
  transform: translateY(-3px);
}

.projectcard-wrap .img-ph.light {
  background: linear-gradient(135deg, #dfe6f0, #c9d4e4);
  color: var(--gray-700);
}

.projectcard-wrap .img-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 6 / 4;
}

.project-card-body {
  padding: 18px;
}

.project-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Inter';
  margin-bottom: 5px;
  color: var(--text-dark);
}

.project-card-body p {
  font-size: 14px;
  font-family: 'Inter';
  margin-bottom: 20px;
}
.project-card-body .tag{
  margin-bottom: 10px;
  display: inline-block;
  font-family: 'Inter';
  font-weight: 500;
}

/* Recent Projects Slider Styles */
.slider-header {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
}

.slider-header .section-title-wrap {
  display: inline-block;
}

.slider-header .slider-arrows {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--grey-medium);
  border: 1px solid var(--line);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-arrow:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(28, 88, 201, 0.25);
}

.slider-arrow svg {
  display: block;
}

.slider-arrow.slick-disabled,
.slider-arrow.slick-disabled:hover {
  background-color: var(--gray-100) !important;
  border: 1px solid var(--gray-50);
}

.slider-arrow.slick-disabled:hover svg {
  stroke: #000;
}

/* Slick Carousel adjustments */
.projects-slider {
  margin: 0 -13px;
  /* horizontal offset to align with container margins */
}

.projects-slider:not(.slick-initialized) {
  display: flex;
  overflow: hidden;
  flex-wrap: nowrap;
}

.projects-slider .projectcard-wrap {
  margin: 15px 13px;
  /* vertical margin for hover translation and shadow, horizontal for gap */
}

.projects-slider:not(.slick-initialized) .projectcard-wrap {
  width: calc(25% - 26px);
  flex: 0 0 auto;
}

.projects-slider .slick-list {
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Services Slider Styles */
.services-slider {
  margin: 0 -10px;
  /* half of 20px gap */
}

.services-slider:not(.slick-initialized) {
  display: flex;
  overflow: hidden;
  flex-wrap: nowrap;
}

.services-slider .slick-track {
  display: flex !important;
}

.services-slider .service-card {
  margin: 0px 10px;
  /* vertical margin for shadow and translateY hover, horizontal for gap */
  height: auto !important;
  flex: 1;
}

.services-slider:not(.slick-initialized) .service-card {
  width: calc(16.666% - 20px);
  flex: 0 0 auto;
}

.services-slider .slick-list {
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (max-width: 768px) {
  .slider-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .slider-header .slider-arrows {
    position: static;
    transform: none;
    margin-top: 10px;
  }
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

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

/* Checklist */
.light-background-section {
  background-color: var(--light-bg);
  border-radius: 16px;
  padding: 40px 30px;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: .96rem;
  color: var(--gray-700);
}

.checklist .tick {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}


/* Stat badge */
.stat-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.stat-badge svg {
  width: 50px;
  height: 50px;
}

.stat-badge svg path {
  fill: var(--white);
}

.stat-badge .num {
  font-family: 'Inter';
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.stat-badge .label {
  font-size: .72rem;
  line-height: normal;
  color: rgba(255, 255, 255, .85);
  max-width: 110px;
}

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
}

.media-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.counter-wrap .counter-number{
  font-family:var(--font-head);
  font-weight:800;
  font-size:2rem;
  color:var(--green);
}
.counter-wrap .counter-experience {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Inter';
}
/* Testimonial / dark band */
.dark-band {
  background: var(--navy);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}

.dark-band .eyebrow {
  color: var(--green);
}

.quote-mark svg {
  width: 50px;
  height: 50px;
  fill: var(--green);
}

.dark-band blockquote {
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, .9);
  font-style: normal;
}

.dark-band cite {
  font-style: normal;
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
}

.dark-band cite b {
  color: var(--green);
}

/* Testimonials Slider Custom Styles */
.testimonial-section .testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonials-slider:not(.slick-initialized) .testimonial-item {
  display: none;
}

.testimonials-slider:not(.slick-initialized) .testimonial-item:first-child {
  display: block;
}

.testimonial-section .testimonial-item {
  outline: none;
}

.testimonial-section .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 32px 0 0 0;
  gap: 8px;
}

.testimonial-section .slick-dots li {
  margin: 0;
  padding: 0;
}

.testimonial-section .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.testimonial-section .slick-dots li button:hover {
  background: rgba(255, 255, 255, 0.7);
}

.testimonial-section .slick-dots li.slick-active button {
  background: var(--green);
  width: 24px;
  border-radius: 5px;
}

.value-card-wrapper{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
/* ---------------- Team ---------------- */
.team-card-wrapper{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 20px 26px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
 
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
 
.team-photo {
  position: relative;
  width: 104px;
  height: 104px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background .35s ease;
  border-radius: 50%;
}
 
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.team-photo .initials {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, .95);
}

 
.team-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
 
.team-role {
  font-size: .85rem;
  color: var(--gray-700);
  margin-bottom: 14px;
}
 
.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--blue-dark);
  background: var(--gray-50);
  border: 1px solid var(--line);
  padding: 5px 14px;
  border-radius: 999px;
}
 
.team-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.our_values_Section{
  background-color: #EDF0F5;
  padding: 80px 0px;
}
/* CTA */
.cta-section {
  background-image: url('Images/get-started-banner.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: .6fr .9fr;
  gap: 48px;
  align-items: center;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* .cta-contact .row{ display:flex; align-items:center; gap:12px; font-size:.95rem; color:var(--gray-700); flex-wrap:nowrap; margin:0; } */
.cta-contact .icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 0px;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-contact .icon svg {
  width: 100%;
  height: 100%;
}

.cta-contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
  font-size: .95rem;
  margin-bottom: 20px;
}

.cta-contact ul li:last-child {
  margin-bottom: 0px;
}

.cta-contact ul li a:hover {
  color: var(--blue);
}

.itemCard_wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.itemCard_wrapper .tag-service-title{
  font-size: 16px;
  font-weight: 500;
  font-family: 'Inter';
  color: var(--text-dark);
}
.item-card-bg{
    background: #EDF0F5;
    padding: 60px 0px;
} 

/* Project section */
.project-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.project-card .project-image img{
  aspect-ratio:4/3;
}
.featured-news{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
/* ==========================================================================
   Contact Page Redesign Styles
   ========================================================================== */

.contact-form-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-card-form{
  background: var(--white);
  padding: 40px;
  border: none;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: 0.3s ease-in-out;
  position: relative;
}
.contact-form-fields {
    margin-top: 40px;
}
.contact-form-fields label{
    font-size: .85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-family: var(--font-head);
}
.contact-form-fields input , .contact-form-fields select , .contact-form-fields textarea{
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    padding: 12px 14px;
    width: 100%;
    transition: var(--transition);
    font-size: 14px;
}
.contact-form-fields input:focus , .contact-form-fields select:focus , .contact-form-fields textarea:focus{
    outline: none;
    box-shadow: var(--shadow);
    border-color: var(--blue);
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              border-color 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.contact-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gray-50);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.contact-info-card:hover .contact-icon-badge {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.05);
}

.contact-info-content {
  flex: 1;
}

.contact-info-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  margin-top: 0;
  font-family: var(--font-body);
}

.contact-info-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-block;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

.contact-info-link:hover {
  color: var(--blue-dark);
}

.contact-info-text {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin: 0;
}

.contact-icon-badge svg {
  width: 22px;
  height: 22px;
}

/* Map card styling */
.contact-map-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-map-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-map-card iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 10px;
  display: block;
  filter: grayscale(0.6) contrast(1.1) opacity(0.95);
  transition: filter 0.4s ease;
}

.contact-map-card:hover iframe {
  filter: grayscale(0) contrast(1) opacity(1);
}


.artical-wrapper{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .7);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-grid .footer-column h4 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 16px;
  font-weight: 600;
  font-family: 'Inter';
}

.footer-grid .footer-links li {
  margin-bottom: 10px;
  font-size: .88rem;
  display: flex;
  align-items: center;
  color: var(--white);
}

.footer-grid .footer-links li svg {
  stroke: var(--green);
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

.footer-grid .footer-links li a {
  color: var(--white);
}

.footer-grid .footer-links li a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  font-size: .82rem;
}

.footer-bottom a {
  margin-left: 18px;
  transition: 0.3s all ease-in-out;
}

.footer-bottom a:hover {
  color: var(--green);
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-logo img {
  width: 200px;
}

.footer-logo p {
  font-size: 0.90rem;
  font-family: 'Inter';
  color: #fff;
  margin-bottom: 20px;
  margin-top: 20px;
  padding-right: 80px;
}
/* Projects Filtering Animations */
.projectcard-wrap.fade-in {
  animation: fadeInProject 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInProject {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.borderLine{
  width:56px;
  height:4px;
  background:var(--green);
  border-radius:2px;
  margin:14px 0 20px;
}

@media (max-width: 1440px) {
  .services-slider:not(.slick-initialized) .service-card {
    width: calc(20% - 20px);
  }
}

@media (max-width: 1200px) {
  .services-slider:not(.slick-initialized) .service-card {
    width: calc(25% - 20px);
  }
  .project-grid{
    grid-template-columns: repeat(3, 1fr);
  }

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

  .main-nav a {
    font-size: 14px;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .feature-item {
    padding: 0px 20px;
  }
}

@media(max-width:992px) {

  /* desktop nav is replaced by the offcanvas menu below this width */
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .header-actions .btn-primary.desktop-only {
    display: none;
  }

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

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

  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .page-hero {
    height: 100%;
  }

  .page-hero .hero-content-detail h1,
  .page-hero .hero-content-detail .main-hero-title {
    font-size: 2.3rem;
  }

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

  .feature-grid {
    column-gap: 0px;
    row-gap: 30px;
  }

  .feature-item {
    padding: 0px 20px;
  }

  .feature-item:nth-child(2) {
    border-right: 0px;
  }

  .feature-item .icon {
    width: 30px;
    height: 30px;
  }

  .project-card-body h3 {
    font-size: 16px;
  }

  .dark-band blockquote {
    font-size: 1rem;
  }

  .footer-bottom {
    display: flex;
    justify-content: center;
    padding: 22px 0;
    font-size: .82rem;
    flex-wrap: wrap;
    gap: 16px;
  }

  .projects-slider:not(.slick-initialized) .projectcard-wrap {
    width: calc(33.333% - 26px);
  }

  .services-slider:not(.slick-initialized) .service-card {
    width: calc(33.333% - 20px);
  }
  .value-card-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
  .team-card-wrapper{
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
    gap: 26px;
  }
  .contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .artical-wrapper{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-4,
  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-slider:not(.slick-initialized) .projectcard-wrap {
    width: calc(50% - 26px);
  }

  .services-slider:not(.slick-initialized) .service-card {
    width: calc(50% - 20px);
  }
  .itemCard_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
  }
  .item-card-bg .itemCard_wrapper .media-frame{
    order: 2;
  }
  .project-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .artical-wrapper{
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-news{
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
  }
}


@media (max-width: 575px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-6 {
    grid-template-columns: 1fr;
  }

  .section {
    margin: 40px 0;
  }
  .header-logo img {
    width: 150px;
  }

  .page-hero .hero-content-detail h1,
  .page-hero .hero-content-detail .main-hero-title {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  /* keep the <br> on the stacked home hero title — removing it runs the
     sentences together with no space between them */
  .page-hero .hero-content-detail h1:not(.main-hero-title) br {
    display: none;
  }

  .page-hero .hero-content-detail .d-flex,
  .cta-grid .d-flex {
    flex-wrap: wrap;
  }

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

  .theme-button-border {
    padding: 12px 12px;
  }

  .page-hero {
    padding: 80px 0px 80px 0px;
    position: relative;
    height: 100%;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }

  .feature-item .icon {
    width: 35px;
    height: 35px;
  }

  .feature-item {
    border-right: 0px;
    padding: 0px 20px 30px;
    border-bottom: 1px solid #a3a3a3;
  }

  .feature-item:last-child {
    padding: 0px 20px 0px;
    border-bottom: 0px;
  }

  .theme-button-filled {
    padding: 12px 12px;
  }

  .theme-button-dark {
    padding: 12px 12px;
  }

  .checklist li {
    font-size: .9rem;
  }

  .stat-badge {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 20px;
  }

  .light-background-section {
    padding: 20px 20px;
  }

  .dark-band blockquote {
    font-size: 0.9rem;
  }

  .cta-section {
    padding: 40px 0;
  }

  .footer-bottom {
    display: flex;
    justify-content: center;
    padding: 20px;
    font-size: .82rem;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-logo p {
    padding-right: 0;
  }

  .site-footer {
    padding-top: 40px;
  }

  .projects-slider:not(.slick-initialized) .projectcard-wrap {
    width: calc(100% - 26px);
  }

  .services-slider:not(.slick-initialized) .service-card {
    width: calc(100% - 20px);
  }

  .header-actions a {
    display: none;
  }

  .team-card-wrapper{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 26px;
  }
  .value-card-wrapper{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 26px;
  }
  .our_values_Section {
    background-color: #EDF0F5;
    padding: 40px 0px;
  }
  .contact-card-form {
    padding: 24px 18px;
  }

  .contact-info-content h3 {
    font-size: 1rem;
  }
  .contact-info-link {
    font-size: 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .project-grid{
    grid-template-columns: repeat(1, 1fr);
  }
  .page-hero.about-hero,
  .page-hero.services-hero,
  .page-hero.projects-hero,
  .page-hero.news-hero,
  .page-hero.contact-hero{
    height: 100%;
  }
  .page-hero::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(90deg, rgba(14, 32, 56, 0.95) 0%, rgb(14 32 56 / 90%) 35%, rgb(14 32 56 / 40%) 65%, rgb(14 32 56 / 21%) 100%);
    left: 0;
    top: 0;
    z-index: 1;
  }
  .artical-wrapper{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 26px;
  }
}

