/* ==========================================================================
   CSS Variables / Design Tokens
   ========================================================================== */

:root {
  --dsp-navy: #000000;
  --dsp-blue: #80350E;
  --dsp-teal: #80350E;
  --dsp-green: #80350E;
  --dsp-orange: #000000;
  --bg: #fee0ce;
  --bg-card: #ffffff;
  --text-1: #000000;
  --text-2: #ffffff;
  --text-3: #333333;
  --border: #000000;
  --accent-glow: rgba(128, 53, 14, 0.3);
  --teal-glow: rgba(0, 255, 255, 0.2);
  --green-glow: rgba(254, 224, 206, 0.5);

    --ink: #1a1a18;
  --paper: #f5f1ea;
  --rule: #1a1a18;
  --muted: #6b6860;
  --accent: #8b3a2a;
  --teal: #00ffff;
  --teal-dark: #00e0e0;
  --card-bg: #ece8df;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: clip;
}

body {
  font-family: 'Source Serif 4', Georgia, serif;
  color:var(--ink);
  background: var(--bg);
  overflow-x: clip;
  line-height: 1.6;
  font-size: 18px;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */
main{width:900px; max-width:100%; margin:0 auto; padding:0 15px 1rem;}
.thin-rule {
    border: none;
    border-top: 0.5px solid var(--rule);
    margin: 6px 0;
}
.mast-top {
  display: flex;
  justify-content:end;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.w {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* @media (max-width: 480px) - Adjust spacing for mobile devices */
@media (max-width: 480px) {
  .w {
    padding: 0;
  }
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 24px;
}

/* @media (max-width: 480px) - Adjust spacing for mobile devices */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

.div {
  height: 2.5px;
  background:#000;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

header {
  
  padding: 15px 0;
  border-bottom: 4px double var(--rule);
  z-index: 999;
  width: 100%;
}

.header .container {
  display: flex;
  justify-content:center;
  align-items: center;
  padding: 0;
}

.logo{width:200px;}

/* @media (max-width: 767px) - Scale down header elements for tablets */
@media (max-width: 767px) {
  img.logo {
    width: 150px;
  }

   .closer {padding: 15px 10%;}

}

/* ==========================================================================
   Buttons
   ========================================================================== */
 .btn {
      display: inline-block;
      background: var(--ink);
      color: var(--paper);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 500;
      padding: 10px 28px;
      text-decoration: none;
      letter-spacing: 1px;
      transition: background 0.2s;
      cursor: pointer;
    }

    .btn:hover {
      background: #333;
    }

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

header .btn {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-primary {
  color: #fff;
  background-color: #000;
  border-color: #000000;
}

.btn-primary:hover {
  color: #000;
  background-color: #00ffff;
  border-color: #000000;
}

.btn-primary:focus,
.btn-primary.focus {
  color: #000;
  background-color: #00ffff;
  border-color: #000000;
  box-shadow: none !important;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius:100px;
}

.btn-request {
  width: 100%;
  margin: 15px 0 0 0;
}

/* @media (max-width: 480px) - Adjust button font size for small screens */
@media (max-width: 480px) {
  .form-control,
  .btn,
  .btn-primary {
    font-size: 16px;
  }
}

/* ==========================================================================
   LAYER 1: HERO / WE DON'T KNOW
   ========================================================================== */

.hero {
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  position: relative;
  text-align: center;
}

.hero::before {
  
  position: absolute;
  top: -150px;
  right: -250px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.6;
}

.hero h1 .highlight {
  font-style: italic;
  background: var(--teal);
  padding:4px 8px;
  display: inline-block;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 90%;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 540px;
  margin: 1.25rem auto 0;
  font-style: italic;
}
.hero-sub p{margin:0 0 10px 0;}
.hero-sub p:last-child{margin: 0;}

.hero-sub strong {
  color: var(--ink);
  font-style: normal;
  font-weight: 600;
}

/* @media (max-width: 768px) - Reposition decorative element for tablets */
@media (max-width: 768px) {
  .hero::before {
    right: -400px;
    width: 500px;
    height: 500px;
    opacity: 0.2;
  }
}

/* @media (max-width: 480px) - Hide decorative element on mobile */
@media (max-width: 480px) {
  .hero::before {
    display: none;
  }
}

.hero h1 {
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  max-width: 100%;
}

.hero h1 em {
  font-style: italic;
  color: var(--dsp-blue);
}

.hero-body {
  font-size: 1.3rem;
  
  max-width: 100%
  line-height: 1.5;
  padding:0 5px;
}

.hero-body strong {
  color: var(--text-1);
  font-weight: 600;
}

/* ==========================================================================
   LAYER 2: DATA / TABLE & STATISTICS
   ========================================================================== */

.data {
  padding: 40px 0;
}

.data h2 {
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  line-height: .9;
  margin-bottom: 20px;
   
}

.label {
  font-size: 14px;
  font-weight: 300;
   font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dsp-teal);
  
  margin-bottom: 3px;
}

.loss {
  color: var(--dsp-orange);
	text-align: center !important;
}

.gain {
  color:#3a6b35 !important;
  line-height:1.2;
	text-align:center !important;
}
.gain-col{width:210px;}
.gain span{display:block;}
/* Table Styles */

.tbl {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  font-size:16px;
}

.tbl th {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.2;
  color:var(--muted);
  font-weight:300;
  padding: 10px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  
   font-family: 'Inter', sans-serif;
}

.tbl th:nth-child(3),
.tbl th:nth-child(4) {
  text-align: center;
}

.tbl td {
  padding: 12px 8px;
  border-bottom:0.5px solid rgba(26,26,24,0.15);
  vertical-align: middle;
}

 

.tbl tr {
  transition: background 0.2s;
}

 

.tbl-yr {
  font-family: 'Source Serif 4', Georgia, serif;
  
  color: var(--text-3);
  font-weight: 600;
}

.tbl-name {
  font-family: 'Source Serif 4', Georgia, serif;
  
  line-height: 1.25;
}

.tbl-val {
  font-family: 'Inter', sans-serif;
  color:var(--accent);
  font-weight: 600;
  text-align: right;
}

.source {
    font-size: 10px;
    color: var(--muted);
    font-style: italic;
    margin-top: 10px;
}


/* @media (max-width: 600px) - Optimize table spacing and font sizes for mobile */
@media (max-width: 600px) {
  .tbl th{font-size:9px;}
  .tbl th,
  .tbl td {
    padding: 5px 5px;
  }

  .tbl-name {
    font-size: 0.85rem;
  }

  .tbl-val {
    font-size: 0.85rem;
  }

  .gain span {
    display: block;
  }
}

.tbl-footer {
  margin-top: 10px;
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.8;
}

.tbl-footer a {
  color: var(--dsp-blue);
  text-decoration: none;
}

.tbl-footer a:hover {
  text-decoration: underline;
}

.tbl-footer strong {
  color: var(--text-2);
}

/* ==========================================================================
   LAYER 3: BEHAVIOURS / MISTAKES & FIXES
   ========================================================================== */

.behave {
  padding: 20px 0;
}

.behave h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 32px;
  
}

.mistakes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.beh-card {
      border: 0.5px solid var(--rule);
      padding: 1.25rem 1.5rem;
      margin-bottom: 14px;
      display: grid;
      grid-template-columns: 44px 1fr 240px;
      gap: 1rem;
      align-items: start;
    }

    .beh-num {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      color: rgba(26, 26, 24, 0.2);
      font-weight: 900;
      line-height: 1;
    }

    .beh-label {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
    }

    .beh-quote {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-style: italic;
      margin: 5px 0;
    }

    .beh-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.55;
    }

    .beh-fix {
      background: var(--ink);
      color: var(--paper);
      padding: 16px 18px;
      font-size: 13px;
      line-height: 1.6;
    }

    .beh-fix-label {
      font-family: 'Inter', sans-serif;
      font-size: 8px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 6px;
    }

    @media (max-width: 680px) {
     

      .col p:first-child::first-letter {
        font-size: 38px;
      }

      .beh-card {
        grid-template-columns: 1fr;
        gap: 0.75rem;
      }

      .beh-num {
        font-size: 32px;
      }

      .beh-fix {
        max-width: 100%;
      }
    }

.msc-section{text-align: center;}
/* @media (max-width: 768px) - Stack mistake-fix side-by-side layout to vertical */
@media (max-width: 768px) {
  .mk {
    grid-template-columns: 15px 1fr;
    padding:20px 15px;
  }

  .mk-fix {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .mk-num {
    font-size: 1.6rem;
  }
  section{padding:20px 0;}

  .tbl {font-size:14px;}
	.gain-col{width:auto;}
}


.poparea{text-align: center; padding:0;}
.poparea h3{margin:0 0 20px 0;}
.poparea p{margin:0 0 20px 0;}
.poparea p:last-child{margin:0;}
.poparea img{vertical-align: middle; width:27px;}
.poparea a.link{color:#000 ; text-decoration: none;}

/* ==========================================================================
   LAYER 4: CTA / CALL-TO-ACTION
   ========================================================================== */
 /* ── CTA SECTION ── */
    .cta-section {
      text-align: center;
      margin: 0 0 1.5rem;
      border: 0.5px solid var(--rule);
      padding: 2rem 2rem;
    }

    .cta-section h3 {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .cta-sub {
      font-size: 22px;
      color: var(--accent);
      font-family: 'Playfair Display', serif;
      font-style: italic;
      margin-bottom: 1rem;
    }

    .cta-section p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.65;
    }

    .cta-or {
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
      margin: 1.5rem 0 0.6rem;
    }

    .cta-phone {
      display: inline-block;
      background: var(--ink);
      color: var(--paper);
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 500;
      padding: 12px 32px;
      letter-spacing: 1px;
      text-decoration: none;
      transition: background 0.2s;
    }

    .cta-phone:hover {
      background: #333;
    }

    /* ── CLOSER ── */
    .closer {
      text-align: center;
      margin-top: 2rem;
      padding-top: 1.25rem;
      border-top: 0.5px solid var(--rule);
    }

    .closer p {
      font-size: 15px;
      color: var(--muted);
      font-style: italic;
    }

    .closer .sign {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      color: var(--accent);
      font-style: italic;
      margin-top: 8px;
    }
.cta-missed-num svg{width:18px; fill:#fff; transition: all ease-in-out 0.3s;}

.cta-missed-num:hover{background:#00ffff; color:#000; border:1px solid #000;}
.cta-missed-num:hover svg{ fill:#000;}
.cta-missed-sub {
  color: var(--text-3);
}

.cta-success {
  display: none;
  margin-top: 20px;
  padding: 12px 20px;
  background: var(--dsp-blue);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.cta-sign {
    margin-top: 32px;
   
    position: relative;
}
.cta-sign strong {
    color: var(--dsp-teal);
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

/* @media (max-width: 600px) - Stack form columns and adjust card padding for mobile */
@media (max-width: 600px) {
  .cta-card {
    padding: 32px 22px;
  }

  .cta-row {
    grid-template-columns: 1fr;
  }

  .cta-missed-num {
    font-size: 1.3rem;
  }
	.poparea p span{display:block;}
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
      text-align: center;
      font-size: 9.5px;
      color: var(--muted);
      margin-top: 1.5rem;
      border-top: 0.5px solid var(--rule);
      padding-top: 1rem;
      line-height: 1.7;
      font-family: 'Inter', sans-serif;
    }

footer p {
  margin: 0 0 15px 0;
   
}
footer a{color: var(--muted);}

.footer-disc {
  font-size: 10px;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   Modal Styles
   ========================================================================== */

/* Modal Backdrop & Container */

.popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  z-index: -1;
}

/* Modal Dialog & Content */

.popup-dialog {
  position: relative;
  width: auto;
  margin: auto;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  z-index: 10;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-dialog-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.popup-modal.show .popup-dialog {
  transform: scale(1);
}

.popup-lg {
  max-width: 800px;
}

.popup-xl {
  max-width: 900px;
}

/* @media (max-width: 768px) - Adjust modal width for tablets */
@media (max-width: 768px) {
  
  .popup-lg {
    max-width: 95vw;
    margin: 10px;
  }
  .popup-xl {
    max-width: 95vw;
    margin: 10px;
  }
}
@media (max-width: 767px) {
  body{font-size:14px;}
  .hero-sub{padding:0 6%; line-height: 1.4;}
  .tbl th br{display:none;}
  .tbl th:nth-child(3), .tbl th:nth-child(4){}
}

/* @media (max-width: 480px) - Full-width modal for mobile */
@media (max-width: 480px) {
  .popup-lg {
    max-width: 100vw;
    margin: 0;
  }
  .popup-xl {
    max-width: 100vw;
    margin: 0;
  }
}

.popup-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 90%;
  pointer-events: auto;
  background-color: #FEE0CE;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  padding:0;
}

.popup-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
  background: var(--bg);
  color: #000;
  max-height: 85vh;
  overflow-y: auto;
}

.popup-body.p-0 {
  padding: 2%;
}

.popup-body.p-3 {
  padding: 1.5rem;
}

.popup-body.position-relative {
  position: relative;
}

/* Modal Close Button */

.popup-close {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 1;
  margin: 5px;
  padding: 0;
  background-color: #000;
  border: 0;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 0 #fff;
  width:25px;
  height:25px;
  border-radius: 100px;
  cursor: pointer;
  transition: opacity 0.15s linear;
}

.popup-close:hover,
.popup-close:focus {
  opacity: 0.75;
  outline: 0;
}

/* ==========================================================================
   Form Styles - Common
   ========================================================================== */

.pan-card-modal-body {
  background: #fff;
}

.pan-card-head {
  margin-bottom: 1.5rem;
}

.modal-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000;
}

.after-green-border {
  color: #000000;
  font-weight: 700;
  border-bottom: 2px solid #00ffff;
  padding-bottom: 2px;
}

.pan-card-form {
  margin-bottom: 0;
}

.pan-card-btn {
  text-align: left;
  position: relative;
}

/* ==========================================================================
   Form Layout
   ========================================================================== */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 0;
}

.form-row .form-col-half {
  grid-column: 1 / 2;
}

/* @media (max-width: 576px) - Stack form columns for smaller screens */
@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* @media (max-width: 480px) - Adjust form elements and modal heading for mobile */
@media (max-width: 480px) {
  .cta-form {
    max-width: 100%;
  }

  .pan-card-form {
    margin-bottom: 1rem;
  }

  .modal-heading {
    font-size: 1.25rem;
  }
}

.form-col {
  flex: 1;
}

.form-group {
  margin-bottom: 0.5rem;
  position: relative;
}

/* ==========================================================================
   Form Controls & Labels
   ========================================================================== */

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1a202c;
}

.text-indigo-80 {
  color: #1a202c;
}

.form-control-inner {
  position: relative;
  align-items: center;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  outline: none;
}

.form-control.text-uppercase {
  text-transform: uppercase;
}

.form-control.error-text {
  border-color: #dc3545;
}

.form-control.error-text:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.rcb-input {
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-1);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.rcb-input:focus {
  border-color: var(--dsp-blue);
}

.rcb-input::placeholder {
  color: var(--text-3);
}

/* ==========================================================================
   Checkbox Styles - Custom Design
   ========================================================================== */

.form-check {
  display: flex;
  align-items: flex-start;
  min-height: 1.5rem;
  margin-bottom: 0.5rem;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.form-check-input {
  position: relative;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 0;
  margin-right: 0;
  cursor: pointer;
  border: 2px solid #000000;
  border-radius: 4px;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.form-check-input:hover {
  border-color: #00ffff;
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1);
}

.form-check-input:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.25);
}

.form-check-input:checked {
  background-color: #00ffff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3 5-5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  border-color: #000000;
}

.form-check-input:checked:hover {
  background-color: #00ffff;
  border-color: #000000;
}

.form-check-input:checked:focus {
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.25);
}

.form-check-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-check-label {
  color: #000;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
   font-family: 'Inter', sans-serif;
  cursor: pointer;
  margin-bottom: 0;
  user-select: none;
  width: 85%;
}

/* ==========================================================================
   Form Elements
   ========================================================================== */

.icon-label {
  position: absolute;
  right: 0.75rem;
  top: 2.5rem;
  cursor: pointer;
  pointer-events: none;
}

.icon-label img {
  width: 20px;
  height: 20px;
}

.otp-form-control {
  display: flex;
  flex-direction: column;
}

.otp-form-control .form-control {
  margin-bottom: 0.75rem;
}

.bttn-link {
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  margin-top: 0.5rem;
}

.bttn-green-link {
  color: #000000;
  text-decoration: underline;
}

.bttn-green-link:hover {
  text-decoration: underline;
}

.error {
  display: block;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  min-height: 1.25rem;
  text-align: left;
}

/* ==========================================================================
   Thank You Box Styles
   ========================================================================== */

.thank-u-box {
  padding: 2rem;
  text-align: center;
}

.thank-you {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #00ffff;
  text-transform: uppercase;
}

.thank-u-txt1 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.thank-u-box hr {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid #e0e0e0;
}

.sticky {
  background-color: #00ffff;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.m-0 {
  margin: 0 !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.p-3 {
  padding: 1.5rem !important;
}

.p14 {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.p14:last-child {
  margin-bottom: 0;
}

.text-uppercase {
  text-transform: uppercase;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.hidden {
  display: none !important;
}

.loader-img {
  margin: 0 auto 1rem auto;
  max-width: 50px;
}

/* ==========================================================================
   Alert Styles
   ========================================================================== */

.alert {
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}



.row{display: flex;             /* Enables flexbox layout for columns */
  flex-wrap: wrap;    
  margin:0 -15px;       /* Allows columns to wrap to new lines */
  }
  .col-12 {padding:0 15px; width:100%;}
  .col-md-6 {padding:0 15px;}
  .text-center{text-align:center;}

  
.news-border{padding:4%; border:4px solid #777; border-radius:0px; font-size: 14px; font-family:  'Inter', sans-serif;}
.popup-body h2{ margin:0 0 0px 0; font-size:clamp(1.5rem, 2.8vw, 3rem); line-height:110%;}
.popup-body h3{color:var(--dsp-green); margin:0 0 20px 0; font-size:clamp(1.1rem, 2vw, 3rem); font-style: italic;}
.news-border p{margin:0 0 10px 0;}

.adlogo{width:250px; max-width:70%; margin:50px 0 0;}
.m-0{margin:0 !important;}
.popup-body .bg-white{background:#fff; padding:10px 0; font-size:11px; text-align: center; font-family:  'Inter', sans-serif;}

  @media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%; /* 6 out of 12 columns */
    padding:0 15px;
  }
}
/* Custom scrollbar for popup body */
.popup-body::-webkit-scrollbar {
  width: 3px;
}

.popup-body::-webkit-scrollbar-track {
  background: #e6e2d9;
  border-radius: 10px;
}

.popup-body::-webkit-scrollbar-thumb {
  background: #5c261a;
  border-radius: 10px;
}

.popup-body::-webkit-scrollbar-thumb:hover {
  background: #5c261a;
}

/* Firefox support for popup-body */
.popup-body {
  scrollbar-width: thin;
  scrollbar-color: #5c261a #e6e2d9;
}