/* :rroot{
    --primary-color: #5A4E8C;
    --primary-color-hover:darken(--primary-color, 10%);
    --secondary-color: #FFA823;
    --secondary-color-hover: darken(--secondary-color, 10%);
} */
:root,
[data-bs-theme=light] {
  /* Primary and Secondary Colors */
  --bs-primary: #5A4E8C;
  /* primary-color */
  --bs-secondary: #FFA823;
  /* secondary-color */
  /* RGB values */
  --bs-primary-rgb: 90, 78, 140;
  /* RGB value for primary color */
  --bs-secondary-rgb: 255, 168, 35;
  /* RGB value for secondary color */
  /* Link Colors */
  --bs-link-color: #5A4E8C;
  /* primary-color for links */
  --bs-link-color-rgb: 90, 78, 140;
  /* RGB value for link color */
  --bs-link-hover-color: #4a4480;
  /* darkened primary color for hover */
  --bs-link-hover-color-rgb: 74, 68, 128;
  /* RGB value for link hover color */
  /* Button Colors */
  --bs-btn-primary-bg: #5A4E8C;
  /* primary button background */
  --bs-btn-primary-border: #5A4E8C;
  /* primary button border */
  --bs-btn-primary-hover-bg: #4a4480;
  /* darkened primary button background on hover */
  --bs-btn-primary-hover-border: #4a4480;
  /* darkened primary button border on hover */
  --bs-btn-secondary-bg: #FFA823;
  /* secondary button background */
  --bs-btn-secondary-border: #FFA823;
  /* secondary button border */
  --bs-btn-secondary-hover-bg: #e6891d;
  /* slightly darkened secondary button on hover */
  --bs-btn-secondary-hover-border: #e6891d;
  /* slightly darkened secondary button border on hover */
  /* Navbar Colors */
  --bs-navbar-bg: #5A4E8C;
  /* navbar background */
  --bs-navbar-border-color: #5A4E8C;
  /* navbar border color */
  --bs-navbar-link-color: #FFF;
  /* navbar link color */
  --bs-navbar-link-hover-color: #FFA823;
  /* navbar link hover color */
  /* Alert Colors */
  --bs-alert-success-bg: #5A4E8C;
  /* success alert background */
  --bs-alert-danger-bg: #FFA823;
  /* danger alert background */
  --bs-alert-warning-bg: #FFA823;
  /* warning alert background */
  /* Table Colors */
  --bs-table-border-color: #e2e2e2;
  /* table borders */
  --bs-table-hover-bg: #f7f7f7;
  /* table row hover background */
  --bs-table-striped-bg: #fafafa;
  /* striped table rows */
  /* Input/Focus colors */
  --bs-input-bg: #fff;
  /* input background */
  --bs-input-border-color: #ccc;
  /* input border */
  --bs-input-focus-border-color: #5A4E8C;
  /* focus border color */
  /* Tooltip Colors */
  --bs-tooltip-bg: #5A4E8C;
  /* tooltip background */
  --bs-tooltip-color: #FFF;
  /* tooltip text color */
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  background-color: white;
  overflow-x: hidden !important;
  font-size: 14px;
  font-family: "Open Sans", sans-serif !important;
}

/* Common CSS */
.p-6rem {
  padding: 6rem 0rem;
}

.p-4rem {
  padding: 4rem 0rem;
}

.p-3rem {
  padding: 3rem 0rem;
}

.p-2rem {
  padding: 2rem 0rem;
}


.text-primary {
  color: var(--bs-primary);
}

.text-secondary {
  color: var(--bs-secondary);
}

.fs-64 {
  font-size: 63px !important;
}

.fs-75 {
  font-size: 75px !important;
}

a {
  text-decoration: none;
  cursor: pointer;
}

/* Hero */
.hero {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 6.25rem 0rem;
}

/* Navbar */
.cool-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #000;
  transition: width .3s;
}

