/* Fonts */
/* :root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Lato",  sans-serif;
  --nav-font: "Inter",  sans-serif;
} */

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #171717;
  /* Color for headings, subheadings and title throughout the website */

  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent-color: #2086b8;
  /* --accent-color: #040346;  */
  /* --accent-color: #dd3209; */

  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */


  --primary: #FF800F;
  --secondary: #001064;
  --light: #F6F7F8;
  --dark: #010A35;
  --service: #06BBCC;

}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #222222;
  /* The default color of the main navmenu links */
  --nav-hover-color: #dd3209;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #171717;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #222222;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #dd3209;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f5f4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 135px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 70px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

.about {
  /* tokens */
  --card-radius: 16px;
  --soft-border: color-mix(in srgb, var(--default-color), transparent 88%);
  --muted-text: color-mix(in srgb, var(--default-color), transparent 28%);
  --muted-strong: color-mix(in srgb, var(--default-color), transparent 18%);
  --accent-soft: color-mix(in srgb, var(--accent-color), transparent 88%);
  --accent-softer: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.about .intro-card {
  background: var(--surface-color);
  border: 1px solid var(--soft-border);
  border-radius: calc(var(--card-radius) + 4px);
  padding: 32px;
  box-shadow: 0 30px 60px color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about .intro-card {
    padding: 22px;
  }
}

.about .intro-card .intro-head {
  margin-bottom: 1rem;
}

.about .intro-card .intro-head .kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--accent-color);
  background: var(--accent-softer);
}

.about .intro-card .intro-head h2 {
  margin-top: 12px;
  margin-bottom: 0.75rem;
  font-size: 2.125rem;
  line-height: 1.25;
  font-weight: 700;
}

@media (max-width: 768px) {
  .about .intro-card .intro-head h2 {
    font-size: 1.875rem;
  }
}

.about .intro-card .intro-body .lead {
  font-size: 1.125rem;
  color: var(--muted-strong);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.about .intro-card .intro-body p {
  color: var(--muted-text);
  /* line-height: 1.75; */
  margin-bottom: 1rem;
}

.about .intro-card .feature-list {
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}

.about .intro-card .feature-list .feature-item {
  display: flex;
  gap: 14px;
  padding: 14px 14px;
  border: 1px dashed var(--soft-border);
  border-radius: var(--card-radius);
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 50%);
  transition: all 0.3s ease;
}

.about .intro-card .feature-list .feature-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--default-color), transparent 92%);
}

.about .intro-card .feature-list .feature-item i {
  flex: 0 0 44px;
  height: 44px;
  width: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--accent-color);
  background: var(--accent-soft);
  font-size: 18px;
}

.about .intro-card .feature-list .feature-item .text h6 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  font-weight: 700;
}

.about .intro-card .feature-list .feature-item .text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted-text);
}

.about .intro-card .metric-band {
  margin: 18px 0 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border: 1px solid var(--soft-border);
  border-radius: calc(var(--card-radius) + 2px);
}

@media (max-width: 576px) {
  .about .intro-card .metric-band {
    gap: 12px;
    padding: 12px;
  }
}

.about .intro-card .metric-band .metric {
  display: grid;
  gap: 2px;
}

.about .intro-card .metric-band .metric .value {
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--accent-color);
  font-size: 1.75rem;
  line-height: 1;
}

.about .intro-card .metric-band .metric .label {
  font-size: 0.8rem;
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about .intro-card .metric-band .divider {
  width: 1px;
  height: 34px;
  background: var(--soft-border);
}

@media (max-width: 576px) {
  .about .intro-card .metric-band .divider {
    height: 28px;
  }
}

.about .intro-card .actions .btn.btn-accent {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 600;
  border: 1px solid var(--accent-color);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: all 0.3s ease;
}

.about .intro-card .actions .btn.btn-accent:hover {
  background: color-mix(in srgb, var(--accent-color), black 14%);
  border-color: color-mix(in srgb, var(--accent-color), black 14%);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--accent-color), transparent 62%);
}

.about .intro-card .actions .link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--heading-color);
  position: relative;
}

.about .intro-card .actions .link-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.about .intro-card .actions .link-more:hover {
  color: var(--accent-color);
}

.about .intro-card .actions .link-more:hover::after {
  transform: scaleX(1);
}

