@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} 

body {
  font-family: var(--poppins);
  background: #FFFAEF;
  overflow-x:hidden;
}

main {
  overflow: hidden;
}
a {
    text-decoration: none;
}
p{
  margin-bottom: 0px;
  color: var(--text-color);
}

.mb-10 {
  margin-bottom: 150px;
}

:root {
      --primary-color: #680E2D;
      --secondary-color: #000;
      --yellow-color: #FFD08E;
      --white: #ffffff;
      --h2-size: 45px;
      --poppins: "Poppins", sans-serif;
}


h2 {
  color: var(--primary-color);
  font-family: var(--poppins);
  font-size: var(--h2-size);
  font-weight: 700;
  line-height: 60px;
}

.mt-10 {
  margin-top: 70px;
}

.mt-20 {
      margin-top: 145px;
}

.mobile-view {
  display: none!important;
}

/* ===== Start 2026 Banner Section Css  ===== */

.banner-section {
    padding: 150px 0px 80px 0px;
    background-image: url('../images/2026-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    background-size: cover;
    height: 700px;
}


.banner-text {
  width: 50%;
    color: var(--white);
}

.banner-text h2 { 
  color: var(--white);
  font-weight: 700;
  font-size: 70px;
  line-height: 75px;
}
.banner-text p {
      font-size: 20px;
      font-weight: 400;
      line-height: 30px;
}
.single-btn {
  margin-top: 40px;
}

.single-btn-one {
  border-radius: 12px;
  font-size: 18px;
  padding: 15px 25px;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
}

.single-btn-one svg {
  margin-left: 10px;
}

/* ===== End 2026 Banner Section Css  ===== */

/* ===== Start Topbar Section Css  ===== */

.topbar {
    background: var(--primary-color);
    padding: 20px 10px;
}

.topbar p {
      color: var(--white);
      text-align: center;
      font-size: 22px;
      font-weight: 600;
      line-height: 30px;
}

.topbar p span{
   color: var(--yellow-color);
}

/* ===== End Topbar Section Css  ===== */


/* ===== Start What Changes Css  ===== */

.desktop-view {
  position: relative;
  z-index: 99;
}
.what-changes {
  padding: 50px 0px;
  background: #FFF9EC;
  position: relative;
}

.what-changes p {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 500;
}

img.leftastro {
    position: absolute;
    right: 0;
    opacity: 0.4;
}

img.rightastro {
    position: absolute;
    left: 0;
    opacity: 0.4;
    bottom: 5%;
    transform: rotate(180deg);
}
.prediction-box {
    padding: 0px 10px;
}
.prediction-card {
  border-radius: 200px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.prediction-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.prediction-card img:hover {
   transform: scale(1.09);
}
.prediction-card p {
    color: var(--white);
    font-size: 14px;
    position: absolute;
    padding: 15px 15px 30px;
    bottom: 0;
}

.box-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}


.mt-1 {
  margin-top: -50px!important;
}

.mt-2 {
  margin-top: 30px!important;
}

.mt-3 {
  margin-top: -100px!important;
}

.mt-4 {
  margin-top: 60px!important;
}

.mt-5 {
  margin-top: -40px!important;
}

/* Wave Animations */
@keyframes moveDown {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(20px); }
}

