.repeated-certificate-main .repeated-cirtificate-box .common-circle-shape-parent .image-inner {
  border: 1px solid #111 !important;

}

:root {
  --untitled-500: 'Montserrat', sans-serif;
  --untitled-400: 'Montserrat', sans-serif;
  --untitled-400-ita: 'Montserrat', sans-serif;

  --publico-300: 'Montserrat', sans-serif;
  --publico-500: 'Montserrat', sans-serif;

  /* Brand Colors - Global Rebrand */
  --brand-primary-bg: #FFFFFF;
  --brand-text: #333333;
  --brand-accent: #55C1E8;
  /* Brand Blue/Turquoise for Buttons */
  --brand-secondary-bg: #F4F4F4;
  /* Light Gray for Sections */
  --brand-dark-bg: #222222;
}

body {
  background-color: var(--brand-primary-bg) !important;
  color: var(--brand-text) !important;
  font-family: "Montserrat", sans-serif !important;
}

/* Aggressive Font Override */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
li,
button,
input,
select,
textarea {
  font-family: "Montserrat", sans-serif !important;
}

/* Global Button Rebrand - Pill Shape Redesign */
.button-arrow,
.scorepoint-btn,
.membership,
.btn-primary {
  display: flex !important;
  /* Changed from inline-flex to flex for centering */
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #17a2b8 0%, #0d6efd 100%) !important;
  /* Blue Gradient */
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  /* Pill Shape */
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 25px !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 188, 212, 0.3);
  text-decoration: none !important;
  width: fit-content !important;
  /* Ensure it doesn't stretch */
  margin: 20px auto 0 auto !important;
  /* Center Align */
}

/* Hover Effect */
.button-arrow:hover,
.scorepoint-btn:hover,
.membership:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(13, 110, 253, 0.4);
  background: linear-gradient(90deg, #0d6efd 0%, #17a2b8 100%) !important;
  color: #fff !important;
}

.button-arrow .arrow-icon {
  display: none !important;
  /* Hide the weird broken line-arrow */
}

.button-arrow .arrow-text {
  margin-right: 8px;
  /* Space for new arrow */
}

/* Add fresh FontAwesome arrow */
.button-arrow::after {
  content: "\f061";
  /* FontAwesome Right Arrow */
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
  font-weight: 900;
  margin-left: 5px;
  font-size: 14px;
  transition: margin-left 0.3s;
}

.button-arrow:hover::after {
  margin-left: 10px;
}


/* Bento Grid System for Welcome Section */
.bento-grid-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 25px;
  padding: 40px 0;
}

/* Card Styles */
.bento-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-5px);
}

/* Specific Areas */
.bento-intro-card {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  padding: 40px;
  background: linear-gradient(135deg, #f9fbfd 0%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-intro-card h3 {
  font-size: 2.5rem;
  color: var(--brand-text);
  margin-bottom: 10px;
  font-weight: 700;
}

.bento-intro-card h3 span {
  color: var(--brand-accent);
  /* Green/Turquoise Highlight */
}

.bento-intro-card h5 {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 25px;
  font-weight: 500;
}

.bento-intro-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0;
}