.hero-title {
  text-transform: uppercase;
  font-size: 5.83rem;
  line-height: 6.56rem;
  letter-spacing: normal;
  font-family: "Cal Sans", sans-serif !important;
}

.hero-small-title {
  text-transform: uppercase;
  font-size: 5.83rem;
  /* line-height: 6.56rem; */
  letter-spacing: normal;
  font-family: "Cal Sans", sans-serif !important;
}

.hero-title .u-line::after,
.hero-small-title .u-line::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  margin-top: 5px;
  margin-bottom: 15px;
}

.hero-sub-title {
  font-size: 1.25rem;
  line-height: 1.25rem;
  letter-spacing: 0.1rem;
}

.hero-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0%;
}

.nav-item-animate {
  position: relative;
  text-decoration: none;
  color: black;
  /* Default text color */
  padding-bottom: 5px;
}

.nav-item-animate.active,
.nav-item-animate:hover,
.nav-item-animate:focus {
  color: var(--bs-btn-secondary-hover-bg) !important;
  font-weight: 600;
}

.nav-item-animate::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  /* Border thickness */
  background-color: var(--bs-btn-secondary-border);
  transition: width 0.3s ease;
}

.nav-item-animate:hover::before,
.nav-item-animate.active::before {
  width: 70%;
  color: var(--bs-navbar-link-hover-color);
}

.nav-link.theme-btn-blue {
  font-size: 14px;
  font-weight: normal;
  margin: 0px 10px;
  padding: 5px 20px !important;
  border-radius: 20px;
  background-color: var(--bs-primary);
  border-color: var(--bs-btn-primary-border);
  color: white;
}

.nav-link.theme-btn-blue:hover,
.nav-link.theme-btn-blue:active {
  background-color: var(--bs-btn-primary-hover-bg);
  border-color: var(--bs-btn-primary-hover-borderborder);
}

.nav-link.theme-btn:hover,
.nav-link.theme-btn:active {
  background-color: var(--bs-btn-secondary-hover-bg);
  border-color: var(--bs-btn-secondary-hover-border);
}

.nav-link.theme-btn {
  font-size: 14px;
  font-weight: normal;
  margin: 0px 10px;
  padding: 5px 20px !important;
  color: white;
}

.theme-btn {
  background-color: var(--bs-btn-secondary-bg);
  border-color: var(--bs-btn-secondary-border);
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 20px;
  /* font: revert; */
}

.theme-btn:hover,
.theme-btn:active {
  background-color: var(--bs-btn-secondary-hover-bg);
  border-color: var(--bs-btn-secondary-hover-border);
}

/* SAATH Institutional Partners */
.saath_insti {
  position: relative;
}

.saath_insti .left-side-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: auto;
}

.saath_insti .right-side-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: auto;
}

.section-title {
  font-family: "Cal Sans", sans-serif !important;
  font-size: 1.75rem;
  line-height: 2.5rem;
  color: var(--bs-primary);
}

@media (max-width: 575px) {
  .section-title {
    font-family: "Cal Sans", sans-serif !important;
    font-size: 1.5rem !important;
    line-height: 3rem;
    color: var(--bs-primary);
  }
}

.section-disc {
  font-size: 1rem;
  line-height: 1.5rem;
}

.odometer-value {
  font-family: "Cal Sans", sans-serif !important;
}

.img-256 {
  width: 6rem;
  height: auto;
}

.card {
  border-radius: 15px;
}

.card .theme-btn,
.card .theme-btn:hover,
.card .theme-btn:active {
  background-color: transparent;
  color: var(--bs-secondary);
  border-color: var(--bs-secondary);
}