@keyframes moveUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Base animation properties */
.prediction-box {
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

/* Scroll-visible trigger */
.prediction-box.visible {
  opacity: 1;
}

/* Individual animation directions */
.animation-box1 { animation-name: moveDown; animation-delay: 0s; }
.animation-box2 { animation-name: moveUp;   animation-delay: 0.3s; }
.animation-box3 { animation-name: moveDown; animation-delay: 0.6s; }
.animation-box4 { animation-name: moveUp;   animation-delay: 0.9s; }
.animation-box5 { animation-name: moveDown; animation-delay: 1.2s; }
.animation-box6 { animation-name: moveUp;   animation-delay: 1.5s; }



  .prediction-box-mobile {
    margin-top: 10px;
  }
.prediction-box-mobile img {
    transform: scale(0.9);
}

.prediction-card-mobile {
  position: relative;
}

.what-changes .slick-center .prediction-box-mobile {
    transform: scale(1.1);
}

.prediction-card-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prediction-card-mobile h5 {
    color: var(--white);
    font-size: 14px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.prediction-box-mobile p {
    font-size: 12px !important;
    height: 100px;
}
/* ===== End What Changes Css  ===== */


/* ===== Start Your Starts Bar ===== */
    .your-stars {
      background: var(--primary-color);
      padding: 30px 0px;
    }
    .your-stars-text h3 {
      color: var(--white);
      font-size: 30px;
      font-weight: 500;
      line-height: 45px;
      margin-bottom: 0;
    }

   
    a.reveal-cta {
      padding: 12px 40px;
      border-radius: 6px;
      color: var(--white);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.23) 50%, rgba(255, 255, 255, 0.00) 50%), #2F241F;
      font-size: 20px;
      font-weight: 700;
      display: inline-flex;
    }

/* ===== End Your Starts Bar ===== */


/* ===== Start What Report Css ===== */
.what-reports {
    background: #FFF9EC;
    padding: 60px 0px;
}
.what-reports h2 br {
  display: none;
}
  .what-reports ul {
    list-style: none;
    padding-left: 0px;
  }

  .what-reports ul li {
    padding: 10px;
    margin: 25px 0px;
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 500;
    border: 0 solid var(--primary-color);
    background: linear-gradient(90deg, #FFF9EC 0%, #EDEDED 28.85%, #EDEDED 74.04%, #FFF9EC 100%);
   }

/* ===== Start What Report Css ===== */

/* ===== Start What Make Css ===== */

.what-makes {
  border-top: 1px solid #FFCE77; 
  border-bottom: 1px solid #FFCE77;
  background: var(--primary-color);
  padding: 50px 0px 120px;
  text-align: center;
}

.what-makes h2{
  color: rgba(255, 249, 236, 1);
}

.what-makes p {
  color: var(--white);
  font-size: 20px;
}

.reliable-section {
  z-index: 99;
  position: relative;
  margin-top: -100px;
  padding-bottom: 80px;}

.what-box {
    border-radius: 8px;
    background: radial-gradient(153.45% 138.36% at 0% 4.36%, #000 39.47%, #160700 100%);
    text-align: center;
    color: var(--white);
    padding: 30px 10px;
    height: 255px;
}

.imgicon {
  margin-bottom: 25px;
}
.what-box h3 {
  color: var(--yellow-color);
  font-size: 20px;
  font-weight: 700;
}

.what-box p{
  font-size: 16px;
}
/* ===== End What Make Css ===== */


/* ===== Start About Diva Section ===== */
.about-diva-section{
  padding: 80px 0px;
  position: relative;
  background-color: #FFFAEF;
}

.diva-box {
  background-color: var(--primary-color);
  border-radius: 20px;
  padding: 50px;
  position: relative;
}

.diva-box img.diva-maam {
  content: "";
  position: absolute;
  bottom: 0%;
  right: 0%;
  width: 45%;
}

.diva-box h2 {
  font-size: 65px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--yellow-color);
}

.diva-box span {
  display: flex;
  color: var(--white);
  font-size: 20px;
  align-items: center;
  gap: 10px;
  line-height: 18px;
}

.diva-box span img {
  width: 20%;
}

.diva-box p {
  width: 90%;
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  margin: 30px 0px 40px;
}

.guide-btn a {
  border-radius: 8px;
  background: var(--yellow-color);
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 600;
  padding: 14px 30px;
  position: relative;
  z-index: 99;
}

.astro-wapper {
  position: relative;
  overflow: hidden;
  margin-top: -50px;
}

.astro-img {
  animation: rotate369 15s linear infinite;
  overflow: hidden;
}

@keyframes rotate369 {
  from {
    transform: translate(0%, -25%) rotate(0deg);
  }
  to {
    transform: translate(0%, -25%) rotate(360deg);
  }
}

/* ===== End About Diva Section ===== */

/* ===== Start How Different ===== */

.how-different {
   padding: 80px 0px 60px;
   background-image: url('../images/how-different-bg.png');
   background-repeat: no-repeat;
   background-position: center;
   position: relative;
   background-size: cover;
   text-align: center;
}

.how-different h2{
     color: var(--white);
     font-size: 60px;
     font-weight: 600;
}

.how-different p{
  color: var(--white);
  font-size: 20px;
}

.claim-report {
    text-align: center;
}

a.bg-color {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.23) 50%, rgba(255, 255, 255, 0.00) 50%), #680E2D!important;
      padding: 12px 40px;
      border-radius: 10px;
      color: var(--white);
      font-size: 20px;
      font-weight: 600;
      display: inline-flex;
}
/* ===== End How Different ===== */


