body {
  font-family: "Poppins", sans-serif;
}

.logo{
  max-width: 220px;
}

.main-bar{
  padding-top:0px;
  padding-bottom:0px;
}

.off{
  background: #d02121;
  padding: 2px 10px 2px 10px;
  font-size: 11px;
  color:#fff;
  border-radius: 5px;
}

.gst{
  font-size: 12px;
  color:#000;
}


.inner-header {
    position: relative;
    padding: 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    color: #555;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-title {
    font-size: 32px;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

.policy-section{
  padding-top:50px;
  padding-bottom:50px;
}

.policy-section p{
  font-size:14px;
}

.policy-section li{
  font-size:14px;
}

.policy-section h3{
  font-size:18px;
}


.header {
  background-image: url("../images/header-bg.jpg");
  background-position: center center;
  background-size: cover;
  color: #fff;
  padding: 10px 0;
  min-height: 500px;
}
.header h1 {
  font-family: "Poppins", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
}
.header p {
  font-size: 1.1rem;
  font-weight: 400;
}

.header-featured-text {
  padding-right: 150px;
}

/* Navigation CSS Starts */
.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-left: 20px;
}

.nav-link:hover {
  color: #cf1e47;
}

.signup-btn {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  background-color: #cf1e47;
  border-color: #cf1e47;
  border-radius: 6px;
}

.signup-btn:hover {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.signup-btn2 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: #000;
  border-color: #000;
  border-radius: 6px;
  padding: 10px 25px 10px 25px;
}

.signup-btn2:hover {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

.signup-btn3 {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  background-color: #fff;
  border-color: #fff;
  border-radius: 6px;
  padding: 10px 25px 10px 25px;
}

.signup-btn3:hover {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.signup-btn4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: #1150BA;
  border-color: #1150BA;
  border-radius: 6px;
  padding: 10px 25px 10px 25px;
}

.signup-btn4:hover {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

@media (max-width: 768px) {
  .logo{
    max-width: 170px;
  }
  .signup-btn2 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background-color: #000;
    border-color: #000;
    border-radius: 6px;
    padding: 8px 15px 8px 15px;
    margin: 5px;
  }

  .signup-btn2:hover {
    font-weight: 600;
    color: #000;
    background-color: #fff;
    border-color: #fff;
  }

  .signup-btn3 {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    background-color: #fff;
    border-color: #fff;
    border-radius: 6px;
    padding: 8px 15px 8px 15px;
    margin: 5px;
  }

  .signup-btn3:hover {
    font-weight: 600;
    color: #fff;
    background-color: #000;
    border-color: #000;
  }
}

/* Container for How It Works Section */
.how-it-works {
  padding: 50px 0;
}

.section-heading {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #202124;
  font-weight: 600;
}

/* Steps Container */
.how-it-works-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Step Block Styling */
.step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #f6f6f7;
  padding-top: 15px;
  padding-bottom: 5px;
  border-bottom: 3px solid #1150BA;
  border-radius: 12px;
}

/* Icons, Headings, and Subheadings Styling */
.step-icon {
  font-size: 1.5rem;
  color: white; /* Icon color */
  background-color: #cf1e47; /* Circle background color */
  padding: 10px; /* Space inside the circle */
  border-radius: 50%; /* Makes it a circle */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px; /* Circle width */
  height: 70px; /* Circle height */
  margin-bottom: 10px; /* Space below the icon */
}

.step-heading {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #000;
}

.step-subheading {
  font-size: 1rem;
  color: #666;
}

/* Arrow Styling */
.arrow {
  font-size: 2.5rem;
  color: #000;
  padding: 0 15px;
}