.about .showcase {
  height: 100%;
  display: grid;
  gap: 16px;
  grid-template-rows: 1fr auto;
}

.about .showcase .showcase-main {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--card-radius) + 4px);
  border: 1px solid var(--soft-border);
  box-shadow: 0 24px 50px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about .showcase .showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about .showcase .showcase-main .badge-note {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid var(--soft-border);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .showcase .showcase-main .badge-note i {
  color: var(--accent-color);
  background: var(--accent-soft);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.about .showcase .showcase-main .badge-note strong {
  display: block;
  line-height: 1.1;
  color: var(--heading-color);
}

.about .showcase .showcase-main .badge-note small {
  display: block;
  color: var(--muted-text);
}

.about .showcase .showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about .showcase .showcase-grid .mini {
  margin: 0;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--soft-border);
  background: var(--surface-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about .showcase .showcase-grid .mini img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

@media (min-width: 992px) {
  .about .showcase .showcase-grid .mini img {
    height: 140px;
  }
}

.about .showcase .showcase-grid .mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}




/*--------------------------------------------------------------
# mis-vis-core Section
--------------------------------------------------------------*/
.mis-vis-core {
  /* Custom properties for quick theming */
  --card-radius: 18px;
  --shadow-soft: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);
  --shadow-hover: 0 16px 44px color-mix(in srgb, var(--default-color), transparent 82%);
  --ring-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  --muted: color-mix(in srgb, var(--default-color), transparent 35%);
  /* Icon badge palettes via color-mix on accent for harmony */
  /* Swiper global fix if a slider is later embedded */
}

.mis-vis-core .intro-panel {
  background: linear-gradient(180deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 96%));
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.mis-vis-core .intro-panel .preview-visual {
  position: relative;
}

.mis-vis-core .intro-panel .preview-visual img {
  display: block;
}

.mis-vis-core .intro-panel .preview-visual::after {
  content: "";
  position: absolute;
  inset: -10px -8px auto auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent-color), transparent 65%), transparent 70%);
  filter: blur(12px);
  border-radius: 50%;
  pointer-events: none;
}

.mis-vis-core .intro-panel .intro-content .intro-title {
  font-weight: 800;
  margin-bottom: 8px;
}

.mis-vis-core .intro-panel .intro-content .intro-text {
  color: var(--muted);
  margin: 0;
}

.mis-vis-core .intro-panel .intro-content .intro-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding: 8px 0;
}

.mis-vis-core .intro-panel .intro-content .intro-highlights li i {
  color: var(--accent-color);
  font-size: 18px;
}

.mis-vis-core .intro-panel .intro-content .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 6px 22px color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: 0.3s;
}

.mis-vis-core .intro-panel .intro-content .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.mis-vis-core .intro-panel .intro-content .link-btn {
  color: var(--accent-color);
  border-radius: 999px;
  padding: 10px 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  transition: 0.3s;
}

.mis-vis-core .intro-panel .intro-content .link-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

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

.mis-vis-core .feature-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (max-width: 1200px) {
  .mis-vis-core .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .mis-vis-core .feature-grid {
    grid-template-columns: 1fr;
  }
}

.mis-vis-core .feature-item {
  position: relative;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: var(--card-radius);
  padding: 22px 18px 20px 18px;
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
  overflow: hidden;
}

.mis-vis-core .feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.mis-vis-core .feature-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 96%), transparent 100%);
  opacity: 0.8;
  pointer-events: none;
}

.mis-vis-core .feature-item .f-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--contrast-color);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

.mis-vis-core .feature-item .f-icon i {
  font-size: 22px;
}

.mis-vis-core .feature-item .f-body .f-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.mis-vis-core .feature-item .f-body .f-text {
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 15px;
}

.mis-vis-core .feature-item .f-body .f-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  border: 1px solid var(--ring-color);
}