.bento-map-card {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  background: var(--brand-secondary-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bento-map-card p {
  margin-top: 15px;
  font-weight: 700;
  color: var(--brand-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bento-map-card span {
  color: var(--brand-accent);
}

.bento-map-card iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  border: none;
  min-height: 300px;
}

.bento-media-card {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  background: #000;
  min-height: 250px;
}

.bento-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.bento-news-card {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  background: #fff;
  padding: 20px;
  border: 1px solid #eee;
}

.bento-news-card h6 {
  font-size: 0.9rem;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.bento-news-card .news-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bento-news-card .news-item img {
  width: 100%;
  border-radius: 10px;
  max-height: 150px;
  object-fit: cover;
}

.bento-news-card .news-item span {
  font-size: 0.85rem;
  color: var(--brand-accent);
  font-weight: 600;
}


/* Responsive Bento */
@media (max-width: 991px) {
  .bento-grid-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

a {
  text-decoration: none;
}

.home-slider-main {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  border-radius: 0;
}

.custom-megamenu-main {
  position: fixed;
  top: 100px;
  background: #fff;
  width: 100%;
  left: 0;
  height: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 999;
  overflow-y: scroll;
  max-height: 700px;
  min-height: 400px;
  border-bottom: 1px solid #111;
  opacity: 0;
  visibility: hidden;

}

.custom-megamenu-main.sh_mgmenu {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.custom-megamenu-main .mega_menu_categories {
  display: flex;
  flex-wrap: wrap;
}

.custom-megamenu-main .mega_menu_categories .mega_menu_single_cat {
  padding: 0px 20px;
  background: #fff;
  width: 25%;
  padding-bottom: 20px;
}

.custom-megamenu-main .mega_menu_categories .mega_menu_single_cat .menu_single_parent_cat img {
  margin-right: 17px;
  width: 28px;
  height: 23px;
  object-fit: contain;
}

.custom-megamenu-main .mega_menu_categories .menu_single_parent_cat a,
.custom-megamenu-main .mega_menu_categories .menu_single_child_cat a {
  display: block;
  padding: 2px 0px;
  font-size: 15px;
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.custom-megamenu-main .mega_menu_categories .mega_menu_single_cat .menu_single_parent_cat {
  display: flex;
  align-items: center;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;

}

.custom-megamenu-main .mega_menu_categories .mega_menu_single_cat .menu_single_parent_cat:hover {
  padding-left: 10px;
}

.custom-megamenu-main .mega_menu_categories .mega_menu_single_cat .menu_single_child_cat a {
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;

}

.custom-megamenu-main .mega_menu_categories .mega_menu_single_cat .menu_single_child_cat a:hover {
  padding-left: 50px;
}

.custom-megamenu-main .mega_menu_categories .mega_menu_single_cat .menu_single_child_cat a {
  padding-left: 45px;
}

header .main-header.sticky .custom-megamenu-main {
  background: rgba(255, 255, 255, 0.9)
}

header .main-header.sticky .custom-megamenu-main .mega_menu_categories {
  background: rgba(255, 255, 255, 0.9)
}

header .main-header.sticky .custom-megamenu-main .mega_menu_categories .mega_menu_single_cat {
  background: rgba(255, 255, 255, 0.9)
}

.custom-megamenu-main .mega_menu_categories .menu_single_parent_cat a {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.custom-megamenu-main .mega_menu_categories .mega_menu_single_cat .menu_single_child_cat a {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

.home-slider-main .swiper-slide .content-box .final-contents-box {
  max-width: 100% !important;
}


.custom-megamenu-main::-webkit-scrollbar {
  width: 10px;
}


.custom-megamenu-main::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}


.custom-megamenu-main::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}


.custom-megamenu-main::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.repeated-certificate-main .repeated-cirtificate-box .contents .training_link {
  text-transform: capitalize;
  padding: 14px 20px;
  font-size: 15px;
  color: #008430;
  border: 1px solid #008430;
  min-width: 165px;
  display: inline-block;
}

.repeated-certificate-main .repeated-cirtificate-box .contents a:hover {
  color: #fff;
  background: #008430;

}

header .main-header .desktop-navbar li.nav-item a.nav-link.active {
  color: #f79023;
}

.repeated-certificate-main .repeated-cirtificate-box .common-circle-shape-parent .image-inner img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: relative;
  z-index: 9999999999999;
}

.repeated-certificate-main .repeated-cirtificate-box .contents h1 a {
  color: #111;
  text-decoration: none;
}

.repeated-certificate-main .repeated-cirtificate-box .contents h3 a {
  color: #111;
  text-decoration: none;
}

@media(min-width: 1600px) {
  header .main-header .container {
    max-width: 1585px;
  }
}

@media(min-width: 1441px) and (max-width: 1550px) {
  .home-slider-main .swiper-slide .content-box {
    width: 80%;
  }

  .home-slider-main .button-sets {
    width: 80%;
  }

  .home-slider-main .button-sets .set-inner {
    padding-left: 17px;
    padding-right: 17px;
  }
}

@media(min-width: 1200px) and (max-width: 1440px) {
  .home-slider-main .button-sets {

    width: 70%;
    bottom: 100px;
  }

  .home-slider-main .button-sets .set-inner {
    padding-left: 17px;
    padding-right: 17px;
  }

  .home-slider-main .button-sets p {

    font-size: 15px;

  }

  .custom-megamenu-main {
    max-height: 500px;
  }

  .custom-megamenu-main .mega_menu_categories .mega_menu_single_cat {
    width: 33.33%;
  }
}

@media(max-width: 991px) {
  .home-slider-main .swiper-slide .content-box .final-contents-box {
    max-width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .home-slider-main .swiper-slide .content-box .final-contents-box {
    max-width: 100%;
  }

  .home-slider-main .swiper-slide .content-box {

    top: 40%;

  }


  .home-slider-main .button-sets {
    bottom: 50px;
    max-width: 70%;

  }

  .home-slider-main .button-sets .set-inner {
    padding-left: 17px;
    padding-right: 17px;
  }

  .home-slider-main .button-sets p {

    font-size: 15px;

  }

}

@media (min-width: 768px) and (max-width: 991px) {
  .home-slider-main .swiper-slide .content-box .final-contents-box {
    max-width: 100%;
  }

  .home-slider-main .swiper-slide .content-box {

    top: 40%;

  }

  .home-slider-main .button-sets {

    max-width: 70%;
    bottom: 50px;
  }

  .home-slider-main .button-sets .set-inner {
    padding-left: 11px;
    padding-right: 11px;
  }

  .home-slider-main .button-sets p {

    font-size: 15px;

  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .home-slider-main .swiper-slide .content-box .final-contents-box {
    max-width: 100%;
  }

  .home-slider-main .swiper-slide .content-box {

    top: 35%;

  }

  .home-slider-main .button-sets {
    margin: 20px 0px;
    max-width: 100%;
    bottom: 100px;

  }

  .home-slider-main .button-sets .set-inner {
    padding-left: 11px;
    padding-right: 11px;
  }

  .home-slider-main .button-sets p {

    font-size: 15px;

  }
}

@media(max-width: 575px) {
  .home-slider-main .swiper-slide .content-box .final-contents-box {
    max-width: 100%;
  }

  .home-slider-main .swiper-slide .content-box {

    top: 35%;
  }

  .home-slider-main .button-sets {
    margin: 20px 0px;
    max-width: 100%;
    padding-left: 17px;
    padding-right: 17px;
    bottom: 50px;
  }

  .home-slider-main .button-sets .set-inner {
    padding-left: 11px;
    padding-right: 11px;
  }

  .home-slider-main .button-sets p {

    font-size: 15px;

  }

  header .main-header {

    left: 0;
    transform: translateX(0);
  }


  .home-slider-main .swiper .swiper-slide .content-box .sub-title {
    font-size: 14px;

  }

  .home-slider-main .button-sets a.membership {
    padding: 8px 10px;
    min-width: 130px;
  }
}

/* =========================================
   NEW SCOREPOINT HEADER STYLES
   ========================================= */

/* Top Bar */
.header-top-bar {
  background-color: var(--brand-text);
  /* ScorePoint Blue */
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

.header-top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-bar a {
  color: #fff;
  margin-right: 20px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.header-top-bar a:hover {
  opacity: 0.8;
}

.header-top-bar i {
  margin-right: 8px;
}

.header-top-bar .top-right {
  display: flex;
  align-items: center;
}

/* Main Navbar */
header {
  display: contents;
}

.scorepoint-navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: relative;
  /* WAS sticky - RESTORED */
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: "Montserrat", sans-serif;
}

/* Helper for Full Width Mega Menu */
.scorepoint-nav-item.position-static {
  position: static !important;
}

.scorepoint-dropdown.megamenu-full {
  width: 100%;
  left: 0;
  right: 0;
  padding: 30px;
  border-top: 3px solid var(--brand-accent);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-top: 0;
}

/* Compact Mega Menu Styles - SUPER COMPACT */
.megamenu-list li {
  margin-bottom: 2px;
  /* Tighter spacing */
}

.megamenu-list a {
  color: #555;
  font-size: 11px;
  /* Smaller font */
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  padding: 2px 0;
  /* Minimal padding */
}

.megamenu-list a:hover {
  color: var(--brand-accent);
}

.megamenu-list i {
  font-size: 10px;
  /* Smaller icons */
  width: 15px;
  text-align: center;
}

.megamenu-title {
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 12px;
  /* Smaller title */
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 5px;
}

.scorepoint-navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scorepoint-brand img {
  max-height: 50px;
  width: auto;
}

.scorepoint-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.scorepoint-nav-item {
  margin-left: 30px;
  position: relative;
}

.scorepoint-nav-link {
  color: #333;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  padding: 10px 0;
  display: block;
  transition: color 0.3s;
}

.scorepoint-nav-link:hover,
.scorepoint-nav-link.active {
  color: var(--brand-accent);
}

.scorepoint-nav-link i {
  font-size: 12px;
  margin-left: 5px;
}


/* Specific Fix for Navbar Button Alignment */
.scorepoint-navbar .scorepoint-btn {
  margin: 0 !important;
}

.scorepoint-btn {
  background-color: var(--brand-accent);
  /* Light Blue CTA */
  color: #fff !important;
  padding: 10px 25px !important;
  border-radius: 25px;
  font-weight: 600 !important;
  transition: background-color 0.3s;
}

.scorepoint-btn:hover {
  background-color: #007acc;
}

/* Dropdown Menu (Simple Hover) */
.scorepoint-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--brand-accent);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  padding: 20px 0;
  z-index: 1100;
}

.scorepoint-nav-item:hover .scorepoint-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mega Menu Styles */
.megamenu-title {
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.megamenu-title i {
  background: #e6f0fa;
  color: var(--brand-accent);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 12px;
}

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

.megamenu-list li {
  margin-bottom: 8px;
}

.megamenu-list a {
  color: #666;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  /* align icon */
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.megamenu-list a i {
  color: #bbb;
  font-size: 10px;
  width: 15px;
  text-align: center;
}

.megamenu-list a:hover {
  color: #0056b3;
}

.megamenu-list a:hover i {
  color: #0099ff;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

@media (max-width: 991px) {
  .header-top-bar {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .scorepoint-nav-menu {
    position: fixed;
    top: 80px;
    /* Adjust based on navbar height */
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: none;
    /* JS Toggle needed */
    max-height: 80vh;
    overflow-y: auto;
  }

  .scorepoint-nav-menu.active {
    display: flex;
  }

  .scorepoint-nav-item {
    margin: 10px 0;
    width: 100%;
  }

  .scorepoint-dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    padding-left: 20px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100% !important;
    /* Force full width on mobile */
    left: 0 !important;
  }

  .scorepoint-nav-item:hover .scorepoint-dropdown {
    display: none;
    /* Disable hover on mobile, rely on click */
  }

  .megamenu-title {
    margin-top: 15px;
  }
}


/* =========================================
   NEW SCOREPOINT FOOTER STYLES
   ========================================= */

.scorepoint-footer {
  background-color: #1a202c;
  /* Dark Navy/Black */
  color: #b0b8c6 !important;
  padding: 80px 0 30px;
  font-family: "Montserrat", sans-serif;
}

.scorepoint-footer h4,
.scorepoint-footer h5 {
  color: #fff;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 18px;
}

.scorepoint-footer p {
  color: #b0b8c6;
  line-height: 1.6;
  font-size: 14px;
}

.scorepoint-footer-logo {
  margin-bottom: 20px;
  max-width: 200px;
  filter: brightness(0) invert(1);
  /* Make logo white if it's black */
}

.footer-social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social-links a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #fff;
  transition: background 0.3s;
}

.footer-social-links a:hover {
  background: #0056b3;
}

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

.footer-links-list li {
  margin-bottom: 14px;
  /* Increased spacing */
}

.footer-links-list a {
  color: #b0b8c6;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 13px;
  /* Slightly smaller for elegance */
  font-weight: 500;
  display: inline-block;
  text-transform: uppercase;
  /* Modern look for specific links */
  letter-spacing: 0.5px;
}

.footer-links-list a:hover {
  color: var(--brand-accent);
  padding-left: 8px;
  /* Slide effect */
  transform: translateX(2px);
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  /* Increased spacing */
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact-info i {
  color: var(--brand-accent);
  margin-right: 15px;
  margin-top: 5px;
  /* Align with text top */
  font-size: 16px;
  min-width: 20px;
  /* Ensure alignment */
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  /* Softer border */
  padding-top: 30px;
  margin-top: 50px;
  font-size: 13px;
  opacity: 0.8;
  text-align: center;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

/* =========================================
   Redesign: Our Movement (Process Cards)
   ========================================= */
.home-counter-main {
  padding: 80px 0;
  background: #f8f9fa;
  /* Light background for contrast */
}

/* Process Card Styling */
.process-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-bottom-color: #0d6efd;
  /* Brand Blue Accent */
}

.process-card .card-icon {
  font-size: 3rem;
  margin-bottom: 25px;
  color: #17a2b8;
  /* Brand Teal */
  transition: all 0.3s ease;
}

.process-card:hover .card-icon {
  color: #0d6efd;
  /* Switch to Blue on hover */
  transform: scale(1.1);
}

.process-card .count-number {
  font-size: 3rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}

.process-card .text {
  font-size: 1.1rem;
  color: #6c757d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   Redesign: Why Choose Us (Benefit Cards)
   ========================================= */
.why-choose-main {
  padding: 100px 0;
  background: #fff !important;
  /* Override inline background */
  background-image: none !important;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-list {
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  /* Align top if text wraps */
  background: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 15px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #e0e0e0;
}

.benefit-item .icon-box {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(13, 110, 253, 0.1);
  /* Light Blue BG */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #0d6efd;
  margin-right: 20px;
}

.benefit-item .text-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
}

.benefit-item .text-box p {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .process-card {
    margin-bottom: 30px;
  }

  .why-choose-image {
    margin-bottom: 50px;
  }
}

/* =========================================
   Redesign: Why Choose Us (Capsule/Pill Cards)
   ========================================= */
.capsule-card {
  border-radius: 100px;
  /* Extreme rounding for capsule shape */
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
  margin-top: 20px;
}

.capsule-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.capsule-card .card-header {
  padding: 40px 20px 30px 20px;
  text-align: center;
  color: #fff;
}

/* Color Variants - Blueish Palette */
.header-teal {
  background: linear-gradient(135deg, #17a2b8, #0e8194);
}

.header-red {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
}

/* Main Blue */
.header-green {
  background: linear-gradient(135deg, #6610f2, #520dc2);
}

/* Indigo/Blue-Purple */
.header-gold {
  background: linear-gradient(135deg, #0dcaf0, #0aa2c0);
}

/* Cyan */

.card-number {
  font-size: 2.5rem;
  font-weight: 700;
  opacity: 0.9;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.capsule-card .card-body {
  padding: 30px 25px 50px 25px;
  /* Extra bottom padding for capsule look */
  text-align: center;
  background: #fff;
  transition: all 0.3s ease;
}

.capsule-card:hover .card-body {
  background: #f8f9fa;
  /* Slight darken on hover */
}

/* =========================================
   Redesign: Why Choose Us (Clean Minimal Grid)
   ========================================= */

/* Story Card (Image) */
.story-card {
  position: relative;
  border-radius: 30px;
  /* Modern rounding */
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  /* Custom organic shape effect for top-left corner as per reference "vibe" */
  border-top-left-radius: 80px;
}

.story-card .image-wrapper {
  position: relative;
  padding-top: 120%;
  /* Vertical Aspect Ratio */
}

.story-card .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.story-card:hover .image-wrapper img {
  transform: scale(1.05);
}

.play-button-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button-overlay i {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-left: 3px;
  /* visual center adjustment */
}

.play-button-overlay:hover {
  transform: scale(1.1);
  background: #0d6efd;
}

.play-button-overlay:hover i {
  color: #fff;
}


/* Clean Minimal Features */
.clean-feature {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.clean-feature:hover {
  transform: translateY(-5px);
}

.clean-feature .icon-circle {
  width: 80px;
  height: 80px;
  background: #f8f9fa;
  /* Very soft gray/white */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  font-size: 2rem;
  color: #2c3e50;
  /* Dark for line-art feel */
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.clean-feature:hover .icon-circle {
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  color: #0d6efd;
  /* Brand blue on hover */
  border-color: #0d6efd;
}

.clean-feature h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
  font-family: 'Montserrat', sans-serif;
}

.clean-feature p {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}

/* Override Legacy Green Colors */
.common-title h2 span {
  color: #0d6efd !important;
  /* Force Brand Blue over Legacy Green */
}

a.button-arrow:hover {
  color: #0d6efd !important;
  /* Force Blue on hover */
}

/* Force Clean Title Colors */
.common-title h2 {
  color: #2c3e50 !important;
  /* Professional Dark Blue-Gray */
}

.common-title h2 span {
  color: #0d6efd !important;
  /* Brand Blue */
}

/* Remove Green Pseudo-element Artifacts */
.why-choose-main::before,
.why-choose-main::after {
  content: none !important;
  display: none !important;
  background: none !important;
}