/* ===== Start Video Section Css ===== */


 .video-section {
      padding: 50px 0px 0px;
      text-align: center;
      background-repeat: no-repeat;
      position: relative;
      background-size: cover;
    }

    .video-section p {
      color: #364153;
      font-family: var(--poppins);
      font-size: 18px;
      line-height: 28px; 
      font-weight: 400;
      margin-bottom: 40px;
    }

     .video-card {
      border-radius: 18px;
      border: 2px solid #FFF;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
      padding: 15px;
      height: 100%;
      background: #ffc367;
    }

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  overflow: hidden;
  border-radius: 12px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* ===== End Video Section Css ===== */



/*======  Start Testimonial Section  ======*/

.testimonial-section {
      padding: 60px 0px 40px;
      text-align: center;
      position: relative;
}

.testimonial-section p {
    font-size: 18px;
}

    .testimonial-slider {
      margin-top: 30px;
    }

    .testimonial-card {
      padding: 30px;
      margin: 5px;
      text-align: left;
      border-radius: 16px;
      border: 1px solid #F3F4F6;
      background: #180D04;
      color: var(--white);
    }

    p.review {
      margin-bottom: 20px;
      font-size: 16px;
    }
    .testprofile {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .testprofile img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--yellow-color);
    }

    .testprofile h3 {
      color: var(--yellow-color);
      font-size: 18px;
      font-weight: 600;
      line-height: 20px;
      margin-bottom: 0px;
    }

    .testprofile span {
      font-size: 14px;
      font-weight: 300;
    }

    /* Custom Arrows */
    .testimonial-section .slick-prev, .testimonial-section .slick-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: var(--white);
      border: 1px solid #eee;
      color: var(--primary-color);
      border-radius: 50%;
      width: 38px;
      height: 38px;
      display: flex !important;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      z-index: 10;
      transition: all 0.3s ease;
    }

    .testimonial-section .slick-prev {
      left: -40px;
    }

    .testimonial-section .slick-next {
      right: -40px;
    } 

    .testimonial-section .slick-prev:before, .testimonial-section .slick-next:before {
      display: none;
    }

  
.testimonial-section .slick-prev::after {
  content: "";
  display: block;
  width: 16px; 
  height: 16px;
  background-image: url('../images/arrow-left.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.testimonial-section .slick-next::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image:url('../images/arrow-right.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.testimonial-section .slick-dots {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.testimonial-section .slick-dots li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(107, 68, 35, 0.3); 
  transition: all 0.3s ease;
}

.testimonial-section .slick-dots li.slick-active {
  width: 25px; 
  border-radius: 20px;
  background: var(--primary-color); 
}

.testimonial-section .slick-dots li button {
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* ===== End Testimonial Section ===== */


/*======  Start FAQ's Section ======*/

.FAQs {
  padding: 40px 0px 100px;
  position: relative;
}
.FAQs h2 {
    text-align: center;
}
  div#accordionExample {
      margin-top: 3%;
  }

.accordion .accordion-item {
  margin-bottom: 14px;
  border: none;
}
.accordion-body {
    padding: 0px 40px 10px 20px!important;
    border-radius: 0px 0px 8px 8px;
    background: var(--primary-color);
    margin-top: -5px;
}

.accordion-body p {
   color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.accordion-body ul {
  padding-left: 15px;
}

.accordion-body ul li {
   color: var(--white);
   padding: 5px 0px;
   font-size: 15px;
}

.accordion-header .accordion-button {
    box-shadow: none;
    color: var(--yellow-color);
    font-size: 18px;
    font-weight: 600;
    background: var(--primary-color);
    line-height: 120%;
    border-radius: 8px;
}
/* Default arrow */
.accordion-header .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}

/*======  End FAQ's Section  ======*/

/*======  Start Claim Section  ======*/
.claim-reports {
  background: var(--primary-color);
  padding: 40px 10px;
}

.claim-reports h3 {
  font-weight: 600;
}
a.claim-btn {
    display: flex;
    flex-wrap: wrap;
    width: 345px;
    padding: 12px 6px;
    justify-content: center;
    align-items: center;
    gap: 7px;
    border-radius: 10.652px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.23) 50%, rgba(255, 255, 255, 0.00) 50%), #2F241F;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
}
a.claim-btn span {
    color: var(--yellow-color);
    display: block;
}
/*======  End Claim Section ======*/

