.group-container-banner {
    position: relative;
}
.group-container-banner-background{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('/public/images/doctors.webp');
    background-size: 100%;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    transition: 3s filter;
    background-size: cover
}

.group-container-banner-background.colorized{
    filter: grayscale(0%);
}

.group-container-banner .content{
    position: relative;
    z-index: 1;
    background-color: rgba(241, 249, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 50px 100px;
    opacity: 0;
}

.group-container-banner .headline{
    font-weight: 600;
    font-family: Poppins, Arial, sans-serif;
    opacity: 0;
	text-align: center; 
/*	margin-top: 25px; */
}
.group-container-banner .cpr-section{
    padding: 75px;
}

.group-container-banner p{
    text-align: center;
    color: #333;
    font-weight: 500;
    font-family: Poppins, Arial, sans-serif;
    font-size: 22px;
    line-height: 1.8;
    opacity: 0;
}

@keyframes colorize {
    0% {
        filter: grayscale(100%);
    }
    100% {
        filter: none;
    }
}

.container-banner.loaded .background-image {
    animation: colorize 15s linear forwards;
    animation-delay: .50s;
}

.container-banner.loaded .content {
    animation: fade-in-content 1s forwards;
    animation-delay: 0.25s;
}

.container-banner.loaded .content .headline {
    animation: fade-in-title 0.75s forwards;
}

.container-banner.loaded .content p {
    animation: fade-in-paragraph 2s forwards;
    animation-delay: 1.25s;
}

@keyframes fade-in-content {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-in-title {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-in-paragraph {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


.group-bg-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.group-bg-container .steps-inner{
    background-image: url('/public/images/doctors.webp');
    background-size: cover; /* Set a specific size, e.g., 40% of the container's width */
    background-repeat: no-repeat;
    background-position: 25% 25%;
    height: 100%;

}

.Xgroup-bg-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%; /* Start the light blue overlay at the middle */
    width: 50%; /* Cover the right half */
    height: 100%;
    background-color: #0017b7;
}


/*
.group-bg-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25); 
}
*/

.superiorProgram {
	position: relative;
	z-index: 2; /* Ensure content is above pseudo-elements */
	width: 100%;
	color: #333; /* Ensure text color is white */
}

.subheadline-slide, .bg-container div {
	position: relative;
	z-index: 2;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #c2e4fd;
    color: #333;
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    width: 200px;
    text-align: center;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

.feature-container {
    height: 150px;
    padding: 0;
    margin-top: 0px;
    margin-left: 0;
    margin-right: 0;
    background: linear-gradient(to top, #002c68, #4971aa);
/*    background-color: #002c68;*/
    color: #f1f9ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-box {
    width: 25%;
    border-right: 0px solid #ecf4ff;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-box i {
    font-size: 28px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.feature-box p {
	font-family: Poppins, arial, sans-serif;
    text-align: center;
    padding: 0 25px;
    font-size: 18px;
}

/* GROUP PRICE TABLE */
.price-table {
    border-collapse: collapse;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
/*    box-shadow: 0 4px 20px rgba(163, 216, 248, 0.6); 
    border:1px solid #999; */
    width: 100%;
	background-color: white;
	line-height:1.5; 
	border-radius: 15px; 
	cursor: pointer;
}

.price-table tr {
	font-size:16px;
	color: white; 
	font-family: Poppins, Arial, sans-serif;
}

.price-table th {
	font-size:16px;
    background-color: #3D52A0;
    padding: 15px;
    text-align: center;
    font-weight: 500;
/*    border-bottom: 1px solid #d9d9d9;*/
    border:1px solid #dcdcdc;
    border-top: 1px solid #3D52A0;
}

.price-table td {
    padding: 15px;
	color: #000;
    text-align: center;
    border-bottom: 1px solid #d9d9d9;
    border:1px solid #dcdcdc; 
    font-size:18px;
	font-weight: 400;
    /*	cursor:help; */
}

.price-table tr:last-child td {
    border-bottom: none;
}

.highlight {
    color: red !important;
    font-weight:600;
}

tbody tr:hover {
    background-color: #f7f7f7;
}

tbody tr:hover td {
    background-color: #ecf4ff;	
}

.highlight-row {
    background-color: #1a73e8;
    color: white;
}

a {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit color from parent (usually black) */
/*    transition: color 0.3s; /* Smooth color transition on hover */
}

a:hover {
    color: #ff0000; /* Change color to white on hover */
}


/* INTERACTIVE PRICE QUOTE */
.interactive-quote-container{
/*    margin-left:0px;
    padding-bottom: 25px;
/*    box-shadow: 0 4px 20px rgba(163, 216, 248, 0.6); */
    display: flex; 
	align-items: center; 
	flex-direction: column;
/*	border-radius: 10px; */
}
.interactive-quote-container h3 {
    text-align: center;
	font-family: Poppins, Arial, sans-serif; 
	font-size: 26px; 
	font-weight: 600;
    margin: 25px auto 15px auto;
}

form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: Poppins, Arial, sans-serif;
    padding:25px;
    width: 100%; /* adjust this value to make form wider */
}

label {
    font-size: 16px;
    margin-bottom: 5px;
    padding-right:10px;
}
/*
select,
input[type="number"] {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    margin-bottom: 5px;
    width: 75px;
    box-sizing: border-box;
} */

.input-container {
    display: flex;
    flex-direction: row;  /* Change this from column to row */
    align-items: center;  /* Optional: This will vertically align the items in the middle */
    margin-bottom: 15px;
}

.input-container label {
    margin-right: 10px; /* Adjust as needed */
	font-family: Poppins, arial, sans-serif;
	font-size: 16px;
	font-weight: normal;
}

.input-container label:hover {
    /*    color: #1a73e8;  /* Change this to any color you prefer */
    /*    background-color: #f9f9f9;  /* Change this to any color you prefer */
    cursor: pointer;  /* Change the cursor to a pointer when hovered over */
}



.checkbox-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.checkbox-group {
    width: 48%; /* adjust this value to make it wider */
}

#pricing-quote button {
/*    display: block;  /* Make the button a block-level element */
/*    width: 100%;     /* Set the button's width to 100% of the parent's width */
    padding: 10px 20px;
    margin-bottom:0px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    outline: none; /* Remove the outline */
    transition: background-color 0.2s ease; /* Added transition for smooth color change */
}

#pricing-quote  button:hover {
    background-color: #46c13e;
}

#pricing-quote button:focus {
    outline: none; /* Remove the outline on focus */
}

p {
    /* text-align: center; */
    font-family: Poppins, Arial, sans-serif;
    font-size: 16px;
}



.quote-results {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 25px 0px 25px;
    border-radius: 10px;
    border: 1px solid #ccc;
	background-color: #fff;
    padding: 10px 10px 20px 15px;
}

.result-box {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    text-align: center;
}

.result-label {
    font-weight: 600;
    margin-bottom: 5px;
}

.result-value {
    font-family: Poppins, Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-top: 5px;
}

/**
button {
    width: 90% !important;
    display: block;
	margin-left: 25px;
}
*/


p.placeholder {
    color: #bebebe;
}

p.active {
    color: red;
}
.fade-in {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-in.show {
    opacity: 1;
}

/* INTERACTIVE QUOTE */
.input-container {
    display: flex;
    align-items: center;
	margin-top: 0px;
}

.input-container .input-button-container {
    flex: 1;
    display: flex;
    gap: 5px; /* Adjust the spacing between the input field and button */
}

.input-container label {
    margin-right: 0px; /* Adjust the spacing between the label and input field */
}

/* REVIEW */
.review-div {
    position: relative;
    text-align: left;
    color: #333;
    font-size: 16px;
    line-height: 2;
    font-family: Poppins, Arial, sans-serif;
	font-weight: normal;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: white;
    padding: 50px;
/*    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%),  url('/public/images/quote_orange.gif'); 
    background-repeat: no-repeat;
    background-size: 30%;
    background-position: right; */
    /*  transform: scaleX(-1); /* Flip the background image horizontally */
}

.image-position { /*verified badge*/
    /*  position: absolute;*/
    right: 20px;
    /*  margin-left: 20px; */
    width:75px;
    height:auto;
    margin-top:-10px;
    margin-right:10px;
    /*  margin-left:0px; margin-top:-5px;" */
}

.gold-star {
    color: gold;
}

.full-table-container, .narrow-table-container{
    padding:50px 0px;
 /*   background-color:#ecf4ff; */
}
.narrow-table-container{
    display: none;
    padding-bottom: 0;
}
.narrow-table-container td:hover{
    color: white;
    background-color: #1a73e8;
}
.cpr-corporate-quote{
/*    background: linear-gradient(to bottom, #e9f5ff, #fff);*/
	display: flex; flex-direction: row;
}

.cpr-corp-quote-inner{
	border: 1px solid red;
    margin: 0 8rem;
    gap: 4em;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
	padding-top: 25px; 
	padding-bottom: 75px;
}


.subheadline-slide {
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: 1.15px;
    font-size: 36px;
    line-height: 54px;
    text-decoration: none;
    color: #555;
    padding-top: 50px;
    padding-bottom: 0.5em;
    text-align: center;
    display: flex; /* Aligns children in a row */
    justify-content: center; /* Centers the whole line */
}

/* Initial hidden state of elements */
.slide-left {
    opacity: 0;
    transform: translateX(-100%);
}

.slide-right {
    opacity: 0;
    transform: translateX(100%);
}

.slide-up {
    opacity: 0;
    transform: translateY(100%);
}

/* Define animations */
@keyframes slideInHorizontal {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInVertical {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

/* Classes to add animations */
.animate-left {
    animation: slideInHorizontal 1s forwards;
}

.animate-right {
    animation: slideInHorizontal 1s forwards;
}

.animate-up {
    animation: slideInVertical 1s forwards;
}



/* Flex container for account text and features list */
.account-control-content {
    display: flex;
    gap: 24px;
	margin: auto;
    padding: 0px; /* Add padding inside the content */
    width: 100%;
    height: 100%;
    align-items: center;
	justify-content: center;
    z-index: 1;
}


/* Account text column */
.account-text {
    flex: 1; /* Allow the column to adapt based on available space */
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #333;
}

.account-paragraph {
    line-height: 1.5;
    font-size: 18px;
    text-align: center;
}

/* Style for the image above the subheadline */
.subheadline-image {
    display: block;
    margin: 32px auto;
    max-width: 100%;
    height: 200px;
}

/* Subheadline styles */
.subheadline-small {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Highlighted text */
.highlight {
    color: red;
}

/* Features list column */
.features-list {
    flex: 2; /* Takes up more space than account text column */
    display: flex;
    flex-direction: column;
    z-index: 1;
    padding: 0;
    margin: 0;
}

/* Unordered list styles */
.features-ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Fade-up animation for list items */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-li {
    font-family: Figtree, Poppins, sans-serif;
    color: #333;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    padding: 12px 16px 12px 40px;
    position: relative;
    line-height: 1.3;
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
}

/* Icon style for the checkmark */
.features-li::before {
    content: '';
    background: url('/public/images/checkmarkInCircle.svg') no-repeat center center;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

/* Hover effect for interactivity */
.features-li:hover {
    transform: translateX(5px);
}

/* Styles specific to the top-5 items */
.features-li.top-5::before {
    background-size: 25px 25px;
    width: 25px;
    height: 25px;
}


.corp-mapBG {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 375px;
    margin: 0 0 75px 0;
    border: none;
    text-align: center;
    padding: 50px 150px;
    color: white;
}

.corp-mapBG::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/public/images/mapBG5.svg') center no-repeat;
    background-size: 65%;
    filter: grayscale(75%);
    z-index: -2;
}

.corp-mapBG::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 52, 166, 0.6) 20%, rgba(0, 52, 166, 0.8) 80%);
    z-index: -1;
}

.cpr-courses-inner {
    position: relative;
    z-index: 1;
}

.corp-review-container {
    position: relative;
    width: 100%;
    height: auto;
}

.fixed-quote-left {
    position: absolute;
    opacity: 0.3;
    top: -120px;
    left: -480px;
    right: 0;
    z-index: 1;
    text-align: center;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 300px;
    font-style: italic;
    color: #7cacf8;
    font-weight: 400;
}

.review-div {
    position: absolute;
    width: 100%;
    margin: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
	border-radius: 10px;
}

.review-div.corp-active {
    opacity: 1;
    z-index: 2;
}

.corp-review-content {
    margin-top: 5px;
}

.corp-review-footer {
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.corp-review-author {
    text-align: right;
    line-height: 1.25;
}

.author-details {
    font-size: 14px;
}

.image-container {
    margin-left: 15px;
}

.image-position {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 3px solid rgba(124, 172, 248, 1);
}
.grid-wrapper {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    width: 75%; /* Stretch from margin to margin */
    background: #e9f5ff;
    /* background: linear-gradient(-25deg, rgba(23, 89, 164, 1), rgba(56, 156, 214, 1)); /* Gradient background */
    padding: 25px 100px; /* Padding at the top and bottom */
    /* box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(0, 0, 0, 0.3); */
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    /*        padding: 35px;*/
    width: 90%;
    margin: auto;
}

/* Grid Items */
.grid-item {
    position: relative; /* Ensure children with absolute positioning are relative to this element */
    height: 250px; /* Set a fixed height */
    border-radius: 8px;
    overflow: hidden; /* Hide overflow */
    text-align: center;
    padding: 20px 25px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); /* Adjust the box shadow as needed */
}

/* Active tab indicator */
.grid-item.active {
    cursor: default;
    /* box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5); */ /* Add box-shadow */
    /* border: 2px solid blue; /* or any other style you prefer */
}

/* Add this rule to make the background image full color */
/*    .grid-item.active .bg-image {
/*        filter: none;
/*    }

    /* Background Image */
.bg-image {
    pointer-events: none;
    position: absolute;
    border-radius: 8px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(0px);
    /*        filter: grayscale(100%) blur(2px);*/
    transition: filter 0.3s ease, background-color 0.3s ease;
}

/*image in normal state*/
.bg-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25); /* Adjust the opacity as needed */
}

/* Content */
.content {
    position: relative;
    z-index: 1;
    color: #fff;
    /* Add text outline */
    font-family: Poppins, arial, sans-serif;
    padding: 50px 25px; /* Add some padding */
    /* border-radius: 5px; /* Rounded corners */
    /* Flexbox for centering */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* Take up full height of parent */
    transition: transform 0.3s ease; /* Add transition for smooth movement */
}

/* Normal text state */
.content h3,
.content p {
    transition: opacity 0.1s ease; /* Quick fade effect */
}

/* Specific style for h3 inside .content */
.content h3 {
    cursor: default;
    font-size: 36px; /* or any other size you prefer */
    font-weight: 700;
    margin: 0; /* Remove default margin */
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 1); /* Strong text shadow */
    color: white; /* Change the text color to white for better contrast, adjust as needed */
    /* text-shadow: 0px 2px 5px rgba(0, 0, 0, 1); /* Add text shadow */
}