.card .theme-btn .fa-solid {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.card .theme-btn:hover .fa-solid {
  transform: translateX(5px);
  font-size: 12px;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  font-family: "Cal Sans", sans-serif !important;
}

.card-text {
  font-size: 12px;
}

.swiper-slide {
  margin-right: 1rem !important;
}

/* about Saath */
.about-saath-img-right {
  position: absolute;
  bottom: -18%;
  right: -30%;
}

/* Video section */
.one-man {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.video-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.video-thumbnail {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  max-width: 1110px;
}

.play-btn {
  position: absolute;
  top: 45%;
  width: 45px;
  height: 45px;
  background-color: #ffffff80;
  border-radius: 50%;
  border: 1px solid #ffffff;
}

/* counter */
.counter {
  background-color: var(--bs-secondary);
  color: white;
  border-radius: 15px;
}

/* founder-section */
.img-box {
  text-align: center;
  background: white;
  padding: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 7px;
  max-width: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  margin: 12px 0px;
  justify-content: center;
}

/* blog-section */
.blog-section {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--bs-secondary);
  margin: 10px 0px;
  font-weight: 600;
}

.blog-disc {
  font-size: 1.25rem;
  color: var(--bs-primary);
  font-weight: 600;
}

.get-invo-container {
  background-color: white;
  color: var(--bs-primary);
  border-radius: 15px;
  padding: 14px;
}

.get-invo-container p {
  font-size: 0.8rem;
}

.intersihip-btn {
  background-color: transparent;
  color: var(--bs-primary);
  border: 2px solid var(--bs-primary);
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 7px;
  /* width: 100%; */
  text-align: center;
  display: block;
  margin: 1.25rem 0px;
}

.intersihip-btn:hover,
.intersihip-btn:active {
  background-color: var(--bs-primary);
  color: white;
}

.register-btn {
  background-color: var(--bs-primary);
  color: white;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 7px;
  text-align: center;
  display: block;
  margin: 1.25rem 0px;
}

.register-btn:hover,
.register-btn:active {
  background-color: var(--bs-btn-primary-hover-bg);
}

.donate-now {
    background-color: #6247aa; /* Purple background */
    padding: 60px 20px;
    position: relative;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

.section-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.4;
}

.bonate-btn {
background-color: #ffb400;
    color: #fff;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.bonate-btn:hover {
    background-color: #e69d00;
}

.donate-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}

/* Ensure text & button are above image */
.donate-now .container {
    position: relative;
    z-index: 2;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
    }

    .bonate-btn {
        display: block;
        text-align: center;
        margin: 0 auto;
    }

    .donate-center {
        display: none;
    }
}


.footer {
  background-color: black;
  color: white;
}

/* banner-section */
.banner-section {
  background-color: var(--bs-secondary);
  color: white;
}

.bgym-app-1 {
  position: absolute;
  top: 30%;
  left: 30%;
  width: 256px;
  height: 512px;
}

.bgym-app-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 256px;
  height: 512px;
}

.single-testimonial-item {
  position: relative;
  z-index: 0;
}

.single-testimonial-item .thumb {
  position: relative;
  display: block;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(https://businessgym.in/assets/frontend/img/mask-image.png);
  mask-image: url(https://businessgym.in/assets/frontend/img/mask-image.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  overflow: hidden;
  width: 763px;
  height: 827px;
}

.single-testimonial-item .thumb img {
  width: 100%;
  height: 100%;
}

.single-testimonial-item .hover {
  position: absolute;
  right: 0;
  top: 50%;
  width: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
  margin-right: 30px;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.single-testimonial-item .hover .hover-inner {
  text-align: center;
  padding: 50px 50px 43px 50px;
}

.block-ellipsis {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 75px;
  margin: 0 auto;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sectors-logo {
  max-width: 50px;
  max-height: 50px;
  padding: 5px;
  border-radius: 13px;
  background: aliceblue;
  transform: translate(0px, 0px);
  transition: transform 0.3s ease, scale 0.3s ease;
}

.sectors-logo:hover {
  transform: translate(0px, -5px) scale(1.1);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

/* impact page style */
