.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5vw 4vw;

  flex-wrap: wrap;
}

.hero-section .content {
  max-width: 50%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  flex: 1 1 300px;
}

.hero-section .content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  word-wrap: break-word;
}

.hero-section .content p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

.hero-section .content .btn-primary {
  background-color: blue;
  width: 250px;
  max-width: 100%;
  font-size: 1.2rem;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  height: auto;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  display: inline-block;
  margin: 0;
}

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

.hero-section .image1 {
  max-width: 40%;
  height: auto;
  border-radius: 8px;
  margin: 0 auto;
  flex: 1 1 300px;
}

/* Consolidated Paragraph Styles for all screen sizes */
.hero-section .content p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-section {
    padding: 4vw 2vw;
  }

  .hero-section .content h1 {
    font-size: 2rem;
  }

  .hero-section .content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .hero-section .image1 {
    max-width: 50%;
  }

  .hero-section .content .btn-primary {
    font-size: 1rem;
    padding: 8px 15px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-section .content {
    max-width: 100%;
    padding: 10px;
  }

  .hero-section .content h1 {
    font-size: 1.8rem;
  }

  .hero-section .content p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .hero-section .image1 {
    max-width: 80%;
  }

  .hero-section .content .btn-primary {
    width: 40%;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .hero-section .content h1 {
    font-size: 1.5rem;
  }

  .hero-section .content p {
    font-size: 0.8rem;
  }

  .hero-section .content .btn-primary {
    font-size: 0.9rem;
    padding: 8px 15px;
  }

  .hero-section .image1 {
    max-width: 90%;
  }
}




body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

.button-container {
  margin: 20px 0;
}

button {
  padding: 10px 15px;
  margin: 5px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}
.main-container {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  justify-content: center; /* Center-align cards */
  gap: 20px; /* Space between cards */

  align-items: center; /* Vertically align items */

  padding: 5vw 7vw; /* Responsive padding */
  background-color: #f9f9f9; /* Light background color */

}

.card {
  display: flex;
  flex-direction: column; /* Stack content vertically */
  justify-content: space-between; /* Space out content */
  width: 600px; /* Set the width of the card to 600px */
  max-width: 600px; /* Limit the max width to 600px */
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), /* General shadow */
              0 4px 10px rgba(0, 0, 0, 0.5); /* Darker shadow for bottom */
  padding: 20px;
  background-color: #fff;
  box-sizing: border-box; /* Include padding in width */
}



.card-content {
  display: flex; /* Arrange text and image horizontally */
  align-items: center; /* Align vertically */
  justify-content: space-between; /* Space between text and image */
  gap: 15px; /* Spacing between text and image */
}


.text-section {
  flex: 2; /* Take up 2/3 of the space */
}

.image-section {
  flex: 1; /* Take up 1/3 of the space */
  display: flex;
  justify-content: center;
  align-items: center;

}

.image-section img {
  max-width: 130px; 
  height: 140px;/* Adjust size of the image */
  height: auto; /* Maintain aspect ratio */
  border-radius: 20px;
}

.buy-btn {
  align-self: center; /* Center the button in the card */
  margin-top: 15px;
  padding: 10px 20px;
  background-color: navy;
  color: white;
  font-weight: bold;
  font-family: 'Times New Roman', Times, serif;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  
}
h5{
  color:#0056b3;
  font-weight: bold;
}

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

@media (max-width: 768px) {
  .card {
    flex: 1 1 100%; /* Full width for smaller screens */
    max-width: 70%; /* Ensure no overflow */
  }

  .card-content {
    flex-direction: column; /* Stack text and image vertically */
    align-items: center; /* Center-align for smaller screens */
    text-align: center;
    font-size: auto; /* Center-align text */
  }

  .text-section {
    margin-bottom: 10px; /* Space between text and image */
  }
}

@media (max-width: 480px) {
  .text-section h3 {
    font-size: 1.2rem; /* Smaller heading size */
  }

  .text-section p {
    font-size: 0.9rem; /* Smaller paragraph size */
  }

  .buy-btn {
    font-size: 0.9rem; /* Smaller button text */
    padding: 8px 15px; /* Reduced padding */
  }
}





