/* =========================================================
   Typography
   ========================================================= */
h1,
h2,
h3 {
  font-family: "Lato", sans-serif;
  font-weight: bold;
}

p {
  font-family: "Poppins", sans-serif;
}

/* =========================================================
   Partners Header
   ========================================================= */
.partners-header {
  background: #ffffff;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 1001;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.partners-header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* Left Section: D-STRESS Link and Back to Site */
.header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  justify-self: start;
}

.dstress-link {
  color: #ff0000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
}

.dstress-link:hover {
  opacity: 0.8;
}

.arrow-left {
  font-size: 18px;
  line-height: 1;
  color: #000000;
}

.back-to-site {
  color: #333333;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.back-to-site:hover {
  opacity: 1;
}

/* Center Section: Times of India Text */
.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.toi-link {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.toi-link:hover {
  opacity: 0.8;
}

.toi-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Right Section: CENABH Logo */
.header-right {
  display: flex;
  align-items: center;
  justify-self: end;
}

.cenabh-link {
  text-decoration: none;
  transition: opacity 0.2s ease;
  display: inline-block;
}

.cenabh-link:hover {
  opacity: 0.8;
}

.cenabh-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* =========================================================
   Body Background
   ========================================================= */
body {
  /* background: black !important; */
  /* background: url(Images/BackgrounImage.png); */
  background: url("/static/images/backgrounimagepartial.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

/* =========================================================
   Banner
   ========================================================= */
.insights-banner {
  display: none !important; /* Hidden banner - removed from view */
  background: linear-gradient(
    90deg,
    #a749a2 0%,
    #e91e63 45%,
    #ff5722 85%,
    #ff8a50 100%
  );
  color: #fff;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  position: relative;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.banner-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 4px;
}

.banner-text {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
}

.btn-chrome {
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  margin-left: 20px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 1, 2, 0.5);
  transition: transform 0.2s ease;
}

.btn-chrome:hover {
  transform: scale(1.02);
}

.close-btn {
  position: absolute;
  right: 40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

/* =========================================================
   Hero Section
   ========================================================= */
.hero-title {
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 32px;
}
/* ===============================
   HERO SECTION – CENTER ALIGN
   =============================== */

.insights-hero {
  min-height: calc(100vh - 100px); /* full screen minus navbar */
  display: flex;
  align-items: center;             /* ✅ vertical center */
  justify-content: center;
  padding: 10px 0;
}


.hero-text {
  padding-top: 20px;
  font-size: 1.2rem;
  color: #cfcfcf;
  line-height: 1.9;
}

.hero-text .highlight-text {
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.hero-illustration {
  margin-top: 0px;
  max-width: 180px;
  max-height: 40vh;
  width: auto;
  height: auto;
}

/* Override Bootstrap's img-fluid for destress logo */
.dstress-logo-hero,
.dstress-logo-hero.img-fluid,
img.dstress-logo-hero,
img.img-fluid.dstress-logo-hero {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  max-width: 60% !important;
  max-height: 50vh !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  object-fit: contain !important;
}

/* =========================================================
   CSS Variables
   ========================================================= */
:root {
  --outer-bg: #222e35;
  --inner-bg: #121417;
  --input-bg: #1a1d21;
  --text-main: #ffffff;
  --text-muted: #aebbc3;
  --accent-green: #22c55e;
}

/* =========================================================
   Assessment Card
   ========================================================= */
.assessment-card {
  background: linear-gradient(
    to bottom,
    #2c3839 0%,
    #1f2c35 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 50px;
  max-width: 1500px;
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  margin-top: 80px;
}

.assessment-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.assessment-subtitle {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* =========================================================
   Inner Form
   ========================================================= */
.inner-form-card {
  background-color: var(--inner-bg);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 30px;
  margin-bottom: 25px;
}

.form-label-header {
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.form-subtext {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

/* =========================================================
   Input Field
   ========================================================= */
.input-group-custom {
  position: relative;
  max-width: 350px;
}

.custom-input {
  width: 100%;
  background: var(--inner-bg);
  border: 1px solid #3d444d;
  border-radius: 8px;
  padding: 12px 12px 12px 45px;
  color: white;
}

.custom-input.no-icon {
  padding-left: 12px;
}

.custom-select {
  padding-left: 12px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
  cursor: pointer;
}

.custom-select:focus {
  outline: none;
  border-color: #16c25f;
}

.required-asterisk {
  color: #ff4444;
  margin-left: 4px;
}

.optional-text {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
}

.input-icon-img {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

/* =========================================================
   Checkbox
   ========================================================= */
.form-check-group {
  display: flex;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}

.checkbox-wrapper input {
  display: none;
}

.checkbox-ui {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #16c21f;
  background: transparent;
  position: relative;
  flex-shrink: 0;
  margin-top: 3px;
}

.checkbox-ui::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.checkbox-wrapper input:checked + .checkbox-ui {
  background: #1b8f25;
}

.checkbox-wrapper input:checked + .checkbox-ui::after {
  opacity: 1;
}

.check-label-title {
  font-size: 17px;
  font-weight: 500;
  color: #e6e6e6;
}

.check-description {
  font-size: 13px;
  color: #8b93a1;
  margin-top: 6px;
  line-height: 1.6;
}

.text-green {
  color: #16c25f;
  cursor: pointer;
}

.privacy-link {
  color: #16c25f;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.privacy-link:hover {
  color: #1ed96a;
  text-decoration: underline;
}

/* =========================================================
   Secure Footer
   ========================================================= */
.secure-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 5px;
}

.secure-text {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.lock-icon {
  max-width: 5%;
  height: auto;
  opacity: 0.8;
  object-fit: contain;
  flex-shrink: 0;
  align-self: center;
}

/* =========================================================
   Footer Styles
   ========================================================= */
.footer {
  padding: 20px 40px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-icons a {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-icons a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.footer-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-icons .icon-youtube {
  width: 28px;
  height: 28px;
}

.lock-icon {
  width: 6px;
  height: 6px;
  margin-right: 6px;
  opacity: 0.8;
  object-fit: contain;
  flex-shrink: 0;
  align-self: center;
}

/* =========================================================
   Start Analysis Button
   ========================================================= */
/* =========================================================
   Start Analysis Button – FIXED
   ========================================================= */

#assessment-form-start {
  scroll-margin-top: 6rem;
}

.start-analysis-wrapper {
  display: flex;
  justify-content: flex-start; /* ✅ ALWAYS LEFT */
  margin-top: 24px;
}

/* Remove underlines from links */
.no-decoration {
  text-decoration: none !important;
}

.no-decoration:hover,
.no-decoration:focus,
.no-decoration:active {
  text-decoration: none !important;
}

.start-analysis-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 16%;
  min-width: 220px; /* keeps button readable */
  gap: 10px;
  padding: 16px 24px;

  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  color: #000000;
  border: none;
  border-radius: 50px;
  text-decoration: none !important;

  font-size: 16px;
  font-weight: 700;
  cursor: pointer;

  /* Bulged/3D effect with multiple shadow layers */
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.start-analysis-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 24px rgba(0, 0, 0, 0.25),
    0 6px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.start-analysis-btn:active {
  transform: translateY(0px);
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-button-svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.start-analysis-btn:hover .hero-button-svg {
  transform: translateX(3px);
}


/* =========================================================
   Marquee
   ========================================================= */
.marquee-wrapper {
  margin-top: 30px;
  height: 54px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to right,
    #1c1c1c 0%,
    #646262 25%,
    #626060 50%,
    #625f5f 75%,
    #1c1c1c 100%
  );
}

.marquee-container {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
}

.marquee-item strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.marquee-logo {
  margin: 0 40px;
}

.marquee-logo img {
  height: 40px;
  width: auto;
  display: block;
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* =========================================================
   CTA Section
   ========================================================= */
.app-cta {
  background: url("/static/images/BG2.png") no-repeat center center;
  background-size: cover;
  border-radius: 28px;
  padding: 24px 20px 24px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-left: 100px;
  margin-right: 100px;
}

.app-cta::before {
  display: none;
}

.cta-top-logo {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-top-logo img {
  height: 35px;
}

.mentacy-tagline {
  font-size: 0.75rem;
  font-style: italic;
  color: #e91e63;
  margin: 0;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  white-space: nowrap;
}

.cta-text-content,
.cta-image-container {
  position: relative;
  z-index: 2;
}

.cta-tagline {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 140px;
  margin-bottom: 12px;
  text-align: left;
  background: linear-gradient(
    to right,
    #e91e63 0%,
    #ff5722 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Poppins", sans-serif;
}

.cta-title {
  font-weight: 800;
  font-size: 2rem;
  margin-top: 24px;
  margin-bottom: 32px;
  color: #000000 !important;
  font-family: "Poppins", sans-serif;
}

.app-cta .cta-description {
  font-size: 1rem;
  max-width: 100%;
  width: 100%;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cta-description p {
  color: #000000 !important;
  margin: 0;
}

.cta-tagline-text {
  position: absolute;
  bottom: 24px;
  left: 40px;
  z-index: 3;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
}

.cta-tagline-text .mind-text {
  color: #8B0000;
}

.cta-tagline-text .mindful-text {
  color: #4CAF50;
}

.cta-tagline-text .momentum-text {
  color: #424242;
}

.cta-download {
  color: #2563eb !important; /* blue */
  font-weight: 600;
}

.cta-description .line-1 {
  color: #1a1818 !important;
  display: inline-block;
  white-space: nowrap;
}

.cta-description .line-2 {
  color: #1a1818 !important;
  display: block;
}

.store-buttons {
  margin-top: 30px;
}

.store-link:hover {
  transform: translateY(-2px);
}

.cta-text-content {
  padding-top: 0;
}

.cta-image-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.cta-main-mockup {
  max-height: 360px;
  width: 100%;
  max-width: 420px;
  margin-bottom: 0;
  display: block;
  object-fit: contain;
}

.phone-mockup {
  height: 420px;
  width: auto;
  transform: translate(10px, 10px);
}

/* On report page CTA, hide the phone mockup (only show EmotionTransition image) */
#app-cta .phone-mockup {
  height: 0;
  transform: none;
}

.cta-scenario-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #b91c1c;
  margin-bottom: 4px;
}
/* Desktop / Large screens */
.cta-description .line-1 {
  display: inline-block;
}

.cta-description .line-2 {
  display: block;
}

/* =========================================================
   Responsive
   ========================================================= */

.navbar{
  background-image: linear-gradient(170deg, #000000 0%, #131313 100%);
  position: relative;
}

/* Hide navbar if it exists (should be removed from HTML) */
.navbar {
  display: none;
}

.navbar-mentacy-logo {
  width: 130px;                 /* compact icon */
  height: auto;
  margin-left: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.navbar-toggle {
  border: none;
  box-shadow: none;
}

.navbar-toggle:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggle svg {
  width: 26px;
  height: 26px;
}


