 :root {
            --primary-color: #ff4500; 
            --secondary-color: #dc9605; 
            --dark-text: #212529;
            --light-bg: #fff7e6;
            --white: #ffffff;
            --accent-green: #28a745;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
             font-family: 'Oswald', sans-serif;
            font-weight: 700;
        }



 .container {
            max-width: 1000px;
            margin: 0 auto;
           
           
        }




        .hero-section {
            background: linear-gradient(135deg, #fff 0%, #63ffed40 100%);
            padding: 20px 0;
            text-align: center;
            /* border-bottom: 5px solid var(--primary-color); */
        }

        .hero-headline {
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .hero-title {
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

      
        .btn-cta {
            background-color: var(--primary-color);
            color: white;
            font-weight: 700;
            padding: 15px 40px;
            border-radius: 50px;
            text-transform: uppercase;
            font-size: 1.1rem;
            border: none;
            box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
            transition: all 0.3s ease;
        }

        .btn-cta:hover {
            transform: scale(1.05);
            background-color: #e03e00;
            color: white;
            box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
        }

     
        .section-padding {
            padding: 60px 0;
        }

        .highlight-box {
            background-color: var(--light-bg);
            /* border-left: 5px solid var(--secondary-color); */
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
        }

        .check-list {
            list-style: none;
            padding: 0;
        }

        .check-list li {
            margin-bottom: 5px;
            font-size: 1.1rem;
            /* display: flex;
            align-items: flex-start; */
        }

        .check-list i {
            color: var(--accent-green);
            margin-right: 15px;
            font-size: 1.3rem;
            margin-top: 3px;
        }

        
        .feature-card {
            background: white;
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 30px;
            /* height: 100%; */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-bottom: 50px;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            /* border-color: var(--secondary-color); */
        }

        .feature-icon-box {
            width: 70px;
            height: 70px;
            background-color: rgba(13, 110, 253, 0.1);
            color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        
        .plr-section {
            /* background-color: #e7f1ff;
            border-radius: 15px;
            padding: 40px; */
            margin: 45px 0;
        }

      
        .logic-box {
           background: #fff;
  color: black;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
        }

        .guarantee-badge {
            font-size: 4rem;
            color: #ffc107;
        }

 
        .float-anim {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

       
        @media (max-width: 768px) {
            .hero-title { font-size: 1.8rem; }
            .hero-headline { font-size: 1.2rem; }
        }




        .button-63 {
  /* align-items: center; */
  background-image: linear-gradient(144deg,#BF8726, #BA9846 50%,#D29F3B);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-family: Phantomsans, sans-serif;
  font-size: 20px;
  /* justify-content: center; */
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 19px 24px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  /* white-space: nowrap; */
  cursor: pointer;
}

.button-63:active,
.button-63:hover {
  outline: 0;
}

@media (min-width: 768px) {
  .button-63 {
    font-size: 24px;
    min-width: 196px;
  }
}




.text-primary {
  --bs-text-opacity: 1;
  color: rgb(220, 150, 5) !important;
}






.visible-xs, .visible-sm, .visible-md, .visible-lg {
	display: none !important
}

@media (max-width:767px) {
.visible-xs {
	display: block !important
}

}




@media (max-width:767px) {
.hidden-xs {
	display: none !important
}
}