/* =====================================
   Khushi Wealth - BRAND BASE CSS
   (Bootstrap-first, no components)
===================================== */

/* =========================
   1. ROOT VARIABLES (BRAND)
========================= */
:root {
  /* Brand Colors (UPDATED TO PURPLE THEME) */
  --primary: #2E348D;
  --primary-dark: #121646;
  --secondary: #4954f6;

  /* Text Colors */
  --heading: #1a1a1a;
  --text: #000000;
  --muted: #7a7a7a;

  /* Background */
  --white: #ffffff;
  --light-bg: #f8f7ff;
  --border: #e9e6f5;

  /* Accent */
  --success: #25d366;

  /* Radius (SOFTER LIKE FIGMA) */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 50px;

  /* Shadows (SOFT UI) */
  --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   2. BASE RESET
========================= */
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
}

/* Headings (CLEAN — REMOVE PLAYFAIR) */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  font-family: "Annapurna SIL", serif;
  font-weight: 400;
  font-style: normal;
}

/* responsive font size for each heading tag */
/* Responsive Heading Sizes */

h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

h4 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

h5 {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
}

h6 {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

p {
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.25s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   3. BOOTSTRAP OVERRIDES
========================= */

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  padding: 10px 24px;
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Outline Button (LOGIN STYLE) */
.btn-outline-primary {
  border-radius: var(--radius-sm);
  font-weight: 600;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-pill-outline-primary {
  border-radius: var(--radius-pill);
  font-weight: 600;
  border-color: var(--primary);
  color: var(--primary);
}


.btn-outline-primary:hover {
  background-color: var(--primary);
  color: #fff;
}

/* Colors */
.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

/* Cards */
.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.card.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

/* Form Controls */
.form-control {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 10px 14px;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.15rem rgba(91, 46, 255, 0.15);
}

/* Section Spacing */
.hero-section-padding {
  padding: 120px 0px 0px 0px;
}

.section-padding {
  padding: 60px 0;
}

/* =========================
   4. TYPOGRAPHY HELPERS
========================= */

.fw-semibold {
  font-weight: 600 !important;
}

.lh-relaxed {
  line-height: 1.75;
}

/* =========================
   5. BACKGROUND HELPERS
========================= */
.bg-light-custom {
  background-color: var(--light-bg);
}

/* =========================
   6. RADIUS HELPERS
========================= */
.rounded-md {
  border-radius: var(--radius-md) !important;
}

.rounded-lg {
  border-radius: var(--radius-lg) !important;
}

.rounded-pill-custom {
  border-radius: var(--radius-pill) !important;
}

/* =========================
   7. SHADOW HELPERS
========================= */
.shadow-soft {
  box-shadow: var(--shadow-sm) !important;
}

.shadow-medium {
  box-shadow: var(--shadow-md) !important;
}

/* =========================
   8. TRANSITION HELPERS
========================= */
.transition-hover {
  transition: all 0.3s ease;
}

.transition-hover:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md) !important;
}

/* =========================
   9. WHATSAPP FLOAT (GLOBAL)
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 56px 0;
  }

  .hero-section {
    padding: 110px 0;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 48px 0;
  }

  .hero-section {
    padding: 95px 0;
  }
}

/* Cards */
.how-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.how-card h6 {
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Hover (subtle) */
.how-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* =============================
   WHAT WE SOLVE
============================= */

.solve-section {
  padding: 80px 0 40px;
}

.section-title {
  color: var(--primary);
}

/* Circle Wrapper */
.solve-circle-wrapper {
  max-width: 700px;
  margin: 0 auto;
  height: 360px;
}

/* Arc */
.solve-arc {
  position: absolute;
  width: 700px;
  height: 700px;
  border: 10px solid var(--primary);
  border-radius: 100%;
  top: 40px;
}

.circle {
  width: 100px;
  height: 100px;
  background-color: blue;
  border-radius: 50%;
}


/* Items */
.solve-item {
  position: absolute;
  width: 160px;
  text-align: center;
  font-size: 14px;
}

.solve-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Outer (border) */
.solve-icon {
  width: 94px;
  height: 94px;
  background: var(--primary);
  margin: 0 auto 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  clip-path: polygon(25% 5%,
      75% 5%,
      100% 50%,
      75% 95%,
      25% 95%,
      0% 50%);

  box-shadow: var(--shadow-sm);
}

/* Inner (white card) */
.hex-inner {
  width: 91px;
  height: 91px;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  clip-path: inherit;
}

/* Icon */
.hex-inner img {
  width: 70px;
}

/* Positioning */
.item-1 {
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
}

.item-1 .solve-content {
  flex-direction: column-reverse;
  text-align: center;
}

.item-2 {
  top: 70px;
  right: -70px;
}

.item-3 {
  bottom: 25px;
  right: -185px;
}

.item-2 .solve-content,
.item-3 .solve-content {
  flex-direction: row;
  text-align: left;
}

.item-4 {
  bottom: 25px;
  left: -185px;
}

.item-5 {
  top: 70px;
  left: -70px;
}

.item-4 .solve-content,
.item-5 .solve-content {
  flex-direction: row-reverse;
  text-align: right;
}

.solve-text {
  max-width: 150px;
  font-size: 14px;
  line-height: 1.4;
}

.solve-item {
  width: auto;
  /* remove fixed 160px */
}

/* Center */
.solve-center {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -30%);
}

/* Responsive */
@media (max-width: 767px) {
  .solve-circle-wrapper {
    height: auto;
  }

  .solve-item {
    position: static;
    margin-bottom: 20px;
  }

  .solve-arc {
    display: none;
  }

  .solve-center {
    position: static;
    transform: none;
    margin-top: 20px;
  }
}

.services-box {
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 10;
}

.services-section .card {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}


/* =============================
   MISSION SECTION
============================= */

.mission-media {
  background: #fff;
}

/* List items */
.mission-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.mission-item p {
  font-size: 0.95rem;
  color: var(--text);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px;
  height: 40px;
  background-size: 50%;
}

@media (max-width: 767px) {

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}