/* Specific style for p inside .content */
.content p {
    font-size: 18px; /* or any other size you prefer */
    margin: 0; /* Remove default margin */
}


/* Hover Effect */


/*  on hover */
/*.grid-item:hover {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3); /* Add box-shadow here */
/* transform: scale(1.05); */
/* z-index: 2; */
/*text-decoration: none; /* Remove underline on hover */
/* } */

/* Remove Scale text on hover */
/*.grid-item:hover .content h3,
.grid-item:hover .content p,
.grid-item:hover .content > h3,
.grid-item:hover .content > p {
    cursor: default; */
/* color: #f1f9ff; */
/* transform: scale(1.25); /* Adjust the scaling factor as needed */
/* transition: transform 0.3s ease, text-shadow 0.3s ease; */
/* }*/

/* Add box shadow on hover */
.grid-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35); /* Adjust the box shadow as needed */
    /*		transform: translateY(-2px); /* Slightly move the item up for better effect */
}

.grid-item:hover .content h3 {
    display: none !important; /* Completely hide */
    color: red;
}

.grid-item:hover .content {
    transform: none; /* Remove any transform effects */
}

.grid-item:hover .button-container {
    opacity: 1; /* Make buttons visible */
}

.bg-image:hover::before {
    background-color: rgba(0, 0, 0, 0); /* Set background-color to fully transparent on hover */
}
/*    .grid-item:hover .bg-image {
        filter: grayscale(50%);
        filter: blur(0px);
    }
*/
.grid-item.active .button-container button {
    opacity: 1; /* Make visible */
    pointer-events: auto; /* Make it clickable */
}

