
/* Main Section Styling */
.cta-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px;
  min-height: 500px; /* Adjust height as necessary */
  overflow: hidden; /* Prevent elements from overflowing */
}

/* Background Image Styling */
.background-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}



/* Card Container */
.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Ensures the container spans the full width */
  padding: 20px; /* Adds spacing around the card */
/* 	position:relative; */
}

/* Card Banner */
.card-banner {
  position: relative; /* Ensures proper stacking of content inside the card */
  background-color: white;
  border-radius: 74px 0 75px 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 10px;
  width: 50%; /* Adjusts card width */
  max-width: 600px; /* Prevents card from becoming too wide */
  display: flex;
  border: 1px solid #ddd; /* Adds a light border */
/* 	 top: 200px;
 */

  
  

}

/* Image Styling (Inside Card) */
.card-image {
  width: 100%; /* Makes the image span the width of the card */
  height: auto; /* Maintains aspect ratio */
  border-radius: 8px 8px 0 0; /* Adds rounded corners only at the top */
  margin-bottom: 15px; /* Adds spacing below the image */
  object-fit: cover; /* Ensures the image fits neatly */
	display:flex;
	align-items:center;
	
}

/* Card Body */
.card-body {
  padding: 40px 30px 30px 40px;
  text-align: left;
/* border: 3px dotted #000; */
  border-radius: 74px 0 75px 0px;
border: 1px dashed #000;
}

.dot-in-corner-cards{
	
	position: relative;
}
.dot-in-corner-cards img{
 width: 80px; /* Adjust the size as needed */
    height: auto;
	position:absolute;
	right:0;
	top:-23px;
}
/* Subtitle */
.card-subtitle {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
	margin-top: 3rem;
}

/* Text */
.card-text {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .card-banner {
    width: 90%; /* Adapts card width for smaller screens */
    padding: 10px;
  }

  .card-image {
    margin-bottom: 10px; /* Reduces spacing for smaller screens */
  }

  .card-text {
    font-size: 14px; /* Reduces text size */
  }
}

/* CTA Content */
.cta-content {
/*   max-width: 700px; */
  z-index: 2; /* Ensure the content is above the card */
  padding: 20px;
}

h2 {
  font-size: 24px;
  color: #333;
  font-weight: 600;
  line-height: 1.5;
}

.highlight {
  color: #6ecc45; /* Bright green */
  font-weight: 700;
}

p {
  font-size: 16px;
  color: #666;
  margin: 20px 0;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #6ecc45;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

.cta-button:hover {
  background-color: #5cb63b;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .card-container {
/*     top: 20px;
    left: 20px;
    width: 90%; /* Ensure the card adapts to smaller screens */ */
		 display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Ensures the container spans the full width */
  padding: 20px; 
  }

  h2 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
  }

  .cta-button {
    padding: 10px 20px;
  }
	
	@media (max-width: 768px) {
 
.card-banner {
      width: 90%; /* Adapts card width for smaller screens */
      padding: 10px;
    }

    .card-image img {
      width: 100%;
      height: auto; /* Ensures image remains responsive */
    }
  .dot-in-corner-cards img {
    width: 45px;
    top: -8px;
  }

  .card-subtitle {
    font-size: 15px;
  }

  .card-text {
    font-size: 12px;
    line-height: 1.4;
  }
}

	
}
