*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

main {
  width: 100%;
  min-height: 100vh;
} 

.navbar{
  background-color: rgb(3, 93, 121);
  color: white;
  z-index: 999;
}
.brand-logo {
  width: 62px;
  height: auto;
  /* background-color: white; */
}

.ordernowbtn {
  background-color: #198754; /* Bootstrap green */
  color: #ffffff !important;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ordernowbtn:hover {
  background-color: #157347; /* Dark green */
  color: #ffffff;
}
.section-one{
  background: linear-gradient(to right, #93e3e9d3, #e7f5ef);
}
.section-two {
  text-align: center;
  font-weight: bold;
  background-color: rgb(1, 63, 49);
  color: white;
  margin: 0;
  font-size: 43px !important ; /* large but reasonable */
  padding: 20px 0; /* vertical padding */
}


/* Ensuring the text and image are aligned properly */
section .container .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* For the image */
section img {
 /* To ensure the image doesn't get too large */
  object-fit: contain; /* Makes sure the image fits well */
}

/* Text styling */
section h2 {
  color: #333; /* You can change the color */
}

section p {
  color: #555;
}

/* Optional: If you want some spacing between the image and the content */
section .container {
  padding: 20px;
}

.benefit-badge {
  width: 40px;
  height: 40px;
  background-color: #198754; /* Bootstrap green */
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.what-is-primalblast {
  background-color: #ffffff;
}

.primalblast-img {
  width:440px;
  
}
.discount-img{
   max-width: 500px;
  border-radius: 30px;

}
.guarantee-img{
   max-width: 380px;
  border-radius: 30px;
  box-shadow: 5px  4px 8px rgb(117, 101, 101);

}

/* =============why choose us */
.whychooseimg{
  max-height: 120px;
}
/* ================= GLOBAL CARD DESIGN ================= */
.card {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Card top gradient */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #1f4037, #99f2c8);
}

/* Hover animation */
.transform-hover:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Card Typography */
.card h3 {
  font-weight: 700;
  font-size: 1.4rem;
  color: #1f4037;
}

.card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* ================= PRICING ================= */
.pricing-section {
  background: linear-gradient(135deg, #e8f5ec 0%, #ffffff 70%);
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
  transform: scale(1.08);
  border: 3px solid #28c76f;
  z-index: 2;
}

/* Pricing Elements */
.product-img {
  max-height: 250px;
  margin-bottom: 20px;
}

.price-title {
  font-size: 40px;
  font-weight: 800;
}

.price-sub {
  font-size: 18px;
  font-weight: 600;
  color: #666;
}



.shipping {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #444;
}

.shipping.free {
  color: #1f9d55;
}

/* Buy Button */
.buy-btn {
  background: linear-gradient(135deg, #b86507, #c2b60d);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  padding: 14px 40px;
  border-radius: 10px;
  border: none;
  transition: 0.3s;
}

.buy-btn:hover {
  background: linear-gradient(135deg, #148043, #1aa85a);
  transform: scale(1.05);
}

/* Badges */
.popular-badge,
.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #28c76f;
  color: #fff;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
}

.plan-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f1f3f5;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}


.footer-section {
  background-color: rgb(3, 93, 121);
  color: white;
  border-top: 1px solid #eee;
  border: 1px solid red;

}

/* ================ TESTIMONIAL========================= */
.testimonial{
  border-radius:20px ;
  background-color: rgb(108, 172, 197);
  padding: 30px;
}
/* Mobile adjustments */

@media (max-width: 768px){
  .popular-card{
    transform: none;
  }

  .pricing-card{
    margin-bottom: 30px;
  }

  .price-circle{
    margin-top: -30px;
  }
   .popular-badge img{
    width: 90px;
  }
}
@media (max-width: 576px){
  .bottle-img{
    max-height: 170px;
  }

  .card-img{
    height: 200px;
  }
  
}