/* Black & White filter for active tab */
/*    .grid-item.bw-filter .bg-image {
        /* filter: grayscale(100%); */
/*        filter: rgba(46,127,233, 0.5);
    }
*/

/* Info Container */
.info-container {
    opacity: 0; /* Initially hidden */
    display: flex; /* Keep as flex */
    flex-direction: column; /* Stack content vertically */
    justify-content: start; /* Center content vertically */
    position: absolute; /* Absolute positioning */
    top: 0; /* Position from the top */
    left: 0; /* Position from the left */
    height: 100%; /* Cover full height of the grid item */
    width: 100%; /* Cover full width of the grid item */
    padding: 15px 25px; /* Add padding inside */
    transition: opacity 0.1s ease; /* Quick fade effect */
    background-color: rgba(255, 255, 255, 1); /* White with X% opacity */
    border-radius: 10px; /* Rounded corners */
    font-family: Poppins, sans-serif; /* Arial font */
    font-weight: normal; /* Font weight */
    font-size: 16px !important; /* Font size */
    line-height: 1.75; /* Line height */
    color: #333; /* Text color */
    text-shadow: none !important; /* Remove text shadow */
}

.info-container h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-shadow: none !important;
}

.info-container p {
    text-shadow: none !important;
    line-height: 1.5;
    margin-bottom: 3px;
}