.mis-vis-core .badge-blue {
  background: color-mix(in srgb, var(--accent-color), #5dade2 40%);
}

.mis-vis-core .badge-green {
  background: color-mix(in srgb, var(--accent-color), #2ecc71 45%);
}

.mis-vis-core .badge-purple {
  background: color-mix(in srgb, var(--accent-color), #9b59b6 40%);
}

.mis-vis-core .badge-orange {
  background: color-mix(in srgb, var(--accent-color), #f39c12 40%);
}

.mis-vis-core .badge-cyan {
  background: color-mix(in srgb, var(--accent-color), #48c9b0 40%);
}

.mis-vis-core .badge-pink {
  background: color-mix(in srgb, var(--accent-color), #e91e63 35%);
}

.mis-vis-core .assurance-banner {
  margin-top: 22px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 92%), var(--surface-color));
  border: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.mis-vis-core .assurance-banner .assurance-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 86%);
  color: var(--accent-color);
}

.mis-vis-core .assurance-banner .assurance-icon i {
  font-size: 20px;
}

.mis-vis-core .assurance-banner .assurance-content {
  flex: 1;
}

.mis-vis-core .assurance-banner .assurance-content h5 {
  margin: 0 0 4px 0;
  font-weight: 800;
}

.mis-vis-core .assurance-banner .assurance-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.mis-vis-core .assurance-banner .banner-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 999px;
  padding: 8px 14px;
  white-space: nowrap;
  transition: 0.3s;
}

.mis-vis-core .assurance-banner .banner-btn:hover {
  transform: translateX(2px);
  color: var(--contrast-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.mis-vis-core .swiper-wrapper {
  height: auto !important;
}

@media (max-width: 992px) {
  .mis-vis-core .intro-panel {
    padding: 24px;
  }

  .mis-vis-core .intro-panel .intro-content .intro-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .mis-vis-core .intro-panel .preview-visual::after {
    width: 90px;
    height: 90px;
  }

  .mis-vis-core .feature-item {
    padding: 18px 16px;
  }

  .mis-vis-core .feature-item .f-icon {
    width: 50px;
    height: 50px;
  }

  .mis-vis-core .feature-item .f-icon i {
    font-size: 20px;
  }

  .mis-vis-core .assurance-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mis-vis-core .assurance-banner .banner-btn {
    width: 100%;
    text-align: center;
  }
}



/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding-top: 30px;
  --tile-radius: 10px;
  --tile-border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  --tile-shadow: 0 2px 0 color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 30px;
}

.stats .stats-board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

@media (max-width: 1200px) {
  .stats .stats-board {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats .stats-board {
    grid-template-columns: 1fr;
  }
}

.stats .stat-tile {
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 0%);
  border: var(--tile-border);
  border-radius: var(--tile-radius);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 132px;
  box-shadow: var(--tile-shadow);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.stats .stat-tile:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-2px);
}

.stats .stat-tile .tile-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.stats .stat-tile .tile-head i {
  font-size: 24px;
  color: var(--accent-color);
}

.stats .stat-tile .tile-head .label .title {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.stats .stat-tile .tile-head .label .hint {
  display: block;
  margin-top: 2px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 13px;
  line-height: 1.4;
}

.stats .stat-tile .tile-metric {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.stats .stat-tile .tile-metric .metric-number {
  display: inline-block;
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1;
  font-size: 36px;
}

@media (max-width: 576px) {
  .stats .stat-tile .tile-metric .metric-number {
    font-size: 32px;
  }
}

.stats .stat-tile .tile-metric .metric-suffix {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  font-weight: 600;
}

.stats .stat-tile:nth-child(1) {
  border-top: 3px solid color-mix(in srgb, var(--accent-color), transparent 30%);
}

.stats .stat-tile:nth-child(2) {
  border-top: 3px solid color-mix(in srgb, #0abf53, transparent 30%);
}

.stats .stat-tile:nth-child(2) .tile-head i {
  color: color-mix(in srgb, #0abf53, transparent 0%);
}

.stats .stat-tile:nth-child(3) {
  border-top: 3px solid color-mix(in srgb, #ff7e00, transparent 30%);
}

.stats .stat-tile:nth-child(3) .tile-head i {
  color: color-mix(in srgb, #ff7e00, transparent 0%);
}

.stats .stat-tile:nth-child(4) {
  border-top: 3px solid color-mix(in srgb, #6f42c1, transparent 30%);
}

.stats .stat-tile:nth-child(4) .tile-head i {
  color: color-mix(in srgb, #6f42c1, transparent 0%);
}


.stats .stat-tile:nth-child(5) {
  border-top: 3px solid color-mix(in srgb, var(--accent-color), transparent 30%);
}

/* .stats .stat-tile:nth-child(5) .tile-head i {
  color: color-mix(in srgb, #6f42c1, transparent 0%);
} */

.stats .legend-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 10px 12px;
  border: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
}

@media (max-width: 576px) {
  .stats .legend-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.stats .legend-row .legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stats .legend-row .legend-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.stats .legend-row .legend-item .dot.dot-primary {
  background: var(--accent-color);
}

.stats .legend-row .legend-item .dot.dot-neutral {
  background: color-mix(in srgb, var(--default-color), transparent 40%);
}

.stats .legend-row .legend-item .text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}




/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills {
  background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 30%);
}

.skills .skills-header h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.skills .skills-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
}

.skills .skills-header .certifications {
  display: flex;
  gap: 2rem;
}

.skills .skills-header .certifications .cert-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--default-color);
}

.skills .skills-header .certifications .cert-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.skills .skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.skills .skill-item {
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.skills .skill-item:hover {
  box-shadow: 0 4px 8px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-2px);
}

.skills .skill-item .skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.skills .skill-item .skill-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0;
}

.skills .skill-item .skill-header .skill-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.skills .skill-item .skill-bar {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 6px;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.skills .skill-item .skill-bar .progress-bar {
  height: 100%;
  background-color: var(--accent-color);
  width: 1px;
  transition: width 0.9s ease;
  border-radius: 3px;
}

.skills .skill-item p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .skills .row {
    text-align: center;
  }

  .skills .skills-header {
    margin-bottom: 3rem;
  }

  .skills .skills-header .certifications {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .skills {
    padding: 40px 0;
  }

  .skills .skills-header h3 {
    font-size: 1.8rem;
  }

  .skills .skills-header .certifications {
    flex-direction: column;
    gap: 1rem;
  }

  .skills .skill-item {
    padding: 1.25rem;
  }
}



/* .prob-stat {

  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--heading-color);
}

.prob-stat .link-more:hover {
  color: var(--accent-color);
}

.prob-stat .link-more:hover::after {
  transform: scaleX(1);
} */



/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/

.btn {
  transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
  color: #FFFFFF;
}

.btn.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}



/*--------------------------------------------------------------
# Program Section
--------------------------------------------------------------*/

.home-program-item {
  position: relative;
  text-align: center;
}

.home-program-item .home-program-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.home-program-item .home-program-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  transform: scale(1.2);
  transition: .3s;
  z-index: -1;
}

.home-program-item:hover .home-program-img img {
  transform: scale(1);
}

.home-program-item .home-program-text {
  background: #FFFFFF;
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
  transition: .3s;
}

.home-program-item:hover .home-program-text {
  /* background: rgba(15, 66, 41, .6); */
  /* background:rgba(0, 0, 0, .65); */
  background: rgba(1, 10, 53, .65);
}

.home-program-item .home-program-text h4,
.home-program-item .home-program-text p {
  transition: .3;
}

.home-program-item:hover .home-program-text h4 {
  color: #FFFFFF;
}

.home-program-item:hover .home-program-text p {
  color: var(--light);
}

.home-program-item .home-program-text .btn-square {
  width: 100px;
  height: 100px;
  background: transparent;
  transition: .5s;
}

.home-program-item:hover .home-program-text .btn-square {
  background: var(--light);
}

.home-program-item .home-program-text .btn {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  background: var(--light);
  white-space: nowrap;
  overflow: hidden;
  transition: .3s;
}

.home-program-item:hover .home-program-text .btn {
  width: 110px;
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .about-item+.about-item {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .about .about-item+.about-item {
    margin-top: 40px;
  }
}

.about .about-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.about .about-item .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
}

.about .about-item .btn-get-started:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.about .about-item ul {
  list-style: none;
  padding: 0;
}

.about .about-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.about .about-item ul li:last-child {
  padding-bottom: 0;
}

.about .about-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .about-item img {
  border: 6px solid var(--surface-color);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.about .about-item .about-img-bg {
  position: relative;
  min-height: 500px;
}

@media (max-width: 640px) {
  .about .about-item .about-img-bg {
    min-height: 300px;
  }
}

.about .about-item .about-img-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .about-item .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
}

.about .about-item .image-stack .stack-back {
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
}

.about .about-item .image-stack .stack-front {
  grid-row: 1;
  grid-column: 1/span 8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
}


.hero {
  background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('/assets/img/banner/101.jpg');
  /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/img/banner/1.png'); */

}

.about-banner {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('/assets/img/banner/header.jpg');

}


.cpe {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('/assets/img/banner/child-care-institution.webp');

}

.hero-skills-development {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('/assets/img/banner/Skill-Development.jpg');
}


.hero-networking {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('/assets/img/banner/Networking-header.jpeg');
}

.health-nutrition {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('/assets/img/banner/nikshya-mitra.jpg');

}

.women-imp {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('/assets/img/banner/Women-Empowerment.jpg');

}

.other-init {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('/assets/img/banner/2.png');

}

.hero-doante-us {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('/assets/img/banner/doante-us.jpg');
}

.hero-resources {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('/assets/img/banner/resources-header.png');
}


.hero-policy {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('/assets/img/banner/CCI-kishori-home.JPG');
}


.annual-reports{
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('/assets/img/banner/2.png');
}

.banner {
  /* background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('/assets/img/banner/101.jpg'); */
  background-size: cover;
  background-position: center;
  color: white;
  /* padding: 10rem 0 5rem;; */
  /* padding: 7rem 0 7rem; */
  padding: 8rem 0 4rem;
  text-align: center;
  /* margin-top: 7rem; */
}


.banner-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease;
}

.banner-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  animation: fadeIn 1.5s ease;
}


/*--------------------------------------------------------------
# Our Trusted partners Section
--------------------------------------------------------------*/
.our-partners {
  overflow-x: hidden;
  padding: 40px 0;
  /* Responsive adjustments */
}

.our-partners .our-partners-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.our-partners .our-partners-slider:not(:last-child) {
  margin-bottom: 20px;
}

.our-partners .our-partners-track {
  display: flex;
  width: max-content;
  animation-duration: 90s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.our-partners .our-partners-track.track-1 {
  animation-name: scroll-left;
}

.our-partners .our-partners-track.track-2 {
  animation-name: scroll-right;
}

.our-partners .our-partners-track:hover {
  animation-play-state: paused;
}

.our-partners .our-partners-slide {
  flex: 0 0 auto;
  width: 250px;
  height: 150px;
  /* width: 200px;
  height: 100px; */
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.our-partners .our-partners-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--default-color), transparent 96%), transparent);
  transition: 0.5s;
}

