/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Playfair+Display:wght@400;600&display=swap');

/* General Body Styles */
body {
    transition: background 0.3s, color 0.3s;
    font-family: Arial, sans-serif;
    color: #6e757b;
}

/* Dark Mode */
.dark-mode {
    background-color: #121212;
    color: #ffffff;
}



/* Responsive Hero Image */
.hero-image {
    width: 350px;
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero-image {
        width: 250px !important;
    }
}

@media (max-width: 480px) {
    .hero-image {
        width: 200px !important;
    }
}

/* Headings */
h1 {
    font-family: 'Poppins', sans-serif;
}

h2 {
    font-family: 'Playfair Display', serif;
}

h3 {
    font-size: 18px;
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero-section {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 60px 0;
}

.span-rewards {
 font-size: 3rem;   
  color: #6e757b /***#eb4483; **/
}

.span-benefits {
font-size: 3rem;    
  color: #6e757b /***#3e3d4f; **/
}

.span-offers {
font-size: 3rem;  
color: #6e757b /***#64a097; **/
}



/* Features Icons Section */
.features-icons {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Center the Features Icons Item */
.features-icons-item {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
    text-align: center; /* Ensures text is centered */
    height: 100%;
}

/* Circle Icon Styling */
.icon-circle {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #b4d2f0;
    color: white;
    margin-bottom: 15px; /* Adds spacing below the circle */
}

/* Ensure Icon is Centered */
.icon-circle i {
    font-size: 4rem; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tablet (Width ≤ 768px) */
@media (max-width: 768px) {
    .icon-circle {
        width: 100px;
        height: 100px;
    }
    .icon-circle i {
        font-size: 3rem;
    }
}

/* Mobile (Width ≤ 480px) */
@media (max-width: 480px) {
    .icon-circle {
        width: 80px;
        height: 80px;
    }
    .icon-circle i {
        font-size: 2rem;
    }
}


/* Icon Headings */
.icon-h3 {
    font-size: 18px;
    font-weight: 600;
    font-family: Arial, sans-serif;
}

.child-h3 {
    font-size: 26px;
    font-weight: 600;
    font-family: Arial, sans-serif;
}

.category-h2 {
    font-size: 30px;
    font-weight: 600;
    font-family: Arial, sans-serif;
	color: #000; /*#64a097; */
}

.highlight-color {
	color: #000;/****#eb4483;***/
}

/* Section Grey */
.section-grey {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
}



.bg-bluelight {
  --bs-bg-opacity: 1;
   background-color: rgb(208, 229, 249) !important;
}

.bg-whitelight {
  --bs-bg-opacity: 1;
   background-color: #fff !important;
}


/* Buttons */
.btn-lightgreen {
    background-color: #64a097;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}

.btn-lightgreen:hover {
    background-color: #52867d; /* Darker shade on hover */
    color: #fff;
}

.btn-lightgrey {
    background-color: #bcbcbc;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}

.btn-lightgrey:hover {
    background-color: #a0a0a0; /* Darker shade on hover */
    color: #fff;
}

/* Font Style for H4 */
.font-h4 {
    font-size: 18px;
    font-weight: 400;
    font-family: Arial, sans-serif;
}

/* Navbar Styling */
.navbar {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&display=swap');


.text-logo {
    font-family: 'Josefin Sans', sans-serif;
    display: flex;
    align-items: center;
     gap: 10px; /* Adds spacing between text and arcs */
	text-decoration: none;
    
}

.cred {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;

}

.benefit {
    font-size: 20px;
    font-weight: normal;
    line-height: 1;

}




/* Style the select dropdown */
.form-select {
    color: #6e757b !important; /* Change text color */
}

/* Optional: Change the arrow color in some browsers */
.form-select:focus {
    border-color: #6e757b;
    box-shadow: 0 0 5px rgba(110, 117, 123, 0.5);
}

/* For Webkit browsers (Chrome, Safari) */
.form-select::-webkit-input-placeholder {
    color: #6e757b;
}

.form-select:-moz-placeholder {
    color: #6e757b;
}

.form-select::-moz-placeholder {
    color: #6e757b;
}

.form-select:-ms-input-placeholder {
    color: #6e757b;
}

.bg-box-darkgrey {
  --bs-bg-opacity: 1;
  background-color: rgb(55, 61, 67) !important;
  color: #fff;
}
.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.font-rewards {
    font-size: 22px;
    font-weight: 600;
    font-family: Arial, sans-serif;
}

.font-key-features {
    font-size: 19px;
    font-weight: 600;
    font-family: Arial, sans-serif;
}



.bg-body-tertiary1 {
  --bs-bg-opacity: 1;
  background-color: #fff !important;
}

.card-fontcolor{
color: #6e757b;	
}

/*************CARD BODY CSS***************************/
.custom-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: none;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

/* Ensure uniform image size */
.image-container {
    width: 100%;
    height: 180px; /* Set a fixed height for all images */
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images maintain aspect ratio while filling the container */
    border-radius: 12px 12px 0 0;
}

.card-body {
    border-radius: 0 0 12px 12px;
	color: #6e757b;	
	min-height: 180px; /* Set a minimum height for consistency */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bg-card-header {
  --bs-bg-opacity: 1;
  background-color: #469ce5 !important; /****#6e757b *****/
}

/* Footer */
footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    font-size: 14px;
}

footer a {
    transition: color 0.3s ease-in-out;
}
footer a:hover {
    color: #007bff !important;
}

.mt-10 {
  margin-top: 8.5rem !important;
}