/* Mobile View */
@media (max-width: 768px) {
  .how-it-works-steps {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }


  .step {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f6f6f7;
    padding-top: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #1150BA;
    border-radius: 12px;
    width: 90%;
    margin-bottom: 10px;
  }

  /* Icons, Headings, and Subheadings Styling */
  .step-icon {
    font-size: 1.5rem;
    color: white; /* Icon color */
    background-color: #cf1e47; /* Circle background color */
    padding: 20px; /* Space inside the circle */
    border-radius: 50%; /* Makes it a circle */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px; /* Circle width */
    height: 50px; /* Circle height */
    margin-bottom: 10px; /* Space below the icon */
  }

  /* Arrow Styling for Mobile - pointing downward */
  .arrow {
    transform: rotate(90deg);
    margin: 5px 0;
  }
}

.why-choose-section {
  background: #202124;
}

.why-choose-section .section-heading {
  color: #fff;
}

.why-choose-section p {
  color: #fff;
}
/* Section Headings & Para Ends */

.how-it-works,
.why-buy,
.faq,
.lead-samples,
.customer-reviews {
  padding: 50px 0;
}

.lead-samples{
   background:#1353BD;
}

.lead-samples .section-heading {
  color: #fff;
}

.sticky-top {
  background-color: #fff;
}
.footer {
  background-color: #202124;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer .footer-nav {
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}
.footer-nav a:hover {
  text-decoration: underline;
}

.poweredby{
  color:#01B277;
  text-decoration: none;
  font-weight: 700;
  }


@media (max-width: 768px) {
  .header {
    background-image: url("../images/header-bg.jpg");
    background-position: left center;
    background-size: cover;
    color: #fff;
    padding: 50px 0;
    min-height: 500px;
  }
  .header h1 {
    font-size: 2rem;
  }
  .header p {
    font-size: 1rem;
  }
  .header-featured-text {
    padding: 10px;
  }
  .how-it-works,
  .why-buy,
  .faq,
  .lead-samples,
  .customer-reviews {
    padding: 30px 0;
  }
  .footer .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-nav a {
    margin: 5px 0;
  }

  .navbar-toggler-icon {
    color: #000;
  }

  .navbar-collapse {
    position: absolute;
    top: 70px; /* Adjust this as needed based on your header height */
    left: 0;
    right: 0;
    padding: 20px 20px 20px 20px;
    background-color: #fff;
    z-index: 1000;
  }
  .nav-link {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-left: 0;
  }
  .signup-btn {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    background-color: #cf1e47;
    border-color: #cf1e47;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
  }

  
  .signup-btn:hover {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: #000;
    border-color: #000;
  }
}
.faq .container {
  width: 70%;
  margin: 0 auto; /* Center the container */
}

/* Center the section heading only */
.faq .section-heading {
  text-align: center;
}

/* Left align the questions and answers (accordion items) */
.accordion-item,
.accordion-button,
.accordion-body {
  text-align: left; /* Left-align the content */
}

/* Add spacing between each accordion item */
.accordion-item {
  margin-bottom: 15px; /* Adjust this value for more or less spacing */
}

/* Styling for the accordion header button */
.accordion-button {
  background-color: #f8f9fa; /* Default background */
  color: #333; /* Default text color */
  border: none; /* Remove border */
  font-weight: bold; /* Bold text */
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for background and text color */
  position: relative; /* Allows us to position the custom arrow */
  background-image: none !important; /* Completely remove the default background arrow */
  box-shadow: none !important; /* Remove any default box-shadow Bootstrap may add */
}

/* Remove default Bootstrap accordion arrow completely */
.accordion-button::after {
  content: ""; /* Remove the default arrow */
  background-image: none !important; /* Ensure Bootstrap's background image is overridden */
  box-shadow: none !important; /* Remove any default box-shadow */
}

/* Add custom arrow using Unicode for down arrow */
.accordion-button::after {
  content: "\25bc"; /* Unicode for down arrow */
  font-size: 1rem; /* Adjust the size of the arrow */
  color: #333; /* Default color for the arrow */
  position: absolute; /* Position the arrow */
  right: 15px; /* Move it to the right */
  top: 50%; /* Vertically center it */
  transform: translateY(-50%); /* Align it perfectly vertically */
  transition: transform 0.2s ease, color 0.2s ease; /* Smooth transition for the arrow */
}

