:root {
    --bs-blue: #075ae2;
    --bs-gray-light: #333333;
    --bs-red: #dc3545;
    --bs-orange: #ff5f00;
    --bs-white: #fff;
    --bs-gray: #f5f5f5;
    --bs-gray-dark: #ebebeb;
    --bs-light: #fff;
    --bs-dark: #373f50;
    --black-dot: #000000;
    --brown-dot: #a45914;
    --light-brown-dot: #cea341;
    --bs-font-Helvetica: Helvetica, sans-serif;
    --bs-font-Helvetica-regular: Helvetica, sans-serif;
}

.off-canvas-wrap {
    height: 100%;
    overflow-y: auto;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

textarea:focus,
input:focus,
button:focus,
accordion-button:focus,
select:focus,
a:focus {
    box-shadow: none !important;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    animation: fadein 1s;
    -moz-animation: fadein 12s;
    /* Firefox */
    -webkit-animation: fadein 1s;
    /* Safari and Chrome */
    -o-animation: fadein 1s;
    /* Opera */
    width: 100%;
    font-size:1rem;
  line-height: 1.6;
  color: #012939;
  font-family: var(--bs-font-Helvetica-regular);
}

a {
    text-decoration: none;
}

h1 {
    font-size: 2.5rem!important;
    line-height: 1.12;
    font-weight: 700;
}

h2 {
    font-size: 1.9rem;
    line-height: 1.12;
    font-weight: 400!important;
}

.signup-btn {
    border: 2px solid #000000;
    border-radius: .1875rem;
    background: #000000;
    color: #fff;
    line-height: 1.2!important;
}

.signup-btn:hover{
    border: 2px solid #012939;
    border-radius: .1875rem;
    background: #fff;
    color: #000;
}

.darkgreen-btn {
    border: 2px solid #000000;
    border-radius: .1875rem;
    background: #000000;
    color: #fff;
}

.darkgreen-btn:hover{
    border: 2px solid #012939;
    border-radius: .1875rem;
    background: #fff;
    color: #000;
}

.downloadpdf-btn {
    border: 2px solid #012939;
    border-radius: .1875rem;
    background: #012939;
    color: #fff;
}

.downloadpdf-btn:hover{
    border: 2px solid #012939;
    border-radius: .1875rem;
    background: #fff;
    color: #000;
}
.btn-ghost{
    border-radius: .1875rem;
    background: transparent;
    color: #012939;
    border: 2px solid #012939;
}
.btn-ghost:hover{
    border: 2px solid #012939;
    border-radius: .1875rem;
    background: #ccc;
    color: #000;
}


.hero-bg {
    background-image: url("../images/hero-bg.png");
    background-repeat: repeat-x; /* repeats left → right */
    background-size: cover;
    background-position: center;
  }

.border-top-5px{
    background-color: #f4f4f4;
}

.placeholder-custom::placeholder {
    color: #6c757d;    /* light gray like Bootstrap's text-muted */
    opacity: 1;        /* make sure it's fully visible */
}

input:focus,
select:focus,
textarea:focus {
  border-color: #198754!important;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
  background-color: #fdffdf!important;
  outline: none;
}

input.form-control,
select.form-select,
textarea.form-control {
  border-radius: 3px;
  border: 1px solid #ccc;
  font-size: 1rem!important;
}
.white-box{
    background-color: #fff;
}

.bb-popup-content-discount {
    background-color: #fff;
    margin: 15% auto;
    border: 1px solid #E7E7E7;
    border-radius: 8px;
    width:100%;
    max-width: 500px;
    text-align: center;
    z-index: 100;
}
.bb-popup-content-downloadpdf {
    background-color: #000000!important;
    color: #fff;
    margin: 15% auto;
    border: 1px solid #000000;
    border-radius: 8px;
    max-width: 800px;
    text-align: center;
    z-index: 100;
}
.bb-popup-content-downloadpdf .btn-close{
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(243deg) brightness(104%) contrast(102%);
    z-index: 100;
}
.light-blue-bg{
    padding: 10px;
}
.light-blue-bg a{
    color: #ccc!important;
}
.light-blue-bg a:hover{
    color: #000!important;
}
.light-blue-bg:hover a {
    color: #000!important;
}

.light-blue-bg:hover {

    background-color: #ccc;
    border-radius: 8px!important;
    color: #000!important;
}

/* File Upload start */
.file-upload {
    max-width: 230px;
    font-family: 'Inter', sans-serif;
  }

  .file-upload__drop-zone {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    background-color: #ffffff!important;
  }

  .file-upload__drop-zone:hover {
    border-color: #007bff;
    background-color: #f8f9fa;
  }

  .file-upload__input {
    display: none;
  }

  .file-upload__label {
    display: block;
    cursor: pointer;
  }

  .file-upload__label-title {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
  }

  .file-upload__label-desc {
    display: block;
    font-size: 9px;
    color: #6c757d;
    text-align: center;
  }

  .file-upload__preview {
    margin-top: 15px;
    text-align: start;
  }

  .file-upload__preview-image {
    max-width: 120px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
  }

  .file-upload__remove-preview-button {
    display: inline-block;
    padding: 6px 14px;
    font-size: 14px;
    color: #000;
    background-color: transparent;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .file-upload__remove-preview-button:hover {
    text-decoration: underline;
    color: #dc3545;
  }

  .file-upload__error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 8px;
    text-align: center;
  }

/* File Upload end */

/* Page Content Global Styles */
#page-content {
  font-family: var(--bs-font-Helvetica-regular);
    line-height: 1.7;
    color: #333;
  }

  /* Paragraphs */
  #page-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #444;
  }

  /* Links */
  #page-content a {
    color: #0d6efd; /* Bootstrap primary blue */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
  }
  #page-content a:hover {
    color: #0a58ca; /* Darker blue on hover */
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
  }

  /* Headings */
  #page-content h1,
  #page-content h2,
  #page-content h3,
  #page-content h4,
  #page-content h5,
  #page-content h6 {
    font-weight: 300!important;
    margin-top: 0rem;
    margin-bottom: 0rem;
    line-height: 1.3;
    color: #111;
    padding-bottom: 1.3rem;
  }

  /* Bullet Points (unordered list) */
  #page-content ul {
    padding-left: 2rem; /* Indent list */
    margin-bottom: 1rem;
  }
  #page-content ul li {
    margin-bottom: 0.5rem;
    list-style-type: disc; /* default bullet */
  }

  /* Numbered List */
  #page-content ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
  }
  #page-content ol li {
    margin-bottom: 0.5rem;
  }


  .max-1032 {
    max-width: 1032px!important;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  /* Remove validation colors and icons */
.was-validated .form-control:valid,
.was-validated .form-control:invalid,
.form-control.is-valid,
.form-control.is-invalid {
  background-image: none !important; /* remove icon */
}

  /* Remove validation colors and icons */
  .was-validated .form-select:valid,
  .was-validated .form-select:invalid,
  .form-select.is-valid,
  .form-select.is-invalid {
    background-image: none !important; /* remove icon */
  }
  .text-decoration-underline {
    text-decoration: underline !important;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

.footer-bg{
    background-color: #000000;
    color: #fff;
    padding: 5px 0;
}

.footer-bg p{
    margin: 0px 0;
    padding: 10px 0;
}

.invalid-feedback{
  font-size: .775em!important;
}
.total{
  font-size: 1.2rem!important;
  font-weight: 600;
}


.shadow-image {
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  mask-repeat: no-repeat;
  mask-size: cover;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 150, 255, 0.7);
  box-shadow: 0 20px 40px rgba(0, 150, 255, 0.7)!important; /* stronger top shadow */
}



a.blue-link {
  color: #0000ff !important;
  text-decoration: none !important;
}
a.blue-link:hover {
  color: #0000ff !important;
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.f-size-20 {
  font-size: 1.25rem!important;
}
.f-size-24 {
  font-size: 1.5rem!important;
}
.f-size-28 {
  font-size: 1.75rem!important;
}

.remove-item img{
  filter: brightness(0) saturate(100%) invert(15%) sepia(34%) saturate(7380%) hue-rotate(355deg) brightness(124%) contrast(137%);
}
.remove-item img:hover {
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(660%) hue-rotate(315deg) brightness(92%) contrast(73%);
}


/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.btn-transparent {
  background: transparent;
  border: none;
  color: inherit;   /* or set your own text color */
  cursor: pointer;
  font: inherit;    /* keep same font as parent */
  outline: none;    /* remove focus outline */
}






