body {
  font-family: "Montserrat", sans-serif;
}

/* Navbar */
.navbar-nav li {
  color: #041527;
  
}
.active{
  color: grey !important;
}
/* Footer */
.footer-section {
  background-color: #071527;
}
 
.footer-logo {
  width: 45px;
  height: 45px;
}

.footer-section a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #facc15 !important;
}

/* Banner Section */
.service-banner-container {
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  padding: 6rem 1rem;
}

.service-hero-heading {
  font-size: 52px;
  font-family: "Libre Baskerville", serif;
}

.banner-description {
  max-width: 700px;
  font-size: clamp(16px, 2vw, 1.1rem);
}

/* Section Heading */
.section-heading {
  font-size: 38px;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 32px;
    text-align: center;
  }

  .service-hero-heading {
    font-size: 46px;
  }
}

/* Section Container */
.section-container {
  background: #fffefc;
}

@media (max-width: 786px) {
  .section-container {
    padding: 40px 10px !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .section-container {
    padding: 60px 10px !important;
  }
}

/* Audit Section */
.audit-container {
  background-color: #fffdf9;
  border: 1px solid #fbbd23;
  position: relative;
  overflow: hidden;
}

.highlight-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #fbbd23;
  border-radius: 15px 15px 0 0;
}

.audit-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.audit-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  font-size: 16px;
  color: #344054;
  line-height: 24px;
}

.audit-list li::before {
  content: "✔";
  color: #2c4e93;
  font-weight: bold;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .audit-container {
    padding: 20px;
  }

  .audit-container h3 {
    font-size: 1.3rem;
  }

  .illustration {
    max-width: 100%;
    width: 95%;
    margin-top: 1.2rem;
  }
}

.illustration {
  max-width: 75%;
  border-radius: 10px;
}

/* Comprehensive Cards */
:root {
  --Comprehensive-cards: 4;
  --cardheight: 87vh;
  --cardToppadding: 1.5em;
  --cardMargin: 4vw;
}

.Comprehensive-container {
  width: 100%;
  margin: 0 auto;
}

#Comprehensive-cards {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--Comprehensive-cards), var(--cardheight));
  gap: var(--cardMargin);
  padding-bottom: calc(var(--Comprehensive-cards) * var(--cardToppadding));
  margin-bottom: var(--cardMargin);
}

.Comprehensive-card {
  position: sticky;
  top: 0;
  padding-top: calc(var(--index) * var(--cardToppadding));
}

#Comprehensive-card1 {
--index: 1;
}

#Comprehensive-card2 {
  --index: 2;
}

#Comprehensive-card3 {
  --index: 3;
}

#Comprehensive-card4 {
  --index: 4;
}

#Comprehensive-card5 {
  --index: 5;
}

@media (max-width: 768px) {
  #Comprehensive-cards {
    grid-template-rows: auto;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .Comprehensive-card {
    position: relative;
    padding-top: 0;
  }
}


/* Features Card */
.features-card {
  background: #fff;
  border: 2px dashed #000;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(150, 150, 150, 0.1);
}

/* Features Card Heading Containers */
.features-card-heading-continer1,
.features-card-heading-continer2,
.features-card-heading-continer3,
.features-card-heading-continer4 {
  padding: 20px;
}

.features-card-heading-continer1 {
  background-color: #f2eafd;
  color: #57348f;
}

.features-card-heading-continer2 {
  background-color: #d9e6ff;
  color: #041527;
}

.features-card-heading-continer3 {
  background-color: #fff9e9;
  color: #fbbd23;
}

.features-card-heading-continer4 {
  background-color: #c3f6e2;
  color: #0d734c;
}

/* Features List */
.features-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 1rem;
  color: #344054;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
}

@media (max-width: 576px) {
  .features-card {
    margin-bottom: 1.5rem;
  }
}

/* Governance Card */
.govern-card {
  background: linear-gradient(180deg, #fff 0%, #fdfdfd 100%);
  border-radius: 12px;
  height: 100%;
  padding: 40px 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: left;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04),
    0 8px 20px rgba(0, 0, 0, 0.06);
}

.govern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05),
    0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #fff 0%, #fefefe 100%);
}

.govern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 60px;
  height: 3.5px;
  background: linear-gradient(90deg, #fbbd23, #ffe27a);
  border-radius: 10px;
}

/* Sector Cards */
.sectors-icons {
  background-color: #f0d6921a;
}

.sector-card {
  background: #fff;
  border: 1px solid #fbbd23;
  padding: 24px;
  border-radius: 10px;
  height: 100%;
}

/* Methodology Card */
.methodology-card {
  background-color: #ffda7f1a;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px;
  line-height: 1.6;
}

.methodology-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Arrows */
.arrow-img {
  max-width: 70%;
  height: auto;
  transform: translateY(15px);
}

@media (max-width: 767.98px) {
  .arrow-img {
    display: none !important;
  }
}

/* Contact Form */
.contact-form {
  background-color: #fff;
  border: 1px solid #f5d98a;
  border-radius: 12px;
  max-width: 750px;
  margin: 0 auto;
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 6px;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  box-shadow: none;
  font-size: 0.95rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #2c4e93;
  box-shadow: 0 0 0 0.1rem rgba(44, 78, 147, 0.25);
}

.contact-form .btn-primary {
  background-color: #0d2f6e;
  border-color: #0d2f6e;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  background-color: #143c86;
  border-color: #143c86;
}