.our-partners .our-partners-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.our-partners .our-partners-slide:hover::before {
  left: 100%;
}

.our-partners .our-partners-slide:hover img {
  filter: none;
  opacity: 1;
}

.our-partners .our-partners-slide img {
  max-width: 90%;
  max-height: 90%;
  /* max-width: 80%; */
  /* max-height: 60%; */
  /* filter: grayscale(100%); */
  /* opacity: 0.7; */
  transition: all 0.3s ease;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .our-partners .our-partners-slide {
    width: 180px;
    height: 90px;
    margin: 0 20px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-100%);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-100%);
    }

    100% {
      transform: translateX(0);
    }
  }
}

@media (max-width: 767px) {
  .our-partners .our-partners-slide {
    width: 150px;
    height: 75px;
    margin: 0 15px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-100%);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-100%);
    }

    100% {
      transform: translateX(0);
    }
  }
}


/* .section-title {
  font-weight: 700;
  font-size: 3rem;
  text-align: unset;
  padding-bottom: 0px;
  position: relative;
  margin-bottom: 30px;
} */

/* .section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--secondary);
} */

.section-highlight {
  background: linear-gradient(to right, rgba(52, 152, 219, 0.1), rgba(231, 76, 60, 0.1));
  border-left: 4px solid var(--secondary);
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}


/* Download Icon */


.reports {
  display: flex;
  justify-content: space-between;
  /* Pushes items to left & right */
  align-items: center;
  /* Vertically centers them */
  padding: 10px;
}

.reports img {
  max-width: 50px;
  /* adjust image size */
  height: auto;
}


.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, .75rem);
  padding-left: var(--bs-gutter-x, .75rem);
  margin-right: auto;
  margin-left: auto
}


@media (min-width: 1400px) {

  .container,
  .container-xxl {
    max-width: 1320px
  }
}


.navbar>.container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between
}