.spaced-line {
    display: flex;
    align-items: center;
    line-height: 1.5; /* Specific line height for these items */
    margin-top: 0px; /* Space between lines */
}

.info-container img.checkmark-icon {
    color: #333;
    width: 16px;
    height: auto;
    vertical-align: middle; /* Aligns the icon with the text */
    margin-right: 5px; /* Adds a little space between the icon and the text */
    /*		margin-left: 5px; /* Adds a little indent */
}


/* Show buttons on hover */
.grid-item:hover .button-container {
    opacity: 1; /* Make visible */
}

/* Show info container on hover */
.grid-item:hover .info-container {
    opacity: 1; /* Make visible */
}

/* General Button Styles */
.button-container button {
    padding: 5px 15px;
    font-family: Poppins, arial, sans-serif;
    font-size: 16px;
    /*		font-weight: 500;
            letter-spacing: 1.2px; */
    border-radius: 3px;
    border: none;
    cursor: pointer;
    margin: 0 10px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* Learn More... Button */
.learn-more-button {
    background-color: #7cacf8;
    color: white;
}

/* Take Course Button */
.take-course-button {
    background-color: #32CD32;
    color: white;
}

/* Hover Effects */
.button-container button:hover {
    background-color: #d3e3fd;
    color: #4971aa;
    box-shadow: inset 0 0 0 1px #4971aa, 0 4px 20px rgba(0, 0, 0, 0.25);
}

.button-container .take-course-button:hover {
    background-color: #228B22;
    box-shadow: inset 0 0 0 1px #32CD32, 0 4px 20px rgba(0, 0, 0, 0.25);
    color: white;
}

/* GROUP CALCULATOR MENU */

/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container */
.tabs-container {
  width: 90%; /* Increased width */
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Tabs Component */
/* Tabs Wrapper */
.tabs-wrapper {
  --_bar_height: 4px;
  --_bar-color: #f1f1f1; /* Color of the bar */
  --_bar-background-opacity: 0.2;

  --_transition-time: 0.2s; /* Transition for the bar (width and transform) */

  --_text-color: #ffffff; /* Color of the tab text */
  --_font-size: 18px; /* Font size */

  --bar-width: 0;
  --bar-offset: 0;

  position: relative;
  display: flex;
  flex-direction: row;
  padding-bottom: var(--_bar_height);
  justify-content: center;
}

.tabs-wrapper::before,
.tabs-wrapper::after {
  position: absolute;
  bottom: 0;
  content: '';
  height: var(--_bar_height);
  background: var(--_bar-color); /* Use bar color variable here */
  border-radius: var(--_bar_height);
}

.tabs-wrapper::before {
  width: 100%;
  opacity: var(--_bar-background-opacity);
}

.tabs-wrapper::after {
  width: var(--bar-width);
  opacity: 1;
  left: var(--bar-offset);
  transition: width var(--_transition-time) ease-in-out, left var(--_transition-time) ease-in-out;
}

.tabs-wrapper .tab {
  padding: 0.5rem 2rem;
  font-weight: 500;
  font-family: Poppins, Arial, sans-serif;
  font-size: var(--_font-size);
  color: var(--_text-color); /* Use text color variable here */
  cursor: pointer;
  user-select: none;
  position: relative;
}

.tabs-wrapper .tab:focus-visible {
  background: rgba(0, 0, 0, 0.2);
  outline: none;
  border-radius: 5px 5px 0 0;
}

/* Tab Content */
.tab-content {
  margin-top: 20px;
  padding: 20px;
  background-color: transparent;
  border-radius: 10px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 18px;
  color: #ffffff; /* Ensures content text is white */
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 5;
}


.tabs-container, .tabs-wrapper, .tab-content {
  color: #ffffff;
}

#NewTestimonialCorp .author-name {
    text-align: center;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
}
#NewTestimonialCorp .quote:before {
    top: 110px;
    left: 15px;
}

