@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --blue: #0161d2;
  --navy-blue: #1c1853;
  --light-nb: #e1e6fe;
  --grey-bg: #f6f8fe;
  --dGrey: #2d3034;
  --grey: #999;
  --lGrey: #8b8b8b;
  --paraGrey: #454545;
  --white: #ffffff;
  --black: #000000;
}

/* Typography System */
* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.3;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: var(--paraGrey);
}

h1,
.heading-xl {
  font-size: 56px;
  font-weight: 800;
  color: var(--navy-blue);
  line-height: 1.2;
}

h2,
.heading-lg {
  font-size: 40px;
  font-weight: 700;
  color: var(--navy-blue);
}

h3,
.heading-md {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-blue);
}

h4,
.heading-sm {
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-blue);
}

p,
.body-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--paraGrey);
}

p.lead,
.subheading {
  font-size: 18px;
  font-weight: 500;
  color: var(--dGrey);
  text-transform: uppercase;
  letter-spacing: 2px;
}

em,
.quote {
  font-style: italic;
  color: #f2f2f2;
}

/* Reusable spacing utilities */
.pt-120 {
  padding-top: 120px !important;
}
.mt-50 {
  margin-top: 50px;
}
.mt-100 {
  margin-top: 100px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-10 {
  margin-top: 10px;
}
.m-0 {
  margin: 0;
}
.p-0 {
  padding: 0;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #1c1853;
  text-transform: uppercase;
}
.section-subtitle {
  text-align: center;
  margin: 10px auto 50px auto;
  font-size: 20px;
  font-weight: 500;
  color: var(--grey);
  text-transform: uppercase;
  max-width: 80%;
  line-height: 1.4;
}

/* Navbar */
.nav {
  width: 100%;
  position: fixed;
  z-index: 99;
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.95);
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav div.logo a img {
  height: 60px;
  width: auto;
}

.affix div.logo a img {
  height: 50px;
}

/* Main Navigation List */
.nav div.main_list ul {
  display: flex;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 0;
  margin: 0;
}

.nav div.main_list ul li {
  padding: 10px 20px;
}

.nav div.main_list ul li a {
  text-decoration: none;
  color: var(--navy-blue);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav div.main_list ul li a:hover {
  color: var(--blue);
}
/* Hamburger Menu */
.navTrigger {
  display: none;
  cursor: pointer;
  width: 55px;
  height: 25px;
  position: absolute;
  right: 5px;
  top: 20px;
}

.navTrigger i {
  background-color: var(--navy-blue);
  display: block;
  height: 4px;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navTrigger.active i:nth-child(1) {
  transform: translateY(9px) rotate(135deg);
}

.navTrigger.active i:nth-child(2) {
  opacity: 0;
}

.navTrigger.active i:nth-child(3) {
  transform: translateY(-9px) rotate(-135deg);
}

/* Social Media Icons */
.social-media-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 15px;
}

.sm-icon img,
.call img,
.email img {
  height: 20px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(9%) sepia(32%) saturate(747%)
    hue-rotate(209deg) brightness(94%) contrast(97%);
}

.x img {
  height: 18px;
}

/* Hero Banner */
.hero-banner {
  height: 100vh;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95)),
    url("../media/images/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-heading {
  font-size: 5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-blue);
}

.hero-subtext {
  font-size: 18px;
  color: var(--paraGrey);
  font-weight: 500;
  margin-top: 20px;
}

.hero-tagline {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 20px;
  letter-spacing: 1px;
}