.container {
  display: flex;
  flex-direction: row; /* Arrange children horizontally */
  align-items: center;
  justify-content: space-between; /* Space between items for better alignment */
  background-color: #F3F3F3;
  padding: 10px 20px; /* Reduced padding to decrease height */
  width: 90%; /* Use percentage width for responsiveness */
  max-width: 1200px; /* Limit maximum width */
  margin: 20px auto; /* Center the container */
  box-sizing: border-box;
  text-align: left;
  border-radius: 40px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Light black-grey shadow */
  transition: box-shadow 0.3s ease; /* Smooth hover effect */
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  min-height: 40px; /* Optional: Set a minimum height for consistency */
}


.container:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.proposal-section {
  flex: 1; /* Allow section to grow and shrink */
  min-width: 280px; /* Ensure a minimum width for smaller screens */
  text-align: left;
  padding: 10px; /* Add padding for better spacing */
}

.proposal-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.proposal-section p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
}

.proposal-section button {
  background-color: #000;
  height: 50px;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 30px;
  transition: background-color 0.3s;
}

.proposal-section button:hover {
  background-color: #333;
}

.image-container {
  flex: 1; /* Allow image to grow and shrink */
  min-width: 280px; /* Ensure a minimum width for smaller screens */
  text-align: center; /* Center the image */
  margin-top: 20px; /* Add spacing between sections on smaller screens */
}

.image-container img {
  max-width: 100%; /* Make the image responsive */
  height: auto;
  border-radius: 20px; /* Optional: Add rounded corners to the image */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .container {
      flex-direction: column; /* Stack items vertically */
      padding: 15px; /* Adjust padding for smaller screens */
  }

  .proposal-section, .image-container {
      margin: 10px 0; /* Add vertical spacing between sections */
  }

  .proposal-section h2 {
      font-size: 1.5rem; /* Adjust heading size for smaller screens */
  }

  .proposal-section p {
      font-size: 0.9rem; /* Adjust paragraph size for smaller screens */
  }

  .proposal-section button {
      font-size: 0.9rem; /* Adjust button size */
      height: 45px; /* Adjust button height */
  }
}

@media (max-width: 480px) {
  .proposal-section h2 {
      font-size: 1.3rem; /* Further reduce heading size */
  }

  .proposal-section p {
      font-size: 0.8rem; /* Further reduce paragraph size */
  }

  .proposal-section button {
      font-size: 0.8rem; /* Further reduce button size */
      height: 40px; /* Adjust button height */
  }
}

/* General Styling */

/* Container for Progress Section */
.progress-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 2rem 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 70%; /* Adjusted for responsiveness */

  box-sizing: border-box;
  margin: 2rem auto; /* Center align with auto margin */
}

/* Left Side: Heading */
.progress-heading h2 {
  font-size: 2rem;
  color: #0066ff;
  background-color:	#F0F8FF;
  margin: 0;
}

/* Right Side: Paragraph */
.progress-paragraph p {
  font-weight: bold;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  text-align: justify;
  margin: 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .progress-container {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .progress-heading h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .progress-paragraph p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .progress-heading h2 {
    font-size: 1.5rem;
  }

  .progress-paragraph p {
    font-size: 0.8rem;
  }
}

/* Container for Steps */
.container1 {
  width: 90%; /* Adjusted for smaller screens */
  margin: 0 auto; /* Center align */
}

.step {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: white;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  background-color: #f1f1f1;
  transition: background-color 0.3s ease;
}

.step-header h2 {
  font-size: 1rem; /* Use relative size for adaptability */
  color: #333;
  margin: 0;
}

.step-header span {
  font-size: 1.2rem; /* Use relative size for adaptability */
  font-weight: bold;
  color: #0066ff;
  margin-right: 10px;
}

.step-header .toggle-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #0066ff;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.step-content {
  display: none;
  padding: 1rem;
  font-size: 0.9rem;
  color: #666;
  background-color: #F0F8FF;
 
  color: black;
  line-height: 1.6;
}

.step.open .step-header {
  background-color: #CDDDFF;
    color: white;
}

.step.open .toggle-btn {
  transform: rotate(45deg);
}

.step.open .step-content {
  display: block;
}