#NewTestimonialCorp .quote:after {
    bottom: 50px;
    right: 40px;
}

#NewTestimonialCorp img{
    width: 80px;
    height: 80px;
    left: calc(50% - 40px);
}

.cross-out-image{
    display: block;
    position: absolute;
    width: 112px; /* Adjust width as needed */
    height: 64px;
    top: -7px; /* Move it down by 20px */
    left: -12px; /* Move it right by 30px */
    z-index: 3;
    opacity: 0.9;
    transform: rotate(10deg);
}

.arrow-image {
    position: absolute;
    width: auto; /* Adjust width as needed */
    height: 120px;
    bottom: 16px;
    right: -1px;
    filter: invert(26%) sepia(95%) saturate(6781%) hue-rotate(355deg) brightness(104%) contrast(112%);
    z-index: 3;
    opacity: 0.9;
    transform: rotate(5deg)
}

.group-bg-container {
    padding: 0;
    width: 100%;
    height: 650px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    position: relative;
}

.steps-inner {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0;
    margin: auto auto 48px auto;
}

.steps-content {
    position: relative;
    width: 80%;
    padding: 32px;
    background: rgba(229, 243, 255, 0.65);
    backdrop-filter: blur(10px) saturate(150%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

/* Left Column Headline */
.group-subheadline-slide {
    margin: 0;
    position: relative;
    line-height: 1;
    font-family: Oswald, Arial, sans-serif;
    color: #000;
    font-size: 48px;
    font-weight: 600;
    text-align: center;
}

/* CTA Button */
.cta-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.group-hero-take-course-button {
    font-family: Poppins, Arial, sans-serif;
    font-size: 22px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
    background-color: #FFB300;
    color: #000;
    padding: 12px 32px;
    font-weight: 400;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.group-hero-take-course-button:hover {
    background-color: #FFA500;
    color: white;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.35);
}

/* Right Column */
.hero-review {
    background-color: #0017b7;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
}

.group-hero-copy {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
}

/* Quote Styling */
.quote-icon {
    position: absolute;
    top: 50px;
    left: 50px;
    filter: invert(1) brightness(2);
    opacity: 0.15;
}

.hero-testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 56px 48px 0 48px;
    padding: 48px;
    background-color: transparent;
    box-shadow: none;
}

.group-hero-quote {
    font-size: 24px;
    line-height: 1.5;
    color: #fff;
    opacity: 0.9;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

/* Author Information */
.hero-author-name,
.hero-position {
    color: #fff;
    opacity: 0.9;
    text-align: center;
}

.hero-author-name {
    font-size: 18px;
    font-weight: 600;
    margin-top: 16px;
}

.hero-position {
    font-size: 16px;
    font-style: italic;
    margin-top: 4px;
}

/* Company Logo */
.company-logo {
/*    margin: 32px auto; */
/*    opacity: 0.9; */
    border: none;
}
#NewTestimonialCorp .company-logo{
    position: static;
    text-align: center;
    width: auto;
}
#NewTestimonialCorp .company-logo-container{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 3em;
}

