/* ================================
   MindRaga - Base CSS (Final Stable)
================================ */

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== ROOT ===== */
:root {
  --mind-primary: #1e88e5;
  --raga-primary: #8e24aa;

  --dark: #000;
  --light: #F5F3FF;
  --grey: #5E6573;
  --border: #e5e5e5;

  --font-primary: "DM Sans";
  --font-secondary: 'Raleway', sans-serif;
  --font-tertiary: 'Caveat', cursive;
  --font-fourth: "Averia Libre", "DM Sans", system-ui, sans-serif;

  /* 🔥 FIXED */
  --container-width: 1400px;
  --section-padding: clamp(40px, 6vw, 60px) clamp(16px, 5vw, 80px);
}

/* ===== BASE ===== */
html {
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 0px;
  /* 🔥 IMPORTANT */
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 160%;
  max-width: 100%;
  word-break: break-word;
}

p {
  margin-bottom: 15px;
  line-height: 160%;
  max-width: 100%;
}

.lh-125 {
  line-height: 125% !important;
}

/* ===== LINKS ===== */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

/* ===== LIST ===== */
ul {
  list-style: none;
}

/* ===== COLORS ===== */
.bg-6D3AB5 {
  background: linear-gradient(180deg, #6D3AB5 0%, #30194F 100%);
}


.bg-dark-grey {
  background: #25272D !important;
}

.bg-yellow {
  background: #FCE94D !important;
}

.bg-yellow-img {
  background-image: url(../images/mind/yellow-bg.png) !important;
}

.bg-light-yellow {
  background: #FFFEDE !important;
}

.bg-blue {
  background: #2E63D6 !important;
}

.bg-light {
  background: #f9f9f9;
}

.bg-grey-F1F2F4 {
  background: #F1F2F4 !important;
}

.bg-FCFCFC {
  background: #FCFCFC;
}

.bg-dark {
  background: var(--dark);
  color: #fff;
}

.dark {
  color: #000 !important;
}

.grey-5e6573 {
  color: #5E6573 !important;
}

.grey-A0A5B1 {
  color: #A0A5B1 !important;
}

.grey-a3a3a3 {
  color: #A3A3A3 !important;
}

.grey-737373 {
  color: #737373;
}

.grey-7e8695 {
  color: #7E8695 !important;
}

.grey-32363e {
  color: #32363E !important;
}

.grey-404040 {
  color: #404040;
}

.grey-7E8695 {
  color: #7E8695 !important
}

.blue {
  color: #2E63D6 !important;
}

.blue-1A46A7 {
  color: #1A46A7 !important;
}

.red {
  color: #941D2B !important;
}

.purple-552D8C {
  color: #552D8C !important;
}

.purple-6D3AB5 {
  color: #6D3AB5 !important;
}

.green-14532D {
  color: #14532D;
}

.green-16A34A {
  color: #16A34A;
}


.gradient-color {
  background: linear-gradient(90deg, #9810FA 24.52%, #00BC7D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.gradient-color2 {
  background: linear-gradient(270deg, #00FFBD 1.79%, #9A52FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-color3 {
  background: linear-gradient(217deg, #00FFBD 48.21%, #67E8F9 100.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-color4 {
  background: var(--Gradient-Raga-new-raga-with-green-and-purple, linear-gradient(217deg, #00FFBD 2.01%, #44A8D8 29.58%, #657DE5 49.97%, #8752F3 100.07%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.z-index-1 {
  z-index: 1;
}


/* ===== FONT ===== */
.railway-font {
  font-family: var(--font-secondary);
}

.averia-font {
  font-family: var(--font-fourth);
}


/* ===== UTIL ===== */
.p-24 {
  padding: 24px !important;
}

.align-items-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center {
  text-align: center;
}

.text-white {
  color: #fff;
}

/* ===== FLEX ===== */
.d-flex {
  display: flex;
}

.row {
  display: flex;
  flex-wrap: wrap;

}

/* ===== WIDTH ===== */
@media (max-width:767px) {

  .w-50,
  .w-60,
  .w-70,
  .w-80,
  .w-90 {
    width: 100% !important;
    margin: auto;
  }
}

@media (min-width:768px) {
  .w-50 {
    width: 50% !important;
    margin: auto;
  }

  .w-60 {
    width: 60% !important;
    margin: auto;
  }

  .w-70 {
    width: 70% !important;
    margin: auto;
  }

  .w-80 {
    width: 80% !important;
    margin: auto;
  }

  .w-90 {
    width: 90% !important;
    margin: auto;
  }
}

/* ===== BORDER ===== */
.border-E26C53 {
  border: 0.667px solid #E26C53 !important;
}

.border-BA6500 {
  border: 0.667px solid #BA6500 !important;
}

.border-2F697C {
  border: 0.667px solid #2F697C !important;
}

.border-562F00 {
  border: 0.667px solid #562F00 !important;
}



.border-2E63D6 {
  border: 0.667px solid #2E63D6 !important;
}

/* ===== IMAGES ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-mind {
  background: var(--mind-primary);
  color: #fff;
}

.btn-raga {
  background: var(--raga-primary);
  color: #fff;
}

.btn-sm {
  height: clamp(34px, 2vw, 40px) !important;
  padding: 3px 2px 3px 10px;
}

.btn-md {
  height: clamp(40px, 2.8vw, 49px) !important;
  padding: 3px 2px 3px 18px;
}

.btn-lg {
  height: clamp(42px, 3vw, 50px) !important;
 padding: 4px 3px 4px 22px;
}

.btn-md .btn-icon {
  width: 36px;
  height: 36px;
}

.btn-lg .btn-icon {
  width: 40px;
  height: 40px;
}


.section {
  padding: var(--section-padding);
}



.fs-64 {
  font-size: clamp(42px, 4vw, 64px) !important;
}

.fs-56 {
  font-size: clamp(38px, 3.5vw, 56px) !important;
}

.fs-54 {
  font-size: clamp(36px, 3.3vw, 54px) !important;
}

.fs-48 {
  font-size: clamp(32px, 3vw, 48px) !important;
}

.fs-42 {
  font-size: clamp(30px, 2.6vw, 42px) !important;
}

.fs-40 {
  font-size: clamp(28px, 2.5vw, 40px) !important;
}

.fs-38 {
  font-size: clamp(26px, 2.3vw, 38px) !important;
}

.fs-36 {
  font-size: clamp(26px, 2.2vw, 36px) !important;
}

.fs-34 {
  font-size: clamp(24px, 2vw, 34px) !important;
}

.fs-32 {
  font-size: clamp(28px, 2vw, 32px) !important;
}

.fs-30 {
  font-size: clamp(28px, 1.8vw, 30px) !important;
}

.fs-28 {
  font-size: clamp(28px, 1.7vw, 28px) !important;
}

.fs-26 {
  font-size: clamp(24px, 1.6vw, 26px) !important;
}

.fs-24 {
  font-size: clamp(22px, 1.5vw, 24px) !important;
}

.fs-22 {
  font-size: clamp(18px, 1.4vw, 22px) !important;
}

.fs-20 {
  font-size: clamp(18px, 1.3vw, 20px) !important;
}

.fs-18 {
  font-size: clamp(16px, 1.2vw, 18px) !important;
}

.fs-16 {
  font-size: clamp(14px, 1.1vw, 16px) !important;
}

.fs-14 {
  font-size: clamp(13px, 1vw, 14px) !important;
}

.fs-12 {
  font-size: clamp(11px, 0.9vw, 12px) !important;
}

/* 🔥 TEXT SAFETY */
.fs-64,
.fs-56,
.fs-48 {
  word-break: break-word;
}

/* ===== FONT WEIGHT ===== */
.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* ===== SPACING ===== */
.mb-27 {
  margin-bottom: 27px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.ps-80 {
  padding-left: 80px;
}

.pe-80 {
  padding-right: 80px;
}

/* ===== EXTRA ===== */
.h-44 {
  height: 44px !important;
}

.h-50 {
  height: 50px !important;
}

.br-12 {
  border-radius: 12px !important;
}

.br-16 {
  border-radius: 16px !important;
}

.underline-dot {
  line-height: 110%;
  letter-spacing: -0.56px;
  text-decoration: underline dotted #A0A5B1;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

.yellow-hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, #FFE631 0%, #FFBE00 100%);
  /* margin: 20px 0; */
  margin-top: auto;
  width: 85%;
}


.line-height-130 {
  line-height: 130% !important;
}


/* ==============================
   Mind Download Button
============================== */

.btn-raga-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  min-width: clamp(110px, 8vw, 140px);

  gap: clamp(12px, 1.5vw, 24px);

  font-family: var(--font-secondary) !important;

  border-radius: 24px;
  border: 1px solid #00FFBD;

  background: radial-gradient(
      125.75% 103.22% at 98.72% 49.4%,
      rgba(3, 145, 86, 0.18) 15.68%,
      rgba(111, 255, 195, 0.45) 35.6%,
      rgba(163, 255, 217, 0.45) 72.68%,
      rgba(0, 138, 80, 0.45) 100%
    ),
    #14F156;

  box-shadow: 4px 8px 14px 0 rgba(20, 241, 86, 0.25);

  color: #19191B !important;

  font-size: clamp(14px, 1vw, 16px);
  font-weight: 500 !important;
  letter-spacing: clamp(0.5px, 0.08vw, 1px);

padding: clamp(6px, 0.4vw, 10px)
         clamp(12px, 0.8vw, 18px);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Circle Icon */
.btn-raga-primary .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: clamp(28px, 2vw, 36px);
  height: clamp(28px, 2vw, 36px);

  border-radius: 100px;
  border: 1px solid #007E4A;
  background: #FFF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25) inset;
  transition: all 0.3s ease;
}
/* Hover Effect */
.btn-raga-primary:hover {
  border-radius: 24px;
  border: 1px solid #000;
  background: #FFF;
  color: #000 !important;
  font-weight: 600;
  box-shadow: 4px 8px 14px 0 rgba(209, 175, 255, 0.35);
}

.btn-raga-primary:hover .btn-icon {

  border-radius: 100px;
  border: 1px solid #007E4A;
  background: radial-gradient(125.75% 103.22% at 98.72% 49.4%, rgba(3, 145, 86, 0.18) 15.68%, rgba(111, 255, 195, 0.45) 35.6%, rgba(163, 255, 217, 0.45) 72.68%, rgba(0, 138, 80, 0.45) 100%), #14F156;

  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25) inset;
}

/* .btn-raga-primary:hover .btn-icon img {
  filter: brightness(0) invert(1);
} */



/* Secondary Button */
.btn-raga-secondary {
  display: inline-flex;
  min-width: 165px;
  font-family: var(--font-secondary) !important;
  padding: 3px 18px;
  justify-content: center;
  align-items: center;
  gap: 24px;

  border-radius: 24px;
  border: 1px solid transparent;
  /* important */
  background:
    linear-gradient(#090920, #090920) padding-box,
    linear-gradient(180deg,
      #004e20 0%,
      #005029 35%,
      rgba(0, 200, 83, 0.35) 70%,
      #004e20 100%) border-box;

  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}


.btn-raga-secondary:hover {
  box-shadow: 4px 8px 14px 0 rgba(20, 241, 86, 0.25);
}




/* Tertiary Button */

.btn-raga-tertiary {
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;

  width: 44px;
  height: 44px;
  flex-shrink: 0;
  aspect-ratio: 1/1;

  border-radius: 100px;
  border: 1px solid #D1AFFF;
  background: radial-gradient(73.3% 90.61% at 72.2% 11.84%, rgba(148, 82, 255, 0.42) 15.68%, rgba(233, 213, 255, 0.45) 40.7%, rgba(148, 82, 255, 0.42) 74.84%, rgba(233, 213, 255, 0.32) 100%), #600CFF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25) inset;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-raga-tertiary img {
  filter: brightness(0) invert(1);
}


/* Hover Effect */
.btn-raga-tertiary:hover {
  border-radius: 100px;
  border: 1px solid #6D3AB5;
  background: #FFF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10) inset;
}

.btn-raga-tertiary:hover img {
  filter: none;
}

/* ===== Button Sizes ===== */
/* Button End */


/* Badges Tags Start */
.light-green-badge {
  color: #14532D;
  margin-bottom: 20px;
  display: inline-block !important;
  background: #F0FDF4;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06) inset;
}


.light-green-badge-border {
  color: #14532D !important;
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block !important;
  background: #F0FDF4;
  padding: 8px 16px;
  border-radius: 50px;

  /* Gradient Border */
  border: 2px solid transparent;
  background-image:
    linear-gradient(#F0FDF4, #F0FDF4),
    linear-gradient(90deg, rgba(2, 91, 140, 1), rgba(0, 255, 189, 1));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}


.gradient-badge {
  display: inline-block !important;
  background: linear-gradient(54deg, #8C4BE8 8.96%, #22D3EE 97.54%);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(212, 130, 10, 0.18);
}



.our-approach-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.our-approach-card-content {
  flex-grow: 1;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: auto;
}


.light-purple-badge {
  color: #9A52FF;
  display: inline-block !important;
  background: rgba(140, 75, 232, 0.10);
  ;
  padding: 5px 12px;
  border: 0.889px solid rgba(140, 75, 232, 0.20);
  ;
  border-radius: 20px;
  font-weight: 500;
}

.light-purple-badge2 {
  color: #9A52FF;
  display: inline-block !important;
  padding: 5px 12px;
  /* border: 0.889px solid rgba(140, 75, 232, 0.20); */
  border-radius: 20px;
  font-weight: 500;

  background: linear-gradient(0deg, rgba(154, 82, 255, 0.06) 0%, rgba(154, 82, 255, 0.06) 100%), rgba(210, 213, 218, 0.68);

  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06) inset;
}



.purple-552D8C {
  color: #552D8C;
}


.purple-badge {
  color: #FFF !important;
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block !important;
  background: #F0FDF4;
  padding: 4px 12px;
  border-radius: 50px;

  /* Gradient Border */
  border: 2px solid transparent;
  background-image:
    linear-gradient(180deg, #6D3AB5 0%, #30194F 100%),
    linear-gradient(217deg, #00FFBD 2.01%, #44A8D8 29.58%, #657DE5 49.97%, #8752F3 100.07%);

  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* Badges Tags End */