.hero-btns {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btns .btn {
  padding: 12px 36px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.hero-btns .btn-peb {
  background-color: var(--blue);
  color: var(--white);
}

.hero-btns .btn-peb:hover {
  background-color: #014bb0;
}

.hero-btns .btn-piping {
  background-color: var(--navy-blue);
  color: var(--white);
}

.hero-btns .btn-piping:hover {
  background-color: #161240;
}

/* Mission + Vision */
.arrows {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 70%;
}

.equal-height {
  display: flex;
  flex-wrap: wrap;
}

.equal-height > div {
  display: flex;
  flex-direction: column;
}

.mv-card {
  background: linear-gradient(135deg, #2872e0, #5d47c5);
  padding: 10%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.mv-card h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 15px;
}

.mv-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.mv-card ul li {
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.mv-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: bold;
}

.mv-card p {
  font-style: italic;
  color: #f2f2f2;
  margin-bottom: 10px;
}

.mv-image img {
  object-fit: cover;
}

/* About */
.about-section {
  position: relative;
  margin-top: 100px;
}

.about-bg img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  object-position: top;
  display: block;
}

.about-card {
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(1, 97, 210, 0.06);
  padding: 60px 70px;
  max-width: 75%;
  margin: -120px auto 0 auto;
  position: relative;
  z-index: 2;
}

.about-card .section-subtitle {
  text-align: left;
  margin: 0 0 10px 0;
  max-width: 100%;
}

.about-card p {
  font-size: 17px;
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 20px;
}

.about-card .about-bold {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 25px;
}

/* Strength Section */
.strengths-section {
  padding: 80px 0;
}

.strength-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.strength-icon {
  height: 80px;
  margin-bottom: 20px;
}

.strength-text {
  font-size: 15px;
  color: #7a7a7a;
  font-weight: 400;
}

.strength-tagline em {
  color: var(--blue);
  font-weight: 600;
  font-size: 18px;
  font-style: italic;
}

/*  Founders Section  */
.founder-section {
  padding: 100px 0;
  background-color: var(--grey-bg);
}

.founder-section .section-subtitle span {
  color: var(--blue);
}

.founder-section .founder-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.founder-text-side {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--white);
}

.founder-card {
  padding: 40px;
  text-align: left;
}

.founder-name {
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-blue);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.founder-qualifications-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.founder-qualifications-list li {
  font-size: 15px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px;
}

.founder-qualifications-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: bold;
}

.founder-leadership {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-blue);
}

.founder-description {
  font-size: 15px;
  color: var(--paraGrey);
  margin-top: 10px;
}

.founder-quote {
  margin-top: 30px;
  font-size: 18px;
  font-style: italic;
  color: var(--blue);
  font-weight: 600;
  border-left: 4px solid var(--blue);
  padding-left: 15px;
}
.founder-section .arrows {
  left: 45%;
}

.solutions-section {
  padding: 100px 0;
}

.solution-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  transition: transform 0.3s ease;
  cursor: pointer;
  height: 100%;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
  transform: translateY(-8px);
}

.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.solution-card .card-content {
  background: linear-gradient(to bottom, transparent 0%, #0161d2 60%);
  padding: 20px;
  color: white;
  position: absolute;
  bottom: 0;
  width: 100%;
  transition: all 0.3s ease;
  height: 30%;
}

.solution-card .card-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 5px;
  color: white;
  text-transform: uppercase;
  text-align: left;
}

.solution-card .card-subtitle {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: white;
  text-align: left;
}