/* Styling for active (expanded) accordion button */
.accordion-button:not(.collapsed) {
  background-color: #202124; /* Black background for active button */
  color: white; /* White text on black background */
}

/* Change arrow direction and color when active (expanded) */
.accordion-button:not(.collapsed)::after {
  content: "\25b2"; /* Unicode for up arrow */
  color: red; /* Red arrow when active */
  transform: translateY(-50%) rotate(0deg); /* Arrow points upwards */
}

/* Accordion button when hovered */
.accordion-button:hover {
  background-color: #333; /* Dark gray background on hover */
  color: white; /* White text on hover */
}

.accordion-button:hover::after {
  color: white; /* Change arrow color to white on hover */
}

/* Optional: Accordion body styling */
.accordion-body {
  background-color: #f1f1f1; /* Light background color for content */
  color: #333; /* Text color */
  padding: 15px;
  border-top: 1px solid #ccc;
}

/* Remove blue focus outline when button is clicked */
button:focus,
.accordion-button:focus {
  outline: none;
  box-shadow: none;
}
@media (max-width: 768px) {
  .faq .container {
    width: 100%; /* Full width on mobile */
    padding-left: 15px; /* Add padding for mobile */
    padding-right: 15px; /* Add padding for mobile */
  }
}

.facts-counters {
    padding: 50px 0;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.counter-box {
    margin-bottom: 30px;
}

.counter-box h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 1.2rem;
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .facts-counters .col-md-4 {
        margin-bottom: 20px;
    }
}

/* Contact Us Section */
.contact-us {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.contact-info h2, .contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

/* Info Item Styling */
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon {
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
}

.info-text h4 {
    font-size: 1.1rem;
    color: #007bff;
    margin: 0;
}

.info-text p {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

/* Contact Form Styling */
.contact-form {
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form .form-group label {
    font-weight: bold;
    font-size: 0.9rem;
    color: #333;
}

.contact-form .form-control {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form .btn-primary {
    background-color: #007bff;
    border: none;
  }

  /* Pricing Section */
.pricing-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.pricing-table {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-table:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 15px;
}

.regular-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.sale-price {
    margin-top:30px;
    font-size: 1.25rem;
    color: #28a745;
    font-weight: bold;
    line-height: 1.25rem;
}

.features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.features li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pricing-table {
        margin-bottom: 20px;
    }
}


/*Pricing Table css */
/* Pricing Table Styling */
.pricing-table {
    background-color: rgba(1, 1, 0, 0.1); /* Box background color */
    border: none;
    border-radius: 8px;
    text-align: center;
    padding: 60px 15px 60px; /* Add padding for header and footer */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* To position header and footer */
    overflow: hidden; /* Prevent overflow from header and footer */
}

.pricing-table:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Plan Header */
.plan-header {
    background-color: #165AC5; /* Yellow strip background */
    color: #fff; /* Red text */
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0; /* Full width */
    border-radius: 8px 8px 0 0; /* Rounded top corners */
    z-index: 1;
}

/* Regular Price */
.regular-price {
    font-size: 1.3rem;
    font-weight: 500;
    color: #000;
    text-decoration: line-through;
    margin-top: 20px; /* Spacing from header */
}

/* Sale Price */
.sale-price {
    font-size: 3.0rem; /* Slightly larger font */
    font-weight: 700;
    color: #CF1D47; /* White text */
    margin-bottom: 15px;
}

/* Features List */
.features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.features li {
    font-size: 0.9rem;
    color: #000; /* White text for features */
    margin-bottom: 8px;
}

/* Call-to-Action (CTA) Footer */
.cta {
    background-color: #000; /* Red background */
    color: #fff; /* White text */
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0; /* Full width */
    border-radius: 0 0 8px 8px; /* Rounded bottom corners */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #b51a3c; /* Darker red on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pricing-table {
        margin-bottom: 20px;
    }
}

.video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
    }

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