/* ===== Sticky bottom bar ===== */
    .sticky-bar {
      position: fixed;
      width: 100%;
      bottom: 0;
      background: var(--primary-color);
      padding: 8px 0px;
      z-index: 9999;
    }


    .sticky-text {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .sticky-bar.collapsed {
      transform: translateY(calc(100% - 0px)); /* keep button visible */
    }


    .sticky-bar h3 {
      color: var(--white);
      font-size: 28px;
      font-weight: 600;
      line-height: 30px; 
      margin-bottom: 5px;
    }

    .sticky-text h4 {
      margin-bottom: 0px!important;
    }

    .sticky-bar p {
      color: var(--white);
      font-size: 16px;
      font-weight: 500;
      line-height: 30px; 
      margin-bottom: 0;
    }

    a.getlovereport {
      display: inline-flex;
      padding: 12px 40px;
      align-items: center;
      gap: 8px;
      border-radius: 6px;
      color: var(--secondary-color);
      background: var(--yellow-color);
      font-size: 18px;
      font-weight: 600;
    }

    /* ===== Toggle button (attached to bar) ===== */
    .toggle-btn {
      position: absolute;
      right: 24px;
      top: -28px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: none;
      background: var(--yellow-color);
      color: var(--secondary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 18px;
      z-index: 10000;
      transition: transform 0.3s ease;
    }

    /* Rotate arrow when collapsed */
    .sticky-bar.collapsed .toggle-btn {
      transform: rotate(180deg);
    }


/* =====CHECKOUT PAGE CSS ===== */

.checkout-page {
    margin: 20px 0px;
}

 .namecheckout {
               margin: 50px 0px;
}
.checkoutborder {
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    padding: 50px;
}
.check-heading {
    margin-bottom: 30px;
}


.check-heading h2 {
    color: var(--primary-color);
    font-family: var(--libre-baskerville);
    font-weight: 700;
}

.check-heading p {
    color: rgba(26, 41, 61, 0.83);
    font-family: var(--open-sans);
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
}

.namesingle {
    padding: 104px 5px 0px;
}

.checkout-content {
   border-radius: 272px 272px 15.819px 15.819px;
   background: linear-gradient(180deg, #FFF 0%, #FFF6F6 100%);
   box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
   border: 1px solid transparent;
}

 .checkout-content .reportimage {
    text-align: center;
    margin-top: -104px;
}

.reportimage img {
  height: 100%;
  width: 65%;
  max-width: 100%;
}
                      
.checkouttext {
      padding: 25px;
}
                                            
.checkouttext h1 {
     color: var(--primary-color);
    font-size: 20px;
    font-weight: 700; 
    margin-bottom: 10px;                                    
}

.checkouttext h2 {
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 700;
}
              
.checkouttext h2 del{ 
    text-decoration-line: line-through;
}

.checkouttext p {
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 400;
}

p.note {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

.checkouttext ul {
    padding-left: 15px;
    margin-top: 10px;
}      

.checkouttext ul li {
    color: rgba(0, 0, 0, 0.83);
    font-size: 14px;
    margin-bottom: 8px;
}
                                     
.checkouttext ul li span {
    color: var(--primary-color);
    font-weight: 700;
}
                                 
.addonsbutton {
    margin: auto;
    display: flex;
    width: 315px;
    height: 40px;
    padding: 8px 14px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: -20px;
    border-radius: 4px;
    background: var(--primary-color);
}
 .addonsbutton input {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-color);
  border-radius: 5px;
  border: 2px solid var(--white);
}

 .addonsbutton label {
    color: var(--white);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
}                                           
               
.checkout-form { 
    padding-left: 50px;
}

.name-form .inputs {
  margin-bottom: 15px;
}

.name-form label {
  color: #1E1E1E;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 10px;
}

.name-form select {
        appearance: none;            
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
        background-repeat: no-repeat;
        background-position: right 12px center; 
        background-size: 18px;
        padding-right: 30px;  
        cursor: pointer;
}

.name-form input, select, textarea { 
  height: 55.414px;
  border-radius: 2.754px;
  border: 0.918px solid #BBBCBC;
  width: 100%;
  padding: 0 13px;
  color: rgb(73 73 73 / 94%);
  font-size: 12.852px;
  font-weight: 400;
  background-color: #fff!important;
}

.name-form select { 
 background-color: #fff!important;
}
.name-form textarea { 
  height: 100px;
    padding: 13px;
}

.name-form input, select, textarea ::placeholder {
    color: rgb(73 73 73 / 94%);
}
 
.checkbox-area {
    display: flex;
    justify-content: flex-start;
}

  .checkbox-area input {
    width: 20px;
    height: 20px;
    border-radius: 50px!important;
    margin-right: 10px;
    accent-color: var(--primary-color);
}

.checkbox-area label {
  color: #5B6676;
  font-size: 12.852px;
  line-height: 22px;
}

 #checkoutsubmit {
    border: none;
    width: 40%;
    padding: 12px;
    color: #FFF;
    margin: 0 auto;
    display: table;
    font-size: 18px;
    border-radius: 6px;
    background: var(--primary-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
}
                                
.paymenticons{
    margin-top: 50px;
}
   .paymenticons ul{
       list-style-type: none;
       padding: 0;
       display: flex;
       vertical-align: middle;
       align-items: center;
       justify-content: center;
       flex-wrap: wrap;
       gap: 20px;
}
 .paymenticons ul li
       img{
          height: 30px;
}

.addonarea {
    display: none;
}

 .info-icon {
                                            display: inline-block;
                                            width: 14px;
                                            height: 14px;
                                            border-radius: 50%;
                                            border: 1.5px solid rgba(27, 43, 65, 0.72);
                                            color: rgba(27, 43, 65, 0.72);
                                            text-align: center;
                                            font-style: normal;
                                            font-size: 10px;
                                            line-height: 12px;
                                            cursor: pointer;
                                            margin-left: 5px;
                                        }
                                        .info-icon::before {
                                            content: "!";
                                        }
/* =====CHECKOUT PAGE CSS ===== */

/* =====Start Mobile View CSS ===== */

@media (max-width: 767px) {
body{
  overflow-x: hidden;
}
 p {
        font-size: 14px!important;
        font-weight: 400!important;
    }
  h2 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
  }

  .mt-10 {
    margin-top: 50px;
}

.mt-20 {
      margin-top: 10px;
}

.mb-10 {
    margin-bottom: 20px;
}

/* ===== Star Banner Css ===== */

.banner-section {
    padding: 80px 0px;
    height: auto;
}
.banner-text {
    width: 100%;
    text-align: center;
}
.banner-text h2 {
   font-size: 35px;
  line-height: 40px;
}

.banner-text p br {
  display: none;
}
.banner-text p {
    line-height: 24px;
}
.single-btn {
    margin-top: 25px;
}

.single-btn-one {
  font-size: 16px;
  padding: 12px 20px;
}
/* ===== End Banner Css ===== */


/* =====Start Topbar Banner Css ===== */

.topbar {
    padding: 10px 5px;
}

.topbar p {
    font-size: 14px;
    line-height: 20px;
}
/* ===== End Topbar  Css ===== */


/* ===== Star what-changes Css ===== */

.what-changes p br {
  display: none;
}
.desktop-view {
  display: none!important;
}

.mobile-view {
  display: block!important;
}

img.leftastro,  img.rightastro {
 display: none;
}

.what-changes {
    overflow: hidden!important;
    padding: 30px 0px;
}

.what-changes h2 {
  padding: 0px 10px;
}

.what-changes p {
  padding: 0px 10px;
}

.what-changes .container {
    padding: 0px!important;
}
.prediction-slider .slick-list {
     padding: 50px 0px 20px;
  }

/* ===== End what-changes Css ===== */

.claim-reports {
  padding: 20px 0px;
}

/* ===== Start Your Starts Bar ===== */
    .your-stars-text h3 {
      font-size: 20px;
      line-height: 30px;
      margin-bottom: 20px;
      text-align: center;
    }

    a.reveal-cta {  
      display: inline-block;
      text-align: center;
      width: 100%;
    }

/* ===== End Your Starts Bar ===== */

/* ===== Start What Reports ===== */

.what-reports { 
  padding: 30px 0px;
}

.what-reports h2 br {
  display: block;
}
.what-reports ul li {
  font-size: 14px;
  margin: 10px 0px;
  font-weight: 400;
}
/* ===== End What Reports ===== */

/* ===== Start What Make Css ===== */

.what-makes {
  padding: 20px 0px;
}

.reliable-section { 
  padding-bottom: 30px;
  margin-top: 30px;
}
.what-box {
  height: 190px;
  padding: 15px 5px;
}

.imgicon {
    margin-bottom: 15px;
}
.imgicon img {
    width: 50px;
}
.what-box h3 {
    font-size: 14px;
    font-weight: 600;
}
.what-box p {
  font-size: 12px!important;
}
/* ===== End What Make Css ===== */

/* ===== Start Aabout Diva Section Css ===== */
.about-diva-section {
    padding: 10px 0px 40px;
}

.diva-box {
  padding: 30px;
}

.diva-box h2 {
    font-size: 28px;
}
.diva-box p {
    width: 100%;
    margin: 10px 0px 30px;
    line-height: 20px;
}

.course-image {
    display: none;
}

.diva-box img.diva-maam {
  width: 100%;
}
.diva-box span img {
    width: 35%;
}

.guide-btn a {
    font-size: 16px;
    padding: 12px 20px;
}
/* ===== End Aabout Diva Section Css ===== */

/* ===== Start How Different Css ===== */

.how-different {
  padding: 20px 0px;
}
.how-different h2 {
    font-size: 28px;
    font-weight: 700;
}

.claim-report {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10%;
}
a.bg-color
{
  font-size: 16px;
  padding: 12px 20px;
}
/* ===== End How Different Css ===== */

/* ===== Start Video Section Css ===== */
 .video-section {
      padding: 50px 0px 0px;
    }

  .video-section p {
    margin-bottom: 10px;
    line-height: 22px;
  }

    .video-card {
      border-radius: 12px;
      padding: 8px;
    }

    .video-wrapper {
      border-radius: 8px;
    }

    .video-wrapper iframe {
      border-radius: 8px;
    }

/* ===== End Video Section Css ===== */

/* ===== Start Testimonial Section Css ===== */
  .testimonial-section {
    padding: 50px 0px 20px;
    overflow: hidden;
  }

  .testimonial-section .slick-dots {
    margin-bottom: 0px!important;
  }

  .testimonial-slider {
    margin-top: 10px;
}

.testimonial-card {
  padding: 20px;
}

p.review {
  font-size: 12px!important;
  margin-bottom: 15px;
}

.testprofile h3 {
    font-size: 16px;
}

.testprofile span {
    font-size: 12px;
}
/* ===== End Testimonial Section Css===== */

/* ===== Start Claim Css ===== */

    a.claim-btn {
        width: 70%;
        display: table;
        margin: auto;
        text-align: center;
        font-weight: 600;
        font-size: 16px;
    }
/* ===== End Claim Css ===== */

/* ===== End FAQ's Css ===== */
.FAQs {
    padding: 0px 0px 50px;
}
/* ===== End FAQ's Css ===== */
/* ===== Start Sticky Bar Css ===== */

 .sticky-bar h3 {
        font-size: 15px;
        line-height: 20px;
        font-weight: 600;
      }

      .sticky-bar h4 {  
         font-size: 15px;
      }
      .sticky-bar p {
        font-size: 14px;
        line-height: 24px;
      }
      a.getlovereport {
        font-size: 11px;
        padding: 8px 10px;
      }
  .sticky-bar .text-end {
    text-align: left!important;
    margin-top: 5px;
  }

  .btn-box {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

  .btn-box h4 {
    display: block;
  }

/* ===== End Sticky Bar Css ===== */

 /* ===== Start Checkout Section ===== */

      .namesingle {
            padding-bottom: 50px!important;
        }

      .checkoutborder {
        padding: 50px 10px!important;
      }
      .nameaddons {
        display: none;
      }

      .addonarea {
    display: block;
}

      .checkout-form {
          padding: 10px!important;
      }

      .check-heading h2 {
            font-size: 25px;
        }

        .paymenticons ul li img {
              height: 25px!important;
            }

         #checkoutsubmit { 
            width: 100%;
        }

        .paymenticons ul {
          gap: 15px;
        }
    /* ===== End Checkout Section ===== */

}


/* =====Start Tab View CSS ===== */

@media (min-width: 768px) and (max-width: 1080px) {

h2 {
    font-size: 35px;
    line-height: 50px;
}
br {
  display: none;
}

.mb-10 {
    margin-bottom: 30px;
}

/* ===== Star Banner Css ===== */

.banner-section {
    padding: 80px 0px 100px 0px;
    height: auto;
}
.banner-text {
    width: 100%;
}
/* ===== End Banner Css ===== */

/* ===== Star what-changes Css ===== */

.desktop-view {
  display: none!important;
}

.mobile-view {
  display: block!important;
}

img.leftastro,  img.rightastro {
 display: none;
}

.prediction-slider .slick-list {
     padding: 50px 0px 20px;
  }

  
.prediction-card img {
    height: 400px;
}

.mt-1 {
  margin-top: -20px!important;
}

.mt-2 {
  margin-top: 20px!important;
}

.mt-3 {
  margin-top: -30px!important;
}

.mt-4 {
  margin-top: 20px!important;
}

.mt-5 {
  margin-top: -20px!important;
}
/* ===== End what-changes Css ===== */

/* ===== Start Aabout Diva Section Css ===== */
.about-diva-section {
    padding-top: 20px;
}


.diva-box p {
  width: 100%;
}

.astro-wapper {
    overflow: visible;
    margin-top: 100px;
}

.diva-box img.diva-maam {
  width: 100%;
}
/* ===== End Aabout Diva Section Css ===== */
     
/* ===== Start How Different Css ===== */

.how-different h2 {
    font-size: 45px;
    line-height: 55px;
}

/* ===== End How Different Css ===== */

/* === Start Testimonial Section==== */
    .testimonial-section {
        padding: 50px 0px;
    }

/* === End Testimonial Section==== */

/* ===== Start Claim Css ===== */

.claim-reports .text-end {
  margin-top: 25px!important;
  display: flex;
  justify-content: center;
}
/* ===== End Claim Css ===== */


/* ===== End FAQ's Css ===== */
.FAQs {
    padding: 0px 0px 100px;
}
/* ===== End FAQ's Css ===== */

/* ===== Start Checkout ===== */

.checkout-form {
    padding-left: 10px;
}

.nameaddons {
        display: none;
      }

  .addonarea {
    display: block;
}

 #checkoutsubmit { 
     width: 100%;
}

/* ===== End Checkout ===== */

}