.solution-card .hover-content {
  background-color: #0161d2;
  color: white;
  padding: 25px;
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.solution-card:hover .hover-content {
  opacity: 1;
  pointer-events: auto;
  text-align: left;
}

.solution-card .hover-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.solution-card .hover-content ul {
  font-weight: 300;
  list-style-type: disc;
  padding-left: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
}

  .client-logo-section{
    padding: 100px 0!important;
    background-color: var(--grey-bg);
  }
  
.client-logo-section .swiper-slide {
    text-align: center;
}
  
  .client-logo-section .section-title{
      margin-bottom: 80px!important;
  }

  .client-logo-section img {
    height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }
  .client-logo-section img:hover {
    filter: grayscale(0%);
  }

/* === Testimonial Section === */
.testimonial-section {
  padding: 80px 0;
  background-color: var(--white);
}

/* === Swiper Slide === */
.testimonial-swiper .swiper-slide {
  display: flex;
  height: auto !important;
}

/* === Testimonial Card === */
.testimonial-card {
  border-radius: 10px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: left;
}

/* Color Variants */
.testimonial-card.blue {
  background-color: #0161d2;
  color: var(--white);
}
.testimonial-card.blue .testimonial-text {
  color: var(--white);
}

.testimonial-card.sky {
  background-color: #e7f0fd;
  color: #1c1853;
}

.testimonial-card.grey {
  background-color: #f2f2f2;
  color: #1c1853;
}

/* Quotation Mark */
.quote-icon img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

/* Text */
.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Author Info */
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author-name {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  color: inherit;
}

.author-role {
  font-size: 0.9rem;
  opacity: 0.8;
  color: inherit;
}

.testimonial-stars {
  font-size: 1rem;
  color: #ffd700;
}

/* Swiper Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #1c1853;
}

/* Project proof */
.project-performance-section {
  padding: 50px 0;
}

.project-swiper {
  position: relative;
  overflow: hidden;
}

.project-card {
  display: flex;
  flex-direction: row;
  background: var(--grey-bg);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 0 0 50%;
  max-width: 50%;
}

.project-details,
.project-content {
  padding: 20px;
  flex: 0 0 50%;
  max-width: 50%;
  background-color: var(--grey-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-details p,
.project-content p {
  margin-bottom: 12px;
  color: #1c1853;
  line-height: 1.6;
}

.project-details strong,
.project-content strong {
  color: #0161d2;
  display: inline-block;
  margin-bottom: 4px;
}

/* Swiper buttons */
.project-swiper .swiper-button-next,
.project-swiper .swiper-button-prev {
  top: 50%;
  color: #1c1853;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--grey-bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.project-swiper .swiper-button-next::after,
.project-swiper .swiper-button-prev::after {
  font-size: 18px;
}

/* core values */
.values-grid {
  display: flex;
}

.core-values-section {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.core-values-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
  max-width: 1200px;
}

.core-value-card {
  flex: 1 1 16.666%; /* 6 columns */
  background-color: var(--grey-bg);
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 4px solid transparent;
  position: relative;
  transition: all 0.3s ease;
}

.core-value-card:nth-child(2),
.core-value-card:nth-child(6) {
  background-color: var(--blue);
  color: #ffffff;
}

.core-value-card:nth-child(3) {
  background-color: var(--grey);
  color: #ffffff;
}

.core-value-card:nth-child(4) {
  background-color: var(--navy-blue);
  color: #ffffff;
}

.core-value-card svg,
.core-value-card img {
  height: 56px;
  margin-bottom: 20px;
}

.core-value-card .divider svg {
  width: 100%;
}

.core-value-card h3 {
  padding: 0 20px;
  font-size: 16px;
  font-weight: 700;
  color: inherit;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0;
  text-align: center;
}
.core-value-card ul {
  list-style: none;
  padding: 20px;
}
.core-value-card ul li {
  margin-bottom: 5px;
}
.core-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 103, 217, 0.1);
}

/* Where we build */

/* ====== Section Styling ====== */
.where-we-build-section {
  padding: 60px 0;
  background-color: #fff;
}

/* ====== Industry Cards ====== */
.industry-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

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

/* ====== Top Heading Overlay ====== */
.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  border-bottom-right-radius: 100px;
  padding: 10px 45px 10px 20px;
  z-index: 2;
}

.industry-heading {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: #121212;
}

/* ====== Bottom Caption Overlay ====== */
.industry-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    to top,
    #16164a,
    rgba(22, 22, 74, 0.85),
    transparent
  );
  color: #fff;
  padding: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
  z-index: 2;
}

/* ===== Contact Us CTA Section ===== */
.contact-cta {
  background-image: url("../media/images/contact-cta-bg.png");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  color: var(--white);
}

.contact-cta .cta-white-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
}

.ce-ctas-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-common-ce {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 80px;
  padding: 5px 20px 5px 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-common-ce:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cta-common-icon {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  margin-right: 10px;
}

.cta-common-icon img {
  height: 20px;
  width: auto;
}

.cta-common-txt {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.ce-ctas-wrapper a {
  text-decoration: none;
}

.main-footer {
  background-image: url("../media/images/footer-bg.jpg"); /* Update the path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1743; /* Fallback */
  color: #fff;
  position: relative;
  z-index: 1;
}

.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 23, 67, 0.85); /* Dark overlay */
  z-index: 0;
}

.main-footer .container,
.main-footer .row,
.main-footer .col-md-4,
.main-footer .col-md-3,
.main-footer .col-md-2 {
  position: relative;
  z-index: 2;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-description {
  color: var(--white);
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #ffffff;
}

.footer-contact li {
  color: #cccccc;
  margin-bottom: 8px;
}

.footer-contact li a {
  color: #cccccc;
  text-decoration: none;
}

.footer-contact li a:hover {
  color: #ffffff;
}