/* Social Proof Section */
.social-proof {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    /*    margin-bottom: 0px; */
    margin: 48px 48px 0 0;
}

.testimonial-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px) saturate(150%);
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0);
    height: 46px;
    width: auto;
    border: 2px solid #fafafa;
    padding: 4px 24px;
}

.testimonial-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    border-radius: 50%;
    border: 2px solid #fafafa;
    width: 36px;
    height: 36px;
    margin-left: -20px;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Figtree', Arial, sans-serif;
    color: #fff;
}

.star {
    color: gold;
}

.rating-number {
    margin-left: 8px;
}

.testimonial-count {
    font-family: 'Figtree', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.pains-benefits{
    width: 80%;
    min-height: 536px;
    margin: 100px auto;
    padding: 64px;
    display: flex;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pain-points-list {
    counter-reset: point-counter; /* Initializes counter */
    display: flex;
    gap: 24px;
    height: 100%;
    width: 100%;
}
.img-paperworks{
    width: 100%;
    margin-bottom: 1em;
    border-radius: 16px;
    height: 200px;
    padding: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: url('/public/images/paperwork.webp');
    background-position: center;
    background-size: cover;
}

.pain-points-paperwork{
    margin: 64px auto 0px auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 24px;
    padding: 24px;
    width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.pain-point {
    counter-increment: point-counter; /* Increments counter for each item */
    margin-bottom: 8px;
    line-height: 1.75;
    cursor: pointer;
}

.pain-point::before {
    content: counter(point-counter) ". "; /* Displays the counter before each item */
    margin-right: 5px;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fade-in {
    opacity: 1;
    display: block;
    transition: opacity 0.5s ease;
}

.cta-button {
    background-color: #FFB300;
    color: #000;
    padding: 15px 30px;
    font-size: 18px;
    font-family: Poppins, Arial, sans-serif;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #FFA500;
    color: white;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.25);
}

.impress-me-button {
    background-color: #FFB300;
    color: #000;
    padding: 15px 30px;
    font-size: 18px;
    font-family: Poppins, Arial, sans-serif;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.impress-me-button:hover {
    background-color: #FFA500;
    color: white;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.25);
}


#painPointsList .pain-point {
    margin-top: 0;
}

#painPointsList .pain-point:nth-child(7) {
    margin-top: 40px; /* Adds the space above the 6th item */
}
@keyframes slideUpDown {
    0%, 100% {
        transform: translateY(0); /* Start and end at original position */
    }
    50% {
        transform: translateY(-48px); /* Move up slightly */
    }
}

img.slider {
    height: 48px;
    width: auto;
    position: absolute;
    right: 0px;
    top: calc(50% + 8px);
    animation: slideUpDown 6s ease-in-out infinite; /* 3s for a smooth, slow effect */
    /*    filter: hue-rotate(250deg) saturate(3) brightness(0.6); */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Apply the animation with a 5-second delay */
.delayed-fade-in {
    animation: fadeIn 0.7s ease forwards; /* 0.5s duration for the fade-in effect */
    animation-delay: 1.5s; /* 5-second delay before starting */
    opacity: 0; /* Initially hidden */
}

/* Custom tooltip styling */
.tooltip-inner {
    font-family: 'Figtree', arial, sans-serif;
    font-size: 16px;
    color: #0067d8; /* Light text */
    background-color: #fff; /* Subtle dark background */
    padding: 12px 16px;
    border-radius: 12px;
    line-height: 1.4;
    text-align: left;
    max-width: 700px; /* Forces wide layout */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); /* Slightly stronger shadow for contrast */
    white-space: normal; /* Allows text to wrap */
}

/* Tooltip arrow */
.tooltip.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.tooltip.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
    border-top-color: #faf6ff; /* Matches background color */
    border-bottom-color: #faf6ff;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #faf6ff; /* Matches tooltip background */
}
    /* Optional for a shadow effect */
    .tooltip-inner {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .custom-tooltip .tooltip-inner li {
        margin-bottom: 24px; /* Larger space between points */
        line-height: 1.6;
    }
.blue-background-container-wrap {
    background: linear-gradient(to bottom, white 0%, white calc(100% - 75%), #faf6ff calc(100% - 75%), #faf6ff 100%);
    padding: 50px 0;
    margin: 0;
}

.blue-background-container {
    padding: 50px 0; /* Top and bottom padding */
    margin: 0 75px;
    border-radius: 25px;
    text-align: center; /* Center content horizontally */
    overflow: visible; /* Hide overflow to avoid the pseudo-element affecting layout */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background-color: #eff4ff;
}
.corp-quote-grid-container {
    margin: 0px;
    padding: 75px 0 0;
    background-color: #faf6ff;
}

.corp-quote-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Left column is wider */
    grid-template-rows: repeat(3, auto); /* Three rows, adjust height based on content */
    max-width: 85%;
    margin: auto;
    gap: 25px;
    background-color: transparent;
}

.quote-item {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    width: 100%; /* Fit within grid cell */
}

/* Positioning for grid items */
.quote-item-0 {
    grid-column: 2;
    grid-row: 1;
    background-color: white;
    min-height: 200px;

}

.quote-item-1 {
    grid-column: 1;
    padding: 24px 64px 64px 64px;
    grid-row: 1 / span 3; /* Spans all rows in the first column */
    background: linear-gradient(-45deg, #49c3fc, #3da4eb);
}

.quote-item-2 {
    grid-column: 2;
    grid-row: 2;
    background-color: white;
    /*height: 300px;*/
}

.quote-item-3 {
    grid-column: 2;
    grid-row: 3;
    background-color: white;
    position: relative;
}

.quote-item-3 p {
    padding-top: 8px;
    font-family: Playfair Display, arial, sans-serif;
    color: #000;
    font-size: 18px;
    line-height: 1.65;
    z-index: 2;
}

.quote-mark-left {
    position: absolute;
    width: 128px; /* Adjust size as needed */
    height: auto;
    opacity: 0.15;
    top: -24px;
    left: -24px; /* Adjust these values for perfect positioning */
    z-index: 1;
}


@media (min-width: 768px) {
    .corp-quote-grid {
        /* If you want equal width columns on larger screens */
        grid-template-columns: repeat(2, 1fr); /* Or keep 2fr 1fr if you prefer the same width as default */
        gap: 15px;
    }

    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }
}


/*//////////////////////////////////////////*/




