:root {
  --main-color: #5C33CF;
  --text-main-color: #000;
  --text-main-white: #fff;
  --card-signgature:#455FEE;
  --section-background:#F9F9F9;
  --hover-background:#4402FF;
}

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

.gradient-text {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: inline-block;
  background: linear-gradient(90deg, #5C33CF 0%, #EE45E3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.backgound-section {
  background-color: var(--section-background);
}

.shadow {
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 12px 12px -6px rgba(0, 0, 0, 0.1607843137);
}
 strong {
  font-weight: bolder;
}
@media (max-width: 768px) {
 strong {
  font-weight: normal;
}
}
.gap-nav-4 {
  gap: 2rem;
}
.login-btn {
  text-decoration: none;
  color: var(--text-main-color);
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  padding: 0px 0px;
}

.cta-btn {
  font-family: "DM Sans", sans-serif;
  padding: 16px 24px;
  border-radius: 8px;
}

.btn-nav {
  background-color: var(--main-color);
  border: none;
  color: var(--text-main-white);
  font-weight: 700;
}
.btn-nav:hover {
  background-color: var(--hover-background);
  color: var(--text-main-white);
}
.btn-nav:active {
 background-color: var(--hover-background) !important;
 color: var(--text-main-white) !important;
}
.btn-nav:focus-visible {
 background-color: var(--hover-background) !important;
 color: var(--text-main-white) !important;
}

.btn-primary {
  background-color: var(--main-color);
  border: none;
  color: var(--text-main-white);
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0px 0px 1px 0px #00000066;
  box-shadow: 0px 12px 12px -6px #00000029;
  border: 1px solid var(--main-color);

}
.btn-primary:hover {
  background-color: var(--hover-background);
  color: var(--text-main-white);
  border: 1px solid var(--hover-background);
  outline: 0; 
  box-shadow: 0px 0px 1px 0px #00000066;
  box-shadow: 0px 12px 12px -6px #00000029;
}
.btn-primary:active {
  background-color: var(--hover-background) !important;
  color: var(--text-main-white) !important;
  border: 1px solid var(--hover-background);
  outline: 0; 
  box-shadow: 0px 0px 1px 0px #00000066;
  box-shadow: 0px 12px 12px -6px #00000029;
}
.btn-primary:focus-visible {
  background-color: var(--hover-background);
  color: var(--text-main-white);
  border: 1px solid var(--hover-background);
  outline: 0; 
  box-shadow: 0px 0px 1px 0px #00000066;
  box-shadow: 0px 12px 12px -6px #00000029;
}

.btn-secondary {
  background-color: var(--text-main-white);
  border: none;
  color: var(--main-color);
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 8px;
  border: 1px solid var(--text-main-white);
  box-shadow: 0px 0px 1px 0px #00000066;
  box-shadow: 0px 12px 12px -6px #00000029;

}
.btn-secondary:hover {
  background-color: var(--text-main-white);
  color: var(--main-color);
  border: 1px solid var(--main-color);
}
.btn-secondary:active {
  background-color: var(--text-main-white) !important;
  color: var(--main-color) !important;
  border: 1px solid var(--main-color) !important;
}
.btn-secondary:focus-visible {
  background-color: var(--text-main-white) !important;
  color: var(--main-color) !important;
  border: 1px solid var(--main-color) !important;
}

.text-heading {
  color: var(--text-main-color);
  font-size: clamp(32px, 4vw, 40px);
  line-height: clamp(40px, 5vw, 48px);
  font-weight: 700;
}

.secondary-heading {
  color: var(--text-main-color);
  font-size: clamp(18px, 4vw, 24px);
  line-height: clamp(22px, 5vw, 28px);
  font-weight: 500;
 letter-spacing: -0.5px;
}
.secondary-main-heading {
  color: var(--text-main-color);
  font-size: clamp(24px, 4vw, 40px);
  line-height: clamp(32px, 5vw, 48px);
  font-weight: 700;
}
.text-para {
  color: var(--text-main-color);
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: clamp(28px, 3.5vw, 28px);
  font-weight: 400;
}

.card-heading {
  color: var(--text-main-color);
  font-size: clamp(18px, 4vw, 24px);
  line-height: clamp(24px, 5vw, 32px);
  font-weight: 700;
}

.card-text {
  color: var(--text-main-color);
  font-size: clamp(16px, 3vw, 20px);
  line-height: clamp(24px, 4vw, 32px);
  font-weight: 400;
}

.card-signature {
  color: var(--card-signgature);
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: clamp(22px, 3.5vw, 28px);
  font-weight: 400;
}

.footer-text {
  color: var(--text-main-white);
  font-size: clamp(12px, 2.2vw, 14px);
  line-height: clamp(18px, 3vw, 24px);
  font-weight: 400;
}

.custom-navbar {
  background-color: var(--text-main-white);
  box-shadow: 0px 6px 13px -6px #00000021;
  height: 92px;
}
.custom-navbar .navbar-brand img {
  height: 44px;
}
@media (max-width: 991px) {
  .custom-navbar {
    height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .custom-navbar .navbar-brand img {
    height: 30px;
  }
}
.custom-navbar .navbar-toggler {
  outline: none;
  padding: 0px;
  border: none;
  font-size: 20px;
}
@media (max-width: 991px) {
  .navbar-toggler-icon {
  width: 24px;
  height: 2px;
  background-color: #000;
  position: relative;
  transition: background-color 0.2s ease;
  background-image: none;
}
 /* Top & bottom lines */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #000;
  transition: transform 0.3s ease, top 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

/* 🔥 When menu is open (cross) */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}
}


.custom-navbar .navbar-toggler:focus {
  box-shadow: none;
}
.custom-navbar .nav-link {
  font-family: "DM Sans", Inter;
  font-weight: 400;
  color: #000;
  font-size: 18px;
  position: relative;
  text-decoration: none;
  padding: 0px !important;
}

.custom-navbar .nav-link.active {
  color: var(--main-color);
}

@media (min-width: 992px) {

.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: width 0.3s ease;
}

.custom-navbar .nav-link:hover::after {
  width: 100%;
}
.custom-navbar .nav-link:focus-visible {
  text-decoration: underline;
}
}
@media (max-width: 991px) {
 .custom-navbar .nav-link {
    padding: 16px 0px !important;
	font-size: 20px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  br {
    display: none !important;
  }
}

.hero-section {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 92px;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .hero-section {
    height: 70vh;
    min-height: 620px;
  }
}
@media (max-width: 768px) {
  .hero-section {
   height: 100svh;
   padding-top: 0px;
  }
}
.hero-section .gradient-border {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 14px;
  background: linear-gradient(90deg, #EE45E3 0%, #5C33CF 100%);
}
@media (max-width: 768px) {
  .hero-section .gradient-border {
    height: 6px;
  }
}

/* Background Image */
.hero-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;        
  object-position: center; 
}

/* Left blur box */
.hero-blur-box {
  position: absolute;
  height: 100%;
  width: 55%;
  top: 0px;
  left: 0px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}
@media (min-width: 1900px) {
 .hero-blur-box {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .hero-blur-box {
    width: 100%;
  }
}

.container.text-container {
  z-index: 3;
}

@media (min-width: 2500px) {
 .container.text-container {
    transform: translateX(-10vw);
}
}
@media (min-width: 2200px) {
 .container.text-container {
    transform: translateX(-9vw);
}
}
@media (min-width: 1900px) {
 .container.text-container {
    transform: translateX(-8vw);
}
}
@media (max-width: 768px) {
 .container.text-container {
  padding-top: 32px;
  padding-left: 24px;
}
}
.container .banner-heading {
  color: var(--text-main-white);
  font-size: clamp(32px, 5vw, 48px);
  line-height: clamp(40px, 6vw, 56px);
  font-weight: 700;
}
.container .banner-text {
  color: var(--text-main-white);
  font-size: clamp(16px, 3.5vw, 24px);
  line-height: clamp(24px, 4.5vw, 32px);
  font-weight: 400;
}

/* Wrapper becomes reference point */
.hero-wrapper {
  position: relative;
  display: inline-block;
}

.gradient-wrapper {
  border-radius: 18px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #5C33CF, #EE45E3) border-box;
  border: 2px solid transparent;
}
 
.story-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
 
.story-card {
  text-decoration: none;
  color: #000;
  text-align: center;
  width: 212px;
}
.story-card img {
  width: 100%;
  height: 212px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.story-card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.3;
}
 
.load-more-btn {
  font-weight: 600;
  color: var(--main-color);
  font-weight: 700px;
  font-size: 18px;
  cursor: pointer;
  background: none;
  border: none;
}
 
/* ---------------- SCROLLABLE ROWS (<1200px) ---------------- */
@media (max-width: 1199px) {
  .story-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .story-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .story-row::-webkit-scrollbar {
    display: none;
  }
  .story-card {
    flex: 0 0 212px;
  }
}

.testimony {
  background-color: var(--section-background);
}

.bridge-the-gap .img-wrapper {
  padding: 24px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .bridge-the-gap .img-wrapper {
    padding: 0px;
  }
}

footer {
  height: 135px;
  background-color: var(--text-main-color);
}
@media (max-width: 768px) {
  footer {
    height: auto;
    text-align: center;
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  footer {
    height: auto;
  }
}
footer .footer-logo {
  width: 155px;
  height: 27px;
}
footer .foter-link {
  display: inline-flex;
}
@media (max-width: 768px) {
	 .hero-bg {
    background-size: cover;
    background-position: center;
    object-fit: initial;
  }
	
  footer .foter-link {
    margin-top: 12px;
    display: block;
    padding-left: 0px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  footer .foter-link {
    margin-top: 12px;
  }
}
footer .foter-link li {
  list-style: none;
  margin-left: 30px;
}
@media (max-width: 768px) {
  footer .foter-link li {
    margin-left: 0px;
    margin-bottom: 5px;
  }
}
footer .foter-link li a {
  color: var(--text-main-white);
  text-decoration: none;
}