/* Media Queries for Steps */
@media (max-width: 768px) {
  .step-header h2 {
    font-size: 0.9rem;
  }

  .step-header span {
    font-size: 1rem;
  }

  .step-header .toggle-btn {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.9rem;
  }

  .step-content {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .step-header h2 {
    font-size: 0.8rem;
  }

  .step-header span {
    font-size: 0.9rem;
  }

  .step-header .toggle-btn {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.8rem;
  }

  .step-content {
    font-size: 0.7rem;
  }
}



/* General styles */
.slider-container {
  width: 90%;
  margin: 100px auto; /* Center align on smaller screens */
  max-width: 1000px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  background: linear-gradient(145deg, #1e293b, #0f172a);
}

.slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-box {
  min-width: 100%;
  box-sizing: border-box;
  padding: 40px;
  text-align: center;
  background: linear-gradient(145deg, #CDDDFF, #F0F8FF);
  border-radius: 20px;
  color: #e2e8f0;
  transform: scale(0.9);
  opacity: 0.8;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.testimonial-box.active {
  transform: scale(1);
  opacity: 1;
}

.testimonial-box blockquote {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: black;
  position: relative;
}

.testimonial-box blockquote:before,
.testimonial-box blockquote:after {
  content: '"';
  font-size: 2.5rem;
  color: black;
  position: absolute;
}

.testimonial-box blockquote:before {
  left: -15px;
  top: -10px;
}

.testimonial-box blockquote:after {
  right: -15px;
  bottom: -10px;
}

.testimonial-box h4 {
  margin: 10px 0 5px;
  font-size: 1.5rem;
  color: navy;
  letter-spacing: 1px;
}

.testimonial-box p {
  margin: 0;
  font-size: 0.95rem;
  color: darkred;
  font-weight: bold;
}

.arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.arrow {
  background: linear-gradient(145deg, #4f46e5, #3b82f6);
  border: none;
  color: white;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  transition: background 0.3s ease, transform 0.3s ease;
}

.arrow:hover {
  background: linear-gradient(145deg, #3b82f6, #6366f1);
  transform: scale(1.1);
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #4b5563;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.dot.active {
  background-color: #6366f1;
  transform: scale(1.3);
}

.dot:hover {
  background-color: #a5b4fc;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .slider-container {
    width: 95%;
    margin: 50px auto;
  }

  .testimonial-box {
    padding: 20px;
  }

  .testimonial-box blockquote {
    font-size: 1rem;
  }

  .testimonial-box h4 {
    font-size: 1.2rem;
  }

  .testimonial-box p {
    font-size: 0.85rem;
  }

  .arrow {
    padding: 10px;
    font-size: 1.2rem;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

@media screen and (max-width: 480px) {
  .slider-container {
    width: 100%;
    margin: 10px auto;
  }

  .testimonial-box {
    padding: 15px;
  }

  .testimonial-box blockquote {
    font-size: 0.9rem;
  }

  .testimonial-box h4 {
    font-size: 1rem;
  }

  .testimonial-box p {
    font-size: 0.8rem;
  }

  .arrow {
    padding: 8px;
    font-size: 1rem;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}





/**************FOOTER*************************/
.footer {
  background-color: #007bff;
  color: white;
  padding: 40px 20px;
}
.footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer .column {
  flex: 1;
  min-width: 150px;
  margin: 10px 0;
}
.footer h4 {
  margin-bottom: 15px;
}
.footer ul {
  list-style-type: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 10px;
}

.footer hr{
  margin: 1.5em;
}

.column ul li a{
  text-decoration: none;
  color: #fff;
}

.footerbottom{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  gap: 2em;
  margin: 0 auto;
  align-items: center;
}

.footer .social {
  display: flex;
  justify-content: center;
  margin-right: 8em;
}

.footer .social a{
  text-decoration: none;
}

.footer .social i {
  color: white;
  margin: 0 10px;
  font-size: 1.5em;
}

.footer .copyright {
  font-size: 14px;
}
@media (max-width: 768px) {
  .footer .container {
      flex-direction: column;
      align-items: center;
  }
  .footer .column {
      text-align: center;
  }

  .footerbottom{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .footer .social {
    margin-right: 0;
  }
}