:root {
  --primary-orange: #f15d1f;
  --primary-blue: #1e2940;
  --text-dark: #172b4d;
  --text-grey: #505f79;
  --text-light-grey: #6b778c;
  --bg-light: #f7f8fa;
  --white: #ffffff;
  --border-color: #dfe1e6;
  --gradient-primary: linear-gradient(180deg, #f15d1f 0%, #f15d1f 90%);
  --navy-gradient: linear-gradient(
    135deg,
    #1e2940 0%,
    rgba(30, 41, 64, 0.8) 100%
  );
  --blue-orange-gradient: linear-gradient(180deg, #3f6aaf 0%, #f15d1f 100%);
  --hero-gradient: linear-gradient(135deg, #3f6aaf 0%, #1e2940 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
}

p {
  margin: 0;
}

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

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

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

/* .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
} */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.2s;
  gap: 8px;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-secondary {
  background: #ebecf0;
  color: var(--text-dark);
  border: none;
}

.section-padding {
  padding: 80px 0;
}

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.badge-orange-light {
    background-color: #f15d1f1a;
    color: #f15d1f;
    padding: 9px 13px;
}

.badge-blue-light {
  background-color: #3f6aaf1a;
    color: #3F6AAF;
    padding: 9px 13px;
}

.badge-white-light {
  background-color: #ffffff1a;
    color: #ffffff;
    padding: 9px 13px;
}
/* ===== HEADER FIX ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: #ffffff; /* WHITE HEADER */
  transition: all 0.3s ease;
}

/* Shrink on scroll */
.site-header.shrink {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* ===== HEADER MENU STYLE (MATCH DESIGN) ===== */

.main-menu {
  gap: 40px;
}

.navbar .nav-link {
  font-size: 14px;
  font-weight: normal;
  color: #1e2940;
  position: relative;
  padding: 8px 0;
}

/* Active underline */
.navbar .nav-link.active {
  color: var(--primary-orange);
}

/* Contact Us button */
.btn-contact {
  background: var(--gradient-primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 400;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(241, 93, 31, 0.4);
  color: #ffffff !important;
}

/* Mobile alignment */
@media (max-width: 991px) {
  .header-cta {
    display: none;
  }

  .main-menu {
    gap: 16px;
    padding-top: 16px;
  }

  .navbar .nav-link.active::after {
    display: none;
  }
}

/* ===== ACTIVE MENU – ORANGE TEXT + ORANGE UNDERLINE ===== */

.navbar .nav-link {
  color: #1e2940; /* normal text */
  font-weight: 500;
  position: relative;
}

/* Active state */
.navbar .nav-link.active {
  color: var(--primary-orange) !important;
  font-weight: 600;
  background: none; /* remove blue highlight */
}

/* Orange underline */
.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background-color: var(--primary-orange);
  border-radius: 4px;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 4px;
  background-color: var(--primary-orange);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.navbar .nav-link.active::after {
  left: 0;
  width: 100%;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-brand {
  .logo {
    display: inline-block;
    width: 50px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
}

.main-nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  position: relative;
}

.nav-link.active {
  color: var(--primary-orange);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-orange);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

/* CSS for section section:Hero */
.banner-section {
  background: linear-gradient(180deg, #1E2940 46%, #3F6AAF 100%);
  padding-top: 2%;
  padding-bottom: 5%;
  color: var(--white);
  overflow: hidden;
}

.banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.banner-badge .dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-orange);
  border-radius: 50%;
}

.banner-text h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.banner-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 540px;
}

.banner-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.banner-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat-item h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.banner-image-wrapper {
  position: relative;
}

.banner-bg-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(241, 93, 31, 0.3) 0%,
    rgba(63, 106, 175, 0.3) 100%
  );
  filter: blur(80px);
  border-radius: 24px;
  z-index: 0;
}

.banner-main-img {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
}

.banner-floating-card {
  position: absolute;
  bottom: -5%;
  right: 0%;
  z-index: 2;
  background: var(--white);
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-icon-box {
  width: 48px;
  height: 48px;
  background: var(--blue-orange-gradient);
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-text h4 {
  color: var(--text-dark);
  font-size: 16px;
}

@media (max-width: 992px) {
  .banner-content {
    grid-template-columns: 1fr;
  }
  .banner-floating-card {
    left: 20px;
    bottom: 20px;
  }
}

/* CSS for section section:About */
.about-header {
  margin-bottom: 60px;
}
.about-header h2 {
  font-size: 40px;
  color: #1E2940;
  line-height: 48px;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 100px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: 24px;
  width: 100%;
}
.about-stat-card {
  position: absolute;
  bottom: -30px;
  left: 30px;
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 240px;
}
.about-stat-card h3 {
  color: var(--primary-orange);
  font-size: 32px;
  margin-bottom: 4px;
}
.about-stat-card p {
  color: var(--text-dark);
  font-size: 16px;
}
.about-text h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1E2940;
  line-height: 36px;
}
.story-desc {
  color: #6B778C;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
}
.story-sub {
  color: #6B778C;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 25px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-icon-box {
  width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
}
.feature-icon-box.blue {
  background-color: var(
    --primary-orange
  ); /* Using orange based on visual consistency, though code said blue class */
}
.feature-item span {
      font-size: 14px;
    color: #6B778C;
    line-height: 24px;
    font-weight: 400;
}
.approach-text {
  color: var(--text-grey);
  margin-bottom: 32px;
  font-style: italic;
}

.core-values {
  margin-bottom: 100px;
}
.core-values h3 {
  margin-bottom: 48px;
  font-size: 28px;
  color: #1E2940;
  line-height: 36px;
  font-weight: 600;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.value-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16%;
  background: linear-gradient(
    135deg,
    rgba(63, 106, 175, 0.1) 0%,
    rgba(241, 93, 31, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  color: #3f6aae;
}
.value-card h4 {
  margin-bottom: 8px;
  color: #1E2940;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
.value-card p {
  font-size: 14px;
  color: #6B778C;
  font-weight: 400;
  line-height: 20px;
}

.team-section h3 {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: #1E2940;
}
.team-sub {
  color: #6B778C;
  margin-bottom: 48px;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}
.team-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  width: 390px;
}
.team-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}
.team-info {
  padding: 24px;
  text-align: center;
}
.team-info h4 {
      margin-bottom: 10px;
    line-height: 28px;
    font-weight: 600;
}
.team-info p {
  color: #3F6AAF;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:Projects */
.projects-section {
  background-color: var(--white);
}
.projects-header {
  max-width: 768px;
  margin: 0 auto 56px;
}
.projects-header h2 {
  font-size: 40px;
    color: #1E2940;
    line-height: 48px;
}
.projects-header p {
      color: #6B778C;
    margin-bottom: 48px;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.project-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.project-image {
  position: relative;
  height: 292px;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-tag {
      position: absolute;
    top: 16px;
    left: 16px;
    background: #ffffff;
    color: #3F6AAF;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
}
.project-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.project-details h3 {
  font-size: 25px;
    color: #1E2940;
    line-height: 36px;
    font-weight: 600;
}
.project-details p {
      font-size: 14px;
    color: #6B778C;
    line-height: 20px;
    font-weight: 400;
}
.project-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
      font-size: 14px;
    color: #6B778C;
    line-height: 20px;
    font-weight: 400;
}
.mt-5 {
  margin-top: 48px;
}

@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:Features */
.features-section {
  background-color: var(--white);
}
.features-header {
  margin-bottom: 60px;
}
.features-header h2 {
      font-size: 40px;
    color: #1E2940;
    line-height: 48px;
}
.features-grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-icon-lg {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}
.feature-card h4 {
      font-size: 18px;
    color: #1E2940;
    line-height: 26px;
    font-weight: 600;
}
.feature-card p {
  font-size: 14px;
  color: #6B778C;
  line-height: 20px;
}
.feature-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-bar {
 height: 1px;
    background: #dfe1e6;
    border-radius: 2px;
    overflow: hidden;
}
.stat-fill {
  height: 100%;
  background: var(--primary-orange);
}
.stat-text {
  line-height: 16px;
  font-size: 12px;
  font-weight: 400;
  color: #8993A4;
}

.stat-text-95 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
  background: linear-gradient(to top, #F15D1F, #f15e1fd5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-text-100 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
  background: linear-gradient(to top, #3F6AAF, #3F6AAFd5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-text-80 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
  background: linear-gradient(to top, #1E2940, #1E2940d5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-text-98 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
  background: linear-gradient(to top, #f15d1f, #3F6AAF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
      background: linear-gradient(180deg, #1E2940 0%, #3F6AAF 100%);
  border-radius: 24px;
  padding: 48px;
  color: var(--white);
  text-align: center;
}
.stat-box h3 {
      font-size: 32px;
    margin-bottom: 8px;
    line-height: 38px;
    font-weight: 400;
}
.stat-box p {
  font-size: 16px;
  color: #ffffffc1;
  line-height: 24px;
  font-weight: 400;
}

@media (max-width: 992px) {
  .features-grid-cards {
    grid-template-columns: 1fr 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 576px) {
  .features-grid-cards {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:CostEstimator */
.estimator-section {
    background: linear-gradient(180deg, #1E2940 46%, #3F6AAF 100%);
  color: var(--white);
}
.estimator-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.estimator-text h2 {
  font-size: 40px;
    color: #ffffff;
    line-height: 48px;
}
.estimator-text p {
  font-size: 18px;
    color: #ffffffb0;
    margin-bottom: 40px;
    line-height: 28px;
    font-weight: 400;
}
.estimator-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing h2 {
    font-size: 40px;
    color: #1E2940;
    line-height: 48px;
}
.pricing p {
    color: #6B778C;
    margin-bottom: 48px;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
}
.investors-text h2 {
    font-size: 40px;
    color: #1E2940;
    line-height: 48px;
}
.investors-text p {
    color: #6B778C;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
}
.contact-info h2 {
    font-size: 40px;
    color: #1E2940;
    line-height: 48px;
}
.contact-info p {
    color: #6B778C;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
}
.est-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.est-feature span {
  color: rgba(255, 255, 255, 0.9);
}

.estimator-preview img {
  border-radius: 22px;
}
.preview-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(10px);
}
.preview-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.preview-title h4 {
  font-size: 18px;
}
.preview-title p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.preview-arrow {
  margin-left: auto;
}

.preview-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.preview-option {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  .arrow {
    color: #949eaf;
  }
}
.opt-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-orange-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
}
.opt-text h5 {
  font-size: 16px;
}
.opt-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.preview-footer {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
}
.est-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.badge-dark {
  background: #232e45;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
}
.est-value {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}
.est-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.accuracy-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-dark);
}
.acc-val {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
}
.acc-label {
  font-size: 12px;
  color: var(--text-grey);
}

@media (max-width: 992px) {
  .estimator-content {
    grid-template-columns: 1fr;
  }
  .accuracy-badge {
    right: 20px;
  }
}

/* CSS for section section:Pricing */
.pricing-section {
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}
.mb-5 {
  margin-bottom: 48px;
}
.text-grey {
  color: var(--text-grey);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  position: relative;
}
.pricing-card.featured {
  border: 2px solid rgba(63, 106, 175, 0.2);
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
  z-index: 1;
}
.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-card.featured .icon-box {
  background: rgba(63, 106, 175, 0.1);
}
.price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
}
.unit {
  color: var(--text-light-grey);
}
.desc {
  color: var(--text-grey);
  margin-bottom: 32px;
  font-size: 14px;
}
.feature-list {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-grey);
}
.w-100 {
  width: 100%;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pricing-card.featured {
    transform: scale(1);
  }
}

/* CSS for section section:Investors */
.investors-section {
  background-color: #f8f9fb;
	border-bottom: 5px solid #ffffff;
}
.investors-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mb-4 {
  margin-bottom: 32px;
  color: var(--text-grey);
}
.investor-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
.inv-feature {
  display: flex;
  gap: 16px;
  background: #f7f8fa;
  padding: 16px;
  border-radius: 16px;
}
.inv-feature h5 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.inv-feature p {
  font-size: 14px;
  color: var(--text-grey);
}
.investor-actions {
  display: flex;
  gap: 16px;
}
.btn-outline-blue {
  border: 2px solid #3f6aaf;
  color: #3f6aaf;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
}

.investors-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.main-img {
  width: 100%;
  border-radius: 24px;
}
.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(30, 41, 64, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.stats-overlay {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
}
.stat-group {
  display: flex;
  justify-content: space-between;
}
.stat-block h3 {
  color: var(--primary-orange);
  font-size: 24px;
  margin-bottom: 4px;
}
.stat-block p {
  color: var(--text-grey);
  font-size: 14px;
}

@media (max-width: 992px) {
  .investors-content {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:Contact */
.contact-section {
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-desc {
  color: var(--text-grey);
  margin-bottom: 48px;
  font-size: 18px;
}
.info-list {
  margin-bottom: 48px;
}
.info-list h3 {
  color: var(--text-dark);
  margin-bottom: 8px;
}
.info-sub {
  color: var(--text-grey);
  margin-bottom: 32px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(180deg, #3f6aaf 0%, #1e2940 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-item .label {
  font-size: 14px;
  color: var(--text-light-grey);
}
.info-item p {
  color: var(--text-dark);
  font-weight: 600;
}

.hours-box {
  background: linear-gradient(180deg, #1e2940 0%, #3f6aaf 100%);
  padding: 32px;
  border-radius: 16px;
  color: var(--white);
}
.hours-box h4 {
  margin-bottom: 16px;
}
.hour-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.contact-form h3 {
  margin-bottom: 32px;
  color: var(--text-dark);
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-grey);
  font-weight: 500;
}
.input-wrapper {
  background: #f7f8fa;
  border: 1px solid #dfe1e6;
  border-radius: 16px;
  padding: 12px 16px;
}
.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  color: var(--text-dark);
}

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

/* CSS for section section:Footer */
.site-footer {
  background-color: #1e2940;
  color: var(--white);
  padding-top: 80px;
  padding-bottom: 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 80px;
}
.footer-brand {
  max-width: 400px;
}
.footer-desc {
  color: #a5adba;
  margin: 24px 0;
}
.fc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #a5adba;
  i {
    color: var(--primary-orange);
  }
}
.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.link-col h4 {
  margin-bottom: 24px;
  font-size: 16px;
}
.link-col ul li {
  margin-bottom: 12px;
}
.link-col ul li a {
  color: #a5adba;
  transition: color 0.2s;
}
.link-col ul li a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  border-top: 1px solid #505f79;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #a5adba;
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: var(--white);
}
.social-icon:hover {
  background: var(--primary-orange);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }
  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

/* List Icons */
.feature-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: center;
}
.feature-list i {
  color: #28a745;
  margin-right: 12px;
  font-size: 1rem;
}

/* Buttons */
.btn-light-custom {
  background-color: #e9ecef;
  border: none;
  color: #495057;
  font-weight: 600;
}
.btn-primary-custom {
  background: #3F6AAF;
  border: none;
  font-weight: 400;
  color: var(--white);
}
.btn:hover {
  filter: brightness(90%);
}
.dwnload.btn:hover {
  color: #fff;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.pricing-card .price {
  font-weight: 400 !important;
}

.price {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.price span {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.9;
}

.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #445;
}

.features i {
  color: #2ecc71;
  font-size: 16px;
}

.btn-rounded {
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 600;
}

.btn-premium {
  background: #2e59a7;
  color: #fff;
}

.btn-premium:hover {
  background: #244b8e;
  color: #fff;
}

/* ================= CARD BASE ================= */
.pricing-card {
  border: none;
  border-radius: 18px;
  overflow: visible;
  transition: all 0.35s ease;
  position: relative;
  background: #fff;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

/* ================= HEADERS (NO PADDING GAP) ================= */
.card-header-custom {
  padding: 7%;
  color: #fff;
  border-radius: 0;
  p {
    font-size: 0.9rem;
  }
}

.standard-bg {
      background: linear-gradient(180deg, #6B778C 30%, #505F79 90%);
}
.premium-bg {
      background: linear-gradient(180deg, #3f6aaf 30%, #1e2940 90%);
}
.luxury-bg {
      background: linear-gradient(180deg, #f15d1f 30%, #D14A12 90%);
}

/* ================= ICON BOX ================= */
.popular-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 20px;
}

/* ================= PRICE ================= */
.price {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.price span {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.9;
}

/* ================= FEATURES ================= */
.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #445;
}

.features i {
  color: #2ecc71;
  font-size: 16px;
}

/* ================= BUTTONS ================= */
.btn-rounded {
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 600;
}

.btn-light-custom {
  background: #eef0f4;
  color: #1f2a44;
}

.btn-light-custom:hover {
  background: #e2e5ea;
  color: #1f2a44;
}

.btn-premium {
  background: #2e59a7;
  color: #fff;
}

.btn-premium:hover {
  background: #244b8e;
  color: #fff;
}

/* ================= BADGE ================= */
.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #e65100;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  z-index: 10;
}
.card-header-wrapper {
  overflow: hidden;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
/* ================= BASE BUTTON (NORMAL STATE) ================= */
.pricing-card .btn {
  background: #eef0f4;
  color: #1f2a44;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* ================= STANDARD CARD HOVER ================= */
.pricing-card:hover .btn-standard {
  background: #5d6d7e;
  color: #fff;
}

/* ================= PREMIUM CARD HOVER ================= */
.pricing-card:hover .btn-premium {
  background: #2e59a7;
  color: #fff;
}

/* ================= LUXURY CARD HOVER ================= */
.pricing-card:hover .btn-luxury {
  background: #e65100;
  color: #fff;
}
/* ===== CTA CARD ===== */
.quote-card {
  max-width: 900px;
  margin: 60px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.quote-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-text h6 {
  margin: 0;
  font-weight: 600;
  color: #1f2a44;
}

.quote-text p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #6b7280;
}

.btn-calc {
  background: #e86b2a;
  color: #fff;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 500;
}

.btn-calc:hover {
  background: #d95c1e;
  color: #fff;
}

/* ===== INFO BOXES ===== */
.info-box {
  border: 1px solid #e3e7ef;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  background: #fff;
}

.info-box h6 {
  font-size: 15px;
  font-weight: 600;
  color: #3b5bcc;
  margin-bottom: 4px;
}

.info-box p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.feature-card-quality {
  .feature-icon-lg,
  .stat-fill {
    background: linear-gradient(
      135deg,
      #3f6aaf 0%,
      rgba(63, 106, 175, 0.8) 100%
    );
  }
}
.feature-card-sustainability {
  .feature-icon-lg,
  .stat-fill {
    background: var(--navy-gradient);
  }
}
.feature-card-budget {
  .feature-icon-lg,
  .stat-fill {
    background: linear-gradient(180deg, #f15d1f 0%, #3f6aaf 100%);
  }
}
.gradient-primary-bg {
  background: var(--gradient-primary);
}
.bg-navy-gradient {
  background: var(--navy-gradient);
}
.bg-hero-gradient {
  background: var(--hero-gradient);
}

/* mobile respnsive latest style */

@media (max-width: 374px) {
  .banner-content {
    display: block;
  }
  .banner-text h1 {
    font-size: 40px;
  }
  .banner-stats {
      gap: 20px;
      margin-bottom: 15px;
  }
  .contact-grid {
      display: block;
  }
  .team-card {
      width: 100%;
  }
}

/* investors page start */

.investor-hero {
        background: linear-gradient(180deg, #1E2940 46%, #3F6AAF 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ffffff1f;
    color: #fffffff0;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-badge i {
  color: #f15d1f;
}
/* .hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
} */

/* .hero-subtitle {
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.6;
} */


/* =========================================
   Features (Why Invest)
   ========================================= */
.section-heading {
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    color: #1E2940;
}

.section-subheading {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 25px;
    color: #6B778C;
}

.feature-card {
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
    border-color: rgba(253, 93, 51, 0.1);
}

.icon-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(159deg, #3f6aaf1f, #F15D1F1f);
    color: #3f6aaf;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.feature-card .card-title {
  font-size: 19px;
  line-height: 28px;
  color: #1E2940;
}
.stat-block {
    padding-top: 1rem;
    border-top: 1px solid #dfe1e6;
}

.stat-value {
    display: block;
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
    color: #f15d1f;
}

.stat-label {
    font-size: 12px;
    color: #8993A4;
    font-weight: 400;
    line-height: 16px;
}

/* =========================================
   Partnership Tiers
   ========================================= */
.tier-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}
.tier-card.silver {
      background: linear-gradient(white, white) padding-box, linear-gradient(to right, #A5ADBA, #6b778c) border-box;
    border-radius: 10px 10px 10px 10px;
    border-top: 5px solid transparent;
}
.tier-card.gold {
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #FDC700, #D08700) border-box;
    border-radius: 10px 10px 10px 10px;
    border-top: 5px solid transparent;
}
.tier-card.platinum {
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #2e59a7, #9810FA) border-box;
    border-radius: 10px 10px 10px 10px;
    border-top: 5px solid transparent;
}
.tier-silver:hover {
  border: 3px solid #6b778c;
  transform: translateY(-5px);
  border-radius: 10px;
}
.tier-silver:hover  .btn-silver {
  background-color: #6b778c;
  color: #fff;
}
.tier-gold:hover {
  border: 3px solid #F15D1F;
  transform: translateY(-5px);
  border-radius: 10px;
}
.tier-gold:hover  .btn-gold {
  background-color: #F15D1F;
  color: #fff;
}
.tier-platinum:hover {
  border: 3px solid #2e59a7;
  transform: translateY(-5px);
  border-radius: 10px;
}
.tier-platinum:hover  .btn-platinum {
  background-color: #2e59a7;
  color: #fff;
}
.partnership-tiers {
      background: linear-gradient(180deg, #F7F8FA 46%, #FFFFFF 100%);
}
.tier-card:hover {
    box-shadow: var(--card-hover-shadow);
}

.tier-card-popular {
    border-color: var(--primary-orange);
    box-shadow: 0 15px 40px rgba(253, 93, 51, 0.1);
    transform: scale(1.02);
    z-index: 2;
}

#investors .most-popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.tier-name {
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 0.5rem;
    color: #1E2940;
}

.tier-price {
    font-size: 24px;
    font-weight: 400;
    color: #3F6AAF;
    line-height: 32px;
}

.tier-features li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.tier-features li i {
    color: #00a63e;
    margin-top: 3px;
    background-color: #DCFCE7;
    font-size: 10px;
    border-radius: 50px;
    padding: 3px;
}

.btn-outline-custom {
    color: #505F79;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 400;
    line-height: 24px;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
    background: #EBECF0;
}

/* =========================================
   Investment Process
   ========================================= */
.process-step {
        padding: 25px;
    background: linear-gradient(170deg, #f7f8fa, #ffffff);
    border-radius: 16px;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4B5563 0%, #1F2937 100%); /* Default dark */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.step-title {
  font-size: 19px;
  line-height: 28px;
  color: #1E2940;
}
.step-desc {
  font-size: 14px;
  line-height: 20px;
}
/* Connect line for desktop */

.process-step:nth-child(1) .step-number { background: linear-gradient(170deg, #3F6AAF, #f15d1f); }
/* 4th stays dark or another shade */

/* =========================================
   Track Record / CTA
   ========================================= */
.track-record-section {
       background: linear-gradient(175deg, #1E2940, #3F6AAF);
    padding: 5rem 0;
}

.stat-card-dark {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-icon-text {
  color: #f15d1f;
  font-size: 18px;
}

.stat-value-large {
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
}

.cta-card-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.ready-invst {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
}
.track-record {
  font-size: 40px;
}
.track-record-sectio h2 {
  font-size: 40px;
}

/* investors page end */



/* about page start */

/* Hero Section */
.hero-section {
        background: linear-gradient(180deg, #1E2940 46%, #3F6AAF 100%);
    min-height: 85vh;
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}

/* Decorative blur circles in hero */
.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(92, 136, 196, 0.1);
    filter: blur(80px);
    border-radius: 50%;
}

.hero-sec-about h1 {
  font-size: 37px;
  line-height: 56px;
}
.hero-sec-about p {
  font-size: 18px;
  line-height: 28px;
}

#about .badge {
   color: #fffffff0;
   font-size: 16px;
   font-weight: 400;
   background-color: #ffffff1f;
} 
.hero-image-wrapper img {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Vision & Mission */
.card-vision {
        background: linear-gradient(135deg, #F15D1F 0%, #f15d1fd9 100%);
    box-shadow: 0 15px 30px rgba(242, 101, 34, 0.2);
    transition: transform 0.3s ease;
}

.card-mission {
        background: linear-gradient(135deg, #3F6AAF 0%, #3f6aafd9 100%);
    box-shadow: 0 15px 30px rgba(74, 111, 165, 0.2);
    transition: transform 0.3s ease;
}

.card-vision:hover, .card-mission:hover {
    transform: translateY(-5px);
}

.about-icon-box {
    width: 60px;
    height: 60px;
    color: #ffffff;
}

/* Core Values */
.core-values {
    background-color: #F8F9FA;
}

#about .card-body.cores p {
      font-size: 16px;
    line-height: 25px;
    color: #6B778C;
}

#about  .value-icon {
  background: linear-gradient(159deg, #3f6aaf1f, #F15D1F1f);
  color: #3f6aaf;
}

.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}

/* Journey Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E0E0E0;
    background: linear-gradient(135deg, #3F6AAF, #F15D1F);
    transform: translateX(-50%);
}

.timeline-content h3 {
    color: #F15D1F;
    font-size: 24px;
    line-height: 32px;
}
.timeline-content h5 {
    color: #1E2940;
    font-size: 20px;
    line-height: 28px;
}
.timeline-content p {
    color: #6B778C;
    font-size: 16px;
    line-height: 25px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 10px;
    height: 10px;
    padding: 0px !important;
    border-radius: 50%;
    background-color: #f15d1f;
    transform: translateX(-50%);
    border: 2px solid white;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
    margin-top: 24px;
}

#about .leadership-team h4 {
  color: #1E2940;
  font-size: 20px;
  line-height: 28px;
}
#about .leadership-team p.mb-3 {
  color: #3F6AAF;
  font-size: 14px;
  line-height: 20px;
}
#about .leadership-team p.mb-0 {
  color: #6B778C;
  font-size: 12px;
  line-height: 20px;
}
.leadership {
  background: linear-gradient(180deg, #F7F8FA, #ffffff);
}
.core-values {
      background: linear-gradient(180deg, #ffffff, #F7F8FA);
}

/* Text alignment adjustments for desktop */
@media (min-width: 768px) {
    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 20px;
    }
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 20px;
    }
}

/* Mobile Timeline */
@media (max-width: 767px) {
    .timeline-line {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-content {
        margin-left: 50px !important;
        margin-right: 0 !important;
        text-align: left !important;
    }
    
    .col-md-6 {
        width: 100%;
    }
    
    .d-none.d-md-block {
        display: none !important;
    }
    
    .pe-md-5 {
        padding-right: 0 !important;
    }
    #about .stats-bar h2 {
    font-size: 33px !important;
}
}

/* Leadership */
.leadership .card img {
    transition: transform 0.5s ease;
}

.leadership .card:hover img {
    transform: scale(1.03);
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(180deg, #1E2940, #3F6AAF);
}

#about .stats-bar h2 {
  font-size: 48px;
  line-height: 48px;
}
#about .stats-bar p {
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 767px) {
    .border-end {
        border-right: none !important;
    }
    .col-6:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.1) !important;
    }
}

/* about page end */

/* --- Contact Page Start --- */

.contact-hero {
    background: linear-gradient(180deg, #1E2940 0%, #3f6aaf 100%);
    padding-bottom: 40px; /* Space for overlapping cards */
}

.contact-hero h1 {
  font-size: 40px;
  line-height: 61px;
  font-weight: 800;
}

.open-hours {
  background: linear-gradient(180deg, #1E2940 0%, #3f6aaf 100%);
}
.open-hours h5{
  font-size: 26px;
  line-height: 34px;
}
.open-hours h5 i {
  color: #f15d1f;
}
#contact-us .card-body span {
  font-size: 16px;
  color: #ffffffd4;
  line-height: 24px;
}
.ofc-location  {
  font-size: 26px;
  line-height: 34px;
  color: #1E2940;
}

#contact-us .card-body h6 {
  color: #1E2940;
  font-size: 16px;
  line-height: 24px;
}
#contact-us .card-body ul li {
  color: #6B778C;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
#contact-us .card-body ul li i{
  color: #3F6AAF;
}

.contact-cards-container {
    margin-top: -80px; /* Pull cards up into hero */
    position: relative;
    z-index: 10;
}

.contact-hero .badge i {
  color: #f15d1f;
}
.contact-cards-container .card {
    transition: transform 0.3s ease;
}

.contact-cards-container .card:hover {
    transform: translateY(-5px);
}

 .icon-wrapper-contact {
    width: 45px;
    padding: 10px;
    font-size: 20px;
    border-radius: 16px;
} 
 .icon-wrapper-contact.phone {
    background-image: linear-gradient(45deg, #3F6AAF, #3f6aafe3);
} 
 .icon-wrapper-contact.email {
    background-image: linear-gradient(45deg, #F15D1F, #f15d1fe3);
} 
 .icon-wrapper-contact.map {
    background-image: linear-gradient(45deg, #1E2940, #1E2940e3);
} 
#contact-us .card-body h5.mb-2  {
  color: #1E2940;
  font-size: 20px;
  line-height: 28px;
}
#contact-us .card-body p.mb-2 {
  color: #3F6AAF;
  font-size: 16px;
  line-height: 24px;
}
#contact-us .card-body p.mb-0 {
  color: #6B778C;
  font-size: 14px;
  line-height: 20px;
}
.send-msg h2 {
  color: #1E2940;
  font-size: 40px;
  line-height: 48px;
}
.send-msg p {
  color: #6b778c;
  font-size: 16px;
  line-height: 25px;
}
/* Form Styles */
.form-label {
  color: #505F79;
  font-size: 16px;
  line-height: 24px;
}
.form-control, .form-select {
  background-color: #F7F8FA;
  border: 1px solid #dfe1e6;
}
.form-control:focus, .form-select:focus {
    box-shadow: none;
    border: 1px solid var(--primary-color) !important;
    background-color: white !important;
}
form .btn-primary {
  padding: 10px;

}

/* Sidebar Cards */
.map-placeholder {
    height: 400px;
    background-color: #E9ECEF;
    border: 1px solid #DEE2E6;
}
.quick-qstn {
  background-image: linear-gradient(45deg, #F7F8FA, #ffffff);
  border: 1px solid #DFE1E6;
  border-radius: 12px;
}
.view-faq {
  color: #3F6AAF;
  font-size: 14px;
  line-height: 20px;
  text-decoration: underline;
}
@media (max-width: 991px) {
    .contact-hero {
        padding-bottom: 80px;
    }
    
    .contact-cards-container {
        margin-top: -60px;
    }
}

/* contact page start */


/* cost estimate page start */

.cost-estimate .form-card {
    border: none;
    border-radius: 16px;
    box-shadow: 1px 3px 5px #ececec;;
    background: #fff;
}

.cost-estimate {
  background: linear-gradient(180deg, #F7F8FA 0%, #ffffff 100%);
}

.cost-estimate .badge-custom {
    background: #f15d1f24;
    color: #F15D1F;
    padding: 5px 15px;
    border-radius: 50px;
}

.cost-estimate  .page-title{
  font-size: 40px;
  line-height: 50px;
  color: #1E2940;
}
.cost-estimate  .page-subtitle{
  font-size: 16px;
  line-height: 25px;
  color: #6B778C;
}
.cost-estimate .section-heading {
  color: #1E2940;
  font-size: 26px;
  line-height: 36px;
}
.estimate-card {
    border: none;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
        background: linear-gradient(170deg, #1E2940 0%, #3F6AAF 100%);
    position: relative;
    overflow: hidden;
}

/* Progress Bar */
.progress-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.progress {
    background-color: #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background-color: var(--primary-orange);
}
.progress-label .step {
  color: #6B778C;
  font-size: 14px;
  line-height: 20px;
}
.progress-label .text-primary-custom {
  color: #3F6AAF;
  font-size: 14px;
  line-height: 20px;
}

/* Option Cards */
.option-card {
    display: block;
    cursor: pointer;
    width: 100%;
}

.option-card input {
    display: none;
}

.cost-estimate .card-content {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cost-estimate .icon-wrapper {
    font-size: 24px;
    color: #9CA3AF;
    transition: color 0.2s;
}

.option-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #505F79;
    transition: color 0.2s;
}

/* Selected / Hover States */
.option-card:hover .card-content {
    border-color: #CBD5E1;
}

.option-card input:checked + .card-content {
    border-color: var(--primary-orange);
    background-color: #FFFBF9; /* Very faint orange tint */
}

.option-card input:checked + .card-content .icon-wrapper {
    color: var(--primary-orange);
}

.option-card input:checked + .card-content .option-title {
    color: var(--text-dark);
    font-weight: 600;
}

/* Next Button */
.btn-next {
    background-color: #9CA3AF; /* Disabled state color */
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
}
/* For active state later */
.btn-next:not(:disabled) {
    background-color: #6366F1; /* Indigo/Blue for active next button often used */
    /* Or stick to design which shows disabled. Design shows a light blue-gray */
    background-color: #93C5FD; /* Light blueish placeholder */
    background-color: #94A3B8; /* Slate 400 */
}

/* Estimate Right Panel */
.estimate-icon-circle {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F15D1F; /* Gold/Orange dollar sign */
}

.estimate-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.empty-state-text {
    color: #ffffff91;
    font-size: 16px;
    line-height: 24px;
}

.cost-estimate .info-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: left;
    padding: 1rem;
    color: #CBD5E1;
    font-size: 0.85rem;
    border: none;
}
.cost-estimate .info-box p {
  font-size: 14px;
    color: #ffffffb0;
    line-height: 20px;
}

.cost-estimate .info-box i {
    color: #FCD34D; /* Light bulb yellow */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
}

/* Fix for the Next button color in design - it's a soft blue-gray */
.btn-next {
    background-color: #9FB3C8; /* Muted blue-gray */
}


/* cost estimate page end */


/* projects page start */

.main-content {
  padding-bottom: 4rem;
}

.hero-section {
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}

.badge-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background-color: #3f6aaf1f;
}

.badge-hero-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #3F6AAF;;
}

.hero-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1E2940;
  line-height: 61px;
}

.hero-subtitle {
  margin-inline: auto;
    font-size: 16px;
    line-height: 25px;
    color: #ffffffbd;
    font-weight: 400;
}

.filter-group {
  margin-top: 0.5rem;
}

.filter-pill {
  border-radius: 999px;
  border: 1px solid var(--border-color);
  padding: 0.55rem 1.4rem;
  background-color: #EBECF0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #505f79;
  outline: none;
}

.filter-pill.active {
      background-image: linear-gradient(45deg, #3f6aaf, #3f6aafe3);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.35);
}

.filter-pill:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.5);
  outline-offset: 2px;
}

/* Projects grid */

.projects-section {
  padding-bottom: 4rem;
}

.project-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;
      box-shadow: 0 22px 40px #a7a7a729;
  display: flex;
  flex-direction: column;
}

.project-image-wrapper {
  position: relative;
  overflow: hidden;
}

.project-image {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.project-badges .badge {
  border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 7px 15px;
}

.badge-category {
  background-color: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
}

.badge-residential {
  background-color: #ffffff;
    color: #3F6AAF;
}

.badge-commercial {
     background-color: #ffffff;
    color: #3F6AAF;
}

.badge-industrial {
  background-color: #ffffff;
    color: #3F6AAF;
}

.badge-status {
  background-color: #047857;
  color: #ecfdf3;
}

.badge-completed {
      background-color: #00C950;
}

.badge-ongoing {
  background-color: #2563eb;
}

.badge-in-progress {
  background-color: #f97316;
  color: #fffbeb;
}

.project-cta-icon {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background-color: var(--primary-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(253, 93, 51, 0.55);
}

.project-cta-icon i {
  font-size: 0.95rem;
}

.project-cta-icon:hover {
  background-color: var(--primary-orange-hover);
}

.project-card .card-body {
  padding: 1.4rem 1.4rem 1.1rem;
}

.project-title {
  font-size: 25px;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #1E2940;
    line-height: 36px;
}

.project-desc {
      font-size: 14px;
    color: #6B778C;
    margin-bottom: 0.9rem;
    font-weight: 400;
    line-height: 20px;
}

.project-meta {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.project-meta li {
  display: flex;
  align-items: center;
  font-size: 14px;
    color: #6B778C;
    line-height: 20px;
}

.project-meta i {
  width: 18px;
  margin-right: 0.45rem;
  font-size: 0.8rem;
  color: #3F6AAF;
}

/* CTA */

.cta-section {
  padding-bottom: 4.5rem;
}

.cta-card {
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  color: #e5e7eb;
      background-image: linear-gradient(180deg, #1E2940, #3f6aaf);
}

.cta-title {
  font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    line-height: 48px;
}

.cta-subtitle {
  max-width: 540px;
  margin-inline: auto;
  font-size: 18px;
  color: #ffffffc4;
  line-height: 28px;
}

.btn-cta {
  border-radius: 999px;
  border: none;
  background-color: var(--primary-orange);
  padding: 0.8rem 1.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta:hover {
  background-color: var(--primary-orange-hover);
  color: #ffffff;
}

.btn-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* projects page end */


/* form style */

form label {
	    color: #505F79;
    font-size: 16px;
    line-height: 30px;
}
form label input {
	    background-color: #F7F8FA !important;
    border: 1px solid #dfe1e6 !important;
    height: 50px !important;
    border-radius: 12px !important;
	width: 100%;
    margin-top: 10PX !important;
    margin-bottom: 15px !important;
	padding: 10px;
}
form textarea {
	    background-color: #F7F8FA !important;
    border: 1px solid #dfe1e6 !important;
    border-radius: 12px !important;
    margin-top: 10PX !important;
	width: 100%;
    margin-bottom: 15px !important;
	padding: 10px;
	    height: 200px;
    resize: none;
}
form label select {
	 background-color: #F7F8FA !important;
    border: 1px solid #dfe1e6 !important;
    height: 50px !important;
    border-radius: 12px !important;
    margin-top: 10PX !important;
	padding: 10px;
	width: 100%;
    margin-bottom: 15px !important;
}
form input.has-spinner {
	background: #f15d1f;
	color: #fff;
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 500;
    width: 100%;
    border: none;
    margin-top: 20px;
}

.map-section {
	background: #F7F8FA;
}
.light-gray-gradient {
	    background: linear-gradient(180deg, #FFFFFF 46%, #F7F8FA 100%);
}
.reverse-grey-linear {
	background: linear-gradient(180deg, #F7F8FA 46%, #FFFFFF 100%);
}

.calculator  input {
	background-color: #F7F8FA !important;
    border: 1px solid #dfe1e6 !important;
    height: 50px !important;
    border-radius: 12px !important;
    width: 100%;
    padding: 10px;
}

.calculator button {
	background: #3f6aaf;
	color: #fff;
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 500;
	margin-top:  10px;       
    width: 100%;
    border: none;
}

.calculator #result {
	margin-top: 20px;
	font-size: 18px;
	font-weight: bold;
	color: #f15d1f;
}
.result-section{
    display:flex;
    justify-content:space-between;
    margin-top:20px;
    font-size:20px;
}
.total{
    font-weight:bold;
	color: #f15d1f;
}
.formula{
    color:#000000;
}
