        :root {
            --primary-color: #01abcb;
            --dark-color: #0d233e; 
            --gold-color: #f9b829;
            --text-color: #333;
            --light-blue-bg: #f0f8ff;
            --body-bg-color: #f7f7f7;
            --success-color: #28a745;
            --danger-color: #e74c3c;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
       
        }

        .hero-section {
             background-image: url(../images/hero.webp);background-repeat: no-repeat;background-size: auto;background-position: top;
        }


        p {
            font-size: 18px; font-family: 'Inter', sans-serif;font-weight: 400;
        }
        h1, h2, h3, h4, h5, h6 {
            color: var(--dark-color);
            font-weight: 700;
        }
        
        .btn-gold {
            background-color: var(--gold-color);
            border-color: var(--gold-color);
            color: var(--dark-color);
            padding: 10px 15px;
            border-radius: 5px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            background-color: #e0a625;
            border-color: #e0a625;
            color: var(--dark-color);
        }
        
        .btn-teal {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            font-weight: 600;
            border-radius: 50px;
        }
        .btn-teal:hover {
            background-color: #00a7af;
            border-color: #00a7af;
            color: white;
        }

        .btn-teal-custom{
            position: relative;
            display: flex;
        }

     

        /* --- Top Bar --- */
        .top-bar {
            background-color: #333;
            color: white;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            text-align: center;
        }
        .top-bar a {
            color: var(--primary-color);
            text-decoration: underline;
        }
        .top-bar .btn-start-now {
            background-color: var(--danger-color);
            color: white;
            border: none;
            padding: 5px 15px;
            font-size: 0.8rem;
            border-radius: 5px;
            margin-left: 15px;
        }

        /* --- Header --- */
        .header {
            background-color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .header .navbar-brand {
            font-weight: 800;
            color: var(--dark-color);
            font-size: 1.5rem;
        }
        .header .relief-text {
            color: var(--text-color);
            font-weight: 500;
        }
        .header .relief-text i {
            color: var(--success-color);
        }

        /* --- Hero Section --- */
        .hero-section {
            padding: 2rem 0 0rem 0;
          
        }
        .hero-section h1 {
            font-size: 48px;font-family: 'Inter';
            font-weight: 800;
            line-height: 1.2;
            color: var(--dark-color);
            letter-spacing: -0.02em;

        }
        .shadowtext{ text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);  }
        .primary-color{
                color: var(--primary-color);
        }
        .hero-section .hero-image-container {
            position: relative;
            display: inline-block;
        }
        .hero-section .doctor-trusted-seal {
            position: absolute;
            top: 0px;
            right: -10px;
            width: 100px;
            transform: rotate(15deg);
        }
        
        .hero-form {
            background-color: var(--dark-color);
            color: white;
            padding:  2rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
         .hero-form h2{ text-align: center; color: #fff; }
        .hero-form h3 {
            font-size: 1.5rem;
            text-align: center;
            margin-bottom: 1.5rem;
            color: white;
            font-weight: 600;
        }
        .hero-form .form-label {
            display: none;
        }
        .hero-form .form-control, .hero-form .form-select {
            background-color: #fff;
            border: 1px solid #ccc;
            color: #333;
            padding: 10px 15px;
            margin-bottom: 1rem;
        }
        .hero-form .form-control::placeholder, .hero-form .form-select {
            color: #888;
        }
        .hero-form .payment-icons img {
            height: 25px;
            margin: 0 5px;
        }
        .hero-form .stock-warning {
            color: var(--danger-color);
            font-weight: bold;
            text-align: center;
            margin-top: 1rem;
        }

        .reviews-box {
            background-color: #e6f9fa;
            border: 1px dashed var(--primary-color);
            padding: 1rem;
            border-radius: 10px;
        }
        .reviews-box .stars i {
            color: var(--gold-color);
        }

        .checklist li {
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        .checklist i {
            color: var(--danger-color);
            margin-right: 10px;
        }
        .checklist span {
            font-weight: bold;
        }
        .checklist li.needed i {
            color: var(--success-color);
        }

        /* --- As Seen On Section --- */
        .as-seen-on {
            padding: 2rem 0;
            background-color: #fff;
        }
        .as-seen-on h5 {
            text-align: center;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
        }
        .as-seen-on .logos {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            filter: grayscale(100%);
        }
        .as-seen-on .logos img {
            max-height: 70px;
        }
        .t-a-l{
            text-align: left;
        }
        .font-size-30 {
    font-size: 30px;
}
.text-left{
    text-align: left;;
}



        
        @media (max-width: 767.98px) {
            .hideonmobile{ display: none; }
            .as-seen-on .logos img {
                max-height: 20px;
            }
            .header .navbar-brand {
                font-size: 1.2rem;
            }

            .btn-teal-custom {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
            }
          
            .font-w-m-800{
                font-weight: 800;
            }
        }


.custom-container {
      max-width: 960px; /* or 900px, as per your preference */
      margin-left: auto;
      margin-right: auto;
      padding-left: 15px;
      padding-right: 15px;
}

.finr{
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-size: 28px;
line-height: 120%;
letter-spacing: 1px;
color: #000000;
}
.lightbg{
    background-color: #D2F8FF;
}

.hdtwo{
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-size: 36px;
line-height: 120%;
letter-spacing: -0.02em;
color: #D22B2B;
}

li {
    font-size: 18px;
    font-weight: 100;
}
strong {
    font-weight: 600!Important;
}

.lftimg img {
    max-width: 500px;
   
}

.lftimg  {
  
    text-align: right;
}

.bluebtn{
    background-color: #00ABCB;   padding-left: 60px;
    padding-right: 60px;
    border-radius: 2px;
}

.lightyellow{
    background-color: #FFF6E6;
}

.white-bg {
    background: #fff;
}

.shadowbox {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;margin-bottom: 30px;
}

.ftsixtn{ font-size: 16px;}

 @media (min-width:768px) {
    .ml-2{ margin-right: 8%; }
    .mediumbox{ max-height: 240px; }
    .largebox{ max-height: 280px; } 
    .weekbox{ min-height: 144px; }
    .leftgirlf{ max-width: 360px;  }
    .formobile{ display: none; }
    .text-right{ text-align: right; }
}



span.stars i {
    color: #ffbd01;
}

.gradcolor{
    background: linear-gradient(180.34deg, #FFF6E6 43.67%, #99EFFF 99.7%);
}

.darkdgcolor{ background: #00414e!important; border-color: #00414e; color:#fff!important; padding-left: 60px;
    padding-right: 60px;    border-radius: 2px;}
.Blue-checkmark {
    max-width: 36px;
    margin-right: 14px;
    padding-top: 10px;
}

.ureports li {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;border-radius: 10px;
}

p.stock-warning {
    font-size: 14px;
    text-align: center;
    padding-top: 16px;
}

#faqAccordion .accordion-item{ box-shadow: 0px 0px 10px #0000001a; border: 0;
    margin-bottom: 20px;  }
button.accordion-button {
    background: #fff !important;
    font-size: 22px;
    font-weight: 500;
    color: #000000 !important;
    font-family: 'Inter';
}

footer {
    padding-top: 25px;border-top: 1px solid #ededed;
}

.container-fluid {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.fa-check{color: #1cc7e0;  }
.graph{
    width: 18px;
    padding-right: 3px;
    margin-top: -3px;
    height: auto;
}
.rightarrow{  height: 56px; }


 @media (max-width:768px) {
    .bluebtn{
        padding-left: 20px;
        padding-right: 20px;
    }
    .darkdgcolor{  
        padding-left: 20px;
        padding-right: 20px;
    }
    .widthauto{ width:100%; }
    .logo{ width: 160px; }
    .mrgnmobile{  margin-left: 20px; margin-right: 20px;  }
    .hero-section { background-position: top right; }
    .shadowtext {
         text-shadow: none!important;
    }
    .text-left-mobile{ text-align: left!important; }
    .paddinghero{ padding-left: 40px;  }
    .hero-section h1 {    font-size: 32px; }
    .showonmobile{ display: block!important; }
    .bottomarrow{max-width: 90%;}
    .ptsm0{ padding-top: 0px!important; }
    .lftimg img { width: -webkit-fill-available; }
    .mobauto{ margin:0 auto;}
    .martop { padding-top: 60px !important;}
    .marbot {position: relative; margin-bottom: -40px !important;}
    .formbox{  width: 94%;margin: 0 auto; }
    .shadowbox { width: 94%; margin-left: 3%; }

}

.btn-gold {
    animation: pulse 1.5s infinite;
}
.btn-lg {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

.error {
    border: 1px solid red !important;
}

label.error {
    display: none !important;
}