    /* Hide all tab content by default */
    .tab-content {
        visibility: hidden;
        position: absolute;
        width: 100%;
    }

    /* Show the active tab */
    .tab-content.active {
        visibility: visible;
        position: static;
    }


    .grid-wrapper {
        display: flex;
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        width: 100%; /* Stretch from margin to margin */
        background: #e8f0fd;
/*        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);
    }

    @keyframes fadeInEffect {
        from {
            opacity: 1;
        }
        to {
            opacity: 1;
        }
    }

    .fade-in-animation {
        animation-name: fadeInEffect;
        animation-duration: 0s; /* You can adjust this to control the speed of the fade-in */
        animation-fill-mode: forwards;
    }

	/* slick course carousel */
	.slick-course{
		width: 80%;
	}
	.slick-course-container{
		margin: 35px 0px 35px 0px;
		padding: 0;
		display: flex;
		justify-content: center;
	}
	/*.slick-course-container .slick-next{
		right: 100px;
	}
	.slick-course-container .slick-prev{
		left: 80px;
	}*/



.course-tabs {
/*	border:1px solid green;
/*	background: #e8f0fd;*/
	align-items: center;  
	justify-content:center; 
	padding: 25px 0;
	margin: 0 auto;
/*	padding: 35px 8rem 0px 8rem;*/
}

.outerContainer {
  display: flex;
  align-items: center; /* Vertically center the items */
    justify-content:center;
    gap: 2em;
	margin: 50px auto;
	border: 0px solid red;
}

.scrollButton {
    height:400px;
    width: 50px;
    filter: invert(87%) sepia(3%) saturate(1829%) hue-rotate(194deg) brightness(109%) contrast(107%);
}
.scrollButton:hover{
    filter: invert(87%) sepia(3%) saturate(1829%) hue-rotate(194deg) brightness(109%) contrast(107%) drop-shadow(0 5px 10px rgba(163, 216, 248, 0.5));
    cursor: pointer;
}

.glanceContainer {
	max-width: 1400px;
    width: 75%;
    margin: auto;
	background: #fff;
/*	background: linear-gradient(to bottom, #f1f9ff, #e0f0ff); */
	padding:0px; 
	border-radius: 10px; 
/*	box-shadow: 0 0px 20px rgba(163, 216, 248, 0.5);*/
/*    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1); */
    box-sizing: border-box; /* Ensure box-sizing is set */
}

.card {
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
    margin-top: 1em;
}

.row {
    display: flex;
    width: 100%;
    flex-wrap:nowrap;
    justify-content: space-between;
    margin-bottom: 0px;
	margin-left: 0px;
    margin-right: 0px;
}

.scrollContainer {
 	border: 0px solid yellow;
	width:100%;
 display: flex;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* Add some padding at the end to ensure last element is visible */
  padding-bottom: 1rem;
}

.glanceCard {
    flex: 0 0 auto; /* Do not grow, do not shrink, initial size based on content */
    width: 33%; /* You can set a specific width */
    padding-top: 1em;
    padding-bottom: 1em;
    position: relative;
    transition: color 0.2s ease, transform 0.2s ease;  /* Add a smooth transition effect for all changes */
    scroll-snap-align: start;
    box-sizing: border-box; /* Ensure box-sizing is set */
    cursor: pointer;
}

.glanceCard:hover {
/*    background-color: #fff;  /* Change this color to the desired rollover color */
/*    border-radius:5px;
    border: none;    
    z-index:2;
/*    box-shadow: 0 0px 20px rgba(163, 216, 248, 0.5);*/
/*    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);*/
    cursor: pointer;
}

.glanceCard img {
    width: 50px;
    height: auto;
    margin-bottom: 10px; 
/*    filter: grayscale(100%); /* Makes the image black and white */
    /* transform: scale(1); *//* Initial scale */
    transition: filter 0.2s ease, transform 0.2s ease; /* Two transitions */
}

.glanceCard:hover img {
/*    filter: grayscale(0%); /* Reverts to full color upon hover */
    /* transform: scale(1.1);
    z-index:3;*/
}

.row > .glanceCard:last-child {
    border-right: none;
}

.vertical-separator {
    position: absolute;
    top: 7.5%;
    bottom: 7.5%;
    right: 0;
    width: 1px;
    background-color: #4971aa;
    opacity: .25;
    transition: opacity 0s; /* Makes the opacity change instant */
    max-width: 1px;
    box-sizing: border-box; /* Ensure box-sizing is set */
}

.row-separator {
    width: 95%;
    border-top: 1px solid #4971aa;
    margin: 0 auto; /* Top and bottom margins are 0, left and right are auto */
    opacity: .25;
/*    margin: 15px 0;*/
    /* margin-left: 35px;*/
}

.data-title {
    font-family: 'Poppins', sans-serif; /* Consistent font family */
    font-weight: 700; /* Bold for emphasis */
    letter-spacing: 1px; /* Increased letter spacing for modern look */
    font-size: 18px; /* Larger font size for emphasis */
    color: #314e7c;  /* Dark blue text color for contrast */
    text-align: center; /* Centered text */
    text-transform: uppercase; /* Uppercase text for emphasis */
    display: inline-block;  /* Inline-block to fit content */
    margin: 0 auto 20px;  /* Auto margins for horizontal centering, bottom margin for spacing */
    position: relative; /* Relative positioning for pseudo-element */
}

.data-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #4971aa; /* Blue color for underline */
    margin: 10px auto 0; /* Centered underline with margin */
    transition: width 0.3s ease;
    transform-origin: center;
    transform: scaleX(1);
}

.glanceCard:hover .data-title::after {
    animation: shrink-grow 0.6s forwards;
}

@keyframes shrink-grow {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.data-value {
    font-family: Poppins, sans-serif; /* Keeping the font family consistent */
    font-weight: 500; /* Increased weight */
/*    letter-spacing: 0.5px; /* Reduced letter spacing */
    font-size: 16px; /* Increased font size */
    text-align: center;
    color: #666; /* Slightly lighter than title for contrast */
    line-height: 1.5; 
    margin: -10px auto 10px auto; /* Added bottom margin */
}

.course-separator {
    width: 90%;
    border-top: 0px dotted lightgray;
    padding-top: 5px;
/*    margin: 2px 0;*/
/*    margin-left: 25px;*/
}

.nested_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.nested_content p {
    position: relative;
    margin: 0;
    padding: 0 0 1.5em;
    max-height: 2.5em;
    overflow: hidden;
}

.nested_content p::after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 1.5em;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 50%);
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: blue;
    text-decoration: underline;
}

.gold-star {
    font-size: 18px;
    color: gold; /* Gold color */
    /*  -webkit-text-stroke: 1px orange; /* 1px black outline */
    /*  text-stroke: 1px orange; /* 1px black outline */
}

.half-gold-star {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: gold; /* Gold color */
    width: 18px; /* Adjust the width as needed */
    height: 18px; /* Adjust the height as needed */
    overflow: hidden;
}

.half-gold-star::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: gold; /* Gold color */
    transform: skewX(-30deg);
    transform-origin: left center;
    z-index: -1;
}


.gradient-button {
    background: linear-gradient(to bottom, #ffffff, #c2e4fd);
    border: 1px solid #3773b5;
    color: #666;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
    width: 300px; /* Set the width to 100 pixels */
    height: auto; /* Set the height to 100 pixels */
}

.gradient-button::after {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 15px);
    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 20px rgba(0, 0, 0, 0.3);
    width: 350px; /* Set the width to 100 pixels */
    height: auto; /* Set the height to 100 pixels */

}

.gradient-button:hover::after {
    opacity: 1;
    visibility: visible;
}
/*.accordion_toggle > span{
    margin-left: 10px;
    font-weight: normal;
}*/

.accordion_content{
    padding-bottom: 1em;
    display: none;
}
.accordion .accordion_toggle, .accordion_content{
/*    margin-left: 2em!important;*/
    background: none;
    padding: 0.5em 0;
}
.accordion_toggle_active{
    background: none;
}

.accordion_toggle > span:after{
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* Required for some FontAwesome icons */
	/*    content: url(/public/images/icon_collapsed.gif);*/
    margin-top: 2px;
    position: absolute;
    right: 20px;
}
.accordion_toggle.ui-state-active > span:after{
    content: "\f077";
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* Required for some FontAwesome icons */
/*    content: url(/public/images/icon_expanded.gif);*/
    margin-top: 2px;
    position: absolute;
    margin-left: 10px;
/*	background-color:  #c1e3f9;*/
/*	background-color:  #f1f9ff;*/
}
.module-title {
    border-radius: 5px;
    background-color: #c1e3f9;
    padding: 10px 25px;
    margin-right: 50px;
}

.accordion-content, .nested-accordion-content {
    display: none;
}

.nested_accordion_toggle > span{
    margin-left: 10px;
    font-weight: normal;
}
.nested_accordion_toggle, .nested_accordion_content{
    margin-left: 2em;
    background: none;
}
.nested_accordion_toggle_active{
    background: none;
}

.nested_accordion_toggle > span:after{
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* Required for some FontAwesome icons */
/*    content: url(/public/images/icon_collapsed.gif);*/
    margin-top: 2px;
    position: absolute;
    margin-left: 10px;
}
.nested_accordion_toggle_active > span:after{
    content: "\f077";
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* Required for some FontAwesome icons */
/*    content: url(/public/images/icon_expanded.gif);*/
    margin-top: 2px;
    position: absolute;
    margin-left: 10px;
/*	background-color:  #c1e3f9;*/
}



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

.cpr-tooltiptext {
    visibility: hidden;
    width: 350px;
    background-color: #f1f9ff;
    color: #000;
    font-family:Poppins, arial, sans-serif;
    font-size:12px;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.cpr-tooltip:hover .cpr-tooltiptext {
    visibility: visible;
    opacity: 1;
}





.slick-outline {
	width:100%;
    align-items: center!important;
    justify-content: center!important;
	padding:0 0px;
    transition: height 5s ease-in-out;
}
.slick-outline .slick-list {
    transition: height 1s ease-in-out;
}

.course-title .accordion-container {
    width: 75%;
    margin: 25px auto; /* Adjust margin as needed */
/*    padding: 25px; */
    background-color: #e8f0fd;
    border-radius: 15px; /* Same rounded corners as before */
/*    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05); /* Same shadow as before */
    border: none; /* Remove any default borders */
    position: relative;
    overflow: hidden; /* Hide overflow initially */
    transition: max-height 0.75s ease-in-out; /* Smooth transition */
	border: 0px solid red;
	overflow: visible;

}

.accordion-container {
    width: 100%;
    max-width: none;
	border: 0px solid blue;
    background-color: #ede8f5; 
	overflow: visible;
}

.course-title .accordion-container .column-container {
    display: flex;
    gap: 50px;
    padding: 0;
    align-items: flex-start;
    justify-content: center;
    max-height: 500px;
	overflow: visible;
    transition: height 1.0s ease-in-out;
}

.column-container {
	width: 100%;
	margin: auto 0;
	border: 0px solid blue;
    background-color: #e8f0fd; 
	border-radius: 15px;
/*    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Softer shadow for columns */
}

    .blur-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
	height: 250px; /* Adjust the height to control the fade */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ede8f5 80%, #ede8f5 100%);
    pointer-events: none;
}
    .course-title .accordion-container .accordion-trigger{
        z-index: 2;
        position: relative;
    }
.course-title .accordion-container .column1,
.course-title .accordion-container .column2 {
    flex: 1;
    background-color: #fff; 
    text-align: left;
    margin: 50px;
    padding: 25px;
    border-radius: 15px; /* Slightly round the corners of the columns */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Softer shadow for columns */
    border: 1px solid #efefef; /* Add a subtle border around each column */
}

.course-title .accordion-container .column1 {
    margin-right: 0px;
}
	
.course-title .accordion-container .column2 {
    margin-left: 0px;
}
	
/*.course-title .accordion-container .show-more { */
.show-more {
    width: 90%; 
    padding: 10px 0; /* Add some padding for a comfortable button */
    margin: 0px auto 25px auto; /* Center the button with some margin */
    background-color: transparent; /* Use the preferred blue color */
    color: #7091e6; /* White text color */
    border: 2px solid #7091e6; /* Remove any default borders */
    border-radius: 5px; /* Slightly round the corners */
    font-family: 'Poppins', Arial, sans-serif; /* Ensure Poppins font is used */
    font-size: 16px; /* Adjusted text size for readability */
    font-weight: 400; /* Semi-bold text */
    cursor: pointer; /* Change the cursor to pointer on hover */
    text-align: center; /* Center the text */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
    display: flex; /* Use flexbox for aligning icon and text */
    justify-content: center; /* Center the icon and text horizontally */
    align-items: center; /* Center the icon and text vertically */
	top: 0px;
}

.course-title .accordion-container .show-more i {
    margin-right: 8px; /* Space between the icon and the text */
    font-size: 14px; /* Adjust the icon size */
    vertical-align: middle; /* Align the icon with the text */
}

.course-title .accordion-container .show-more:hover {
    background-color: #7091e6; /* Darken the button slightly on hover */
	color: white;
}

/* Accordion Active State */
.course-title .accordion-container {
    overflow: visible; /* Ensure content beyond initial height is visible */
    transition: max-height 1.0s ease-in-out; /* Smooth transition */
}
.course-title .accordion-container.active .column-container{
    max-height: unset;
}


/*
.column2 {
    flex: 1;
    background-color: #fff;
    text-align: left;
    margin-top: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 15px;
    border-color: #dcdcdc;
    padding: 25px 25px;
/*    position: relative; /* For the ::after pseudo-element */
/*    overflow: visible; /* Hide overflow content */
/*    max-height: calc(100vh); */ /* Adjust this value as needed */
/*    transition: max-height 0.3s ease; /* Add a smooth transition effect */
/*}*

.column1 h3, .column2 h3 {
	font-family: 'Poppins', Arial, sans-serif;
	font-weight:500;
	color: #666;
	font-size: 20px;
	text-align: center;
    margin-left: 0;
    margin-bottom: 25px;
}

/*.column2:hover {
    max-height: calc(100vh); */ /* Adjust this value as needed */
/*    background-color: #e2f0ff;
    color: white;*/
/*}*/

/*.column2::after {
    content: "Read more..."; */
/*    color: rgb(55, 115, 181, 0.5);*/
/*    font-size: 14px;
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    background-image: linear-gradient(to bottom, #fafafa 50%, #fafafa 50%);
    padding: 5px 10px;
    border-radius: 5px; */
/*    border: 0px solid #dcdcdc;*/
/*    white-space: nowrap;
    transition: opacity 0.3s; */ /* Add a transition for smooth effect */
/*    opacity: 1; *//* Initially set the opacity to 1 */
/*}*/

/*.column2:hover::after {
    opacity: 0; */ /* Set the opacity to 0 to make it disappear */
/*    transition-delay: 0.1s; *//* No delay on mouse hover */
/*}*/

/*.column2:not(:hover)::after {
    opacity: 1; *//* Set the opacity to 1 to make it visible */
/*    transition-delay: 0.25s; */ /* Add a delay of 0.25 seconds on mouse leave */
/*} */

.column:hover {
    background-color: #e2f0ff; /* Change this color to the desired rollover color */
    transition: background-color 0.3s ease; /* Add a smooth transition effect */
    color: white;
}



#container {
    position: relative;
}

.fade-in {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s, visibility 1s, z-index 0s 1s; /* Add z-index to the transition*/
    z-index: 0;
}

.show {
    opacity: 1;
    visibility: visible;
    z-index: 1002;  /* Add z-index*/
}

.review-div {
    position: relative;
/*    margin-left: 25px;*/
    margin-right: 25px;
    margin-top: 40px;
    text-align: left;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Raleway', sans-serif;
    border: solid;
    box-shadow: 0 2px 15px rgba(163, 216, 248, 0.6);
    background-color: white;
    border-color: blue;
    border-width: 0px;
    border-radius: 5px;
    padding: 20px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), url('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;" */
}

.accordion .ui-state-active, .accordion .ui-state-active a, .accordion .ui-state-active a:visited{
    background: white;
    border: none;
    color: black;
}


.accordion .ui-accordion-content{
    padding-top:0;
    padding-bottom: 0.5em;
    padding-left: 0px;
    border: none;
}

ul.indented {
    font-weight: normal;
	margin-left:-15px;
    font-size: 16px;
    font-family: 'Poppins', Arial, sans-serif;
	font-weight:normal;
	line-height: 2;
    list-style: none inside;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.accordion .ui-accordion-header, .column1 .ui-state-hover{
    font-size: 16px;
    border-radius: 5px;
    border: none;
    background-color: #c1e3f9;
    padding: 10px 25px;
	color: #444;
}
.accordion_toggle{
    font-weight:500;
    font-family:'Poppins', arial, sans-serif;
    line-height: 1.3;
	font-size: 20px;
}


.slick-arrows-fab{
    position: fixed;
    top: 25px;
    width: 100%;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    justify-content: center;
	align-items: center;
    display: flex; 
}

.slick-arrows-container {
    display:flex;
    width:75%;
    justify-content: center;
	border: 0px solid red;
}

.slick-arrows-middle{
    min-width: 700px;
}

#prev-icon, #next-icon {
    cursor: pointer;
    transition: all 0.1s ease;
    color: #3d52a0;
}

.slick-prev, .slick-next{
    position: relative;
	margin-top: 60px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
	border: 0px solid green;
    height: auto;
}

.slick-slide {
    padding-left: 0px;
    padding-right: 0px;
}

.slick-prev:before, .slick-next:before{
	content: "";
}

.fab-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
    color: #3d52a0;
    position: static;
	border: 0px solid red;
}

.fab-content:hover{
    color: #8697c4;
}

.fab-content:hover .fab-text .fab-arrow {
    color: #3d52a0;
}

.fab-row {
    display: flex;
    align-items: center;
	border: 1px solid blue;
}

.fab-icon {
    width: 35px;
    height: 35px;
    background-size: cover;
    background-repeat: no-repeat;
}

.fab-arrow{
    font-size: 18px; 
	color: #7184c9;
    margin: 0; 
	padding: 0;
}

.slick-prev .fab-arrow {
    order: -1; /* Moves the arrow to the first row for slick-prev */
	margin-right: 15px;
}

.slick-next .fab-arrow {
	margin-left: 15px;
}

.slick-prev .fab-icon {
	margin-left: 0;
}

.slick-next .fab-icon {
	margin-right: 0;
}

.fab-text {
	font-family: poppins, arial, sans-serif;
    line-height: 16px;
    font-size: 14px;
    font-weight: 400;
	border: 0px solid red;
    text-align: center;
	color: #3d52a0;
    width: 125px; /* Ensures the text is centered within a fixed width */
	margin-top: 5px;
}


/*
.fab-icon.bcls
{
    background-image: url('/public/images/icon-hand-heart.png');
}

.fab-content:hover .fab-icon.bcls
{
 background-image: url('/public/images/icon-hand-heart-blue.png');
}
.fab-icon.cpr
{
	background-image: url('/public/images/icon-family.png');
}

.fab-content:hover .fab-icon.cpr
{
	background-image: url('/public/images/icon-family-blue.png');
}
.fab-icon.acpr
{
	background-image: url('/public/images/icon-old-man.png');
}

.fab-content:hover .fab-icon.acpr
{
	background-image: url('/public/images/icon-old-man-blue.png');
}
.fab-icon.hcp
{
	background-image: url('/public/images/icon-doctor1.png');
}

.fab-content:hover .fab-icon.hcp
{
	background-image: url('/public/images/icon-doctor1-blue.png');
}
.fab-icon.bfa
{
	background-image: url('/public/images/icon-wound.png');
}

.fab-content:hover .fab-icon.bfa
{
	background-image: url('/public/images/icon-wound-blue.png');
}
.fab-icon.bbp
{
	background-image: url('/public/images/icon-lab.png');
}

.fab-content:hover .fab-icon.bbp
{
	background-image: url('/public/images/icon-lab-blue.png');
}
*/

.fab-icon.bcls
{
    background-image: url('/public/images/icon-hand-heart-blue.png');
}

.fab-icon.cpr
{
	background-image: url('/public/images/icon-family-blue.png');
}

.fab-icon.acpr
{
	background-image: url('/public/images/icon-old-man-blue.png');
}
.fab-icon.hcp
{
	background-image: url('/public/images/icon-doctor1-blue.png');
}

.fab-icon.bfa
{
	background-image: url('/public/images/icon-wound-blue.png');
}
.fab-icon.bbp
{
	background-image: url('/public/images/icon-lab-blue.png');
}

	
.bg-container {
    width: 100%;
    margin: 0;
    position: relative;
    /* padding: 50px 125px; /* Add some padding if needed */
    min-height: 400px;
    /* border-radius: 10px;*/
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); */
    display: flex;
    align-items: center;
    overflow: hidden; /* Ensure pseudo-elements are contained */
}

.bg-container .night-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/public/images/laptop_at_night.webp') no-repeat center center / cover;
    opacity: 0;
    transition: opacity 0.5s ease; /* Smooth fade effect */
    z-index: 1;
}

.bg-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

/*    .bg-container::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.6) 90%);
        z-index: 1;
        border-radius: inherit; /* Inherit border-radius from parent */
 /*   } */
	
	
    .courses-bar {
        width: 100%;
/*        max-width: 90%;*/
        margin: 0 auto;
        background: #fafafa;
        color: #333;
        display: flex;
        justify-content: space-between;
		gap: 5px;
        align-items: center;
        padding: 0px 0;
        box-sizing: border-box;
        overflow: hidden;
        position:relative;
    }

    .course-item {
        flex: 1;
        padding: 10px 15px 10px 20px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        min-height: 50px;
        cursor: pointer;
		border: 1px solid #e8f0fd;
		background-color: white;
		border-bottom: none;
/*		box-shadow: 0 4px 20px rgba(0,0,0,0.5);*/
    }

/*    .course-item::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        height: 75%;
        width: 1px;
        background-color: #e8f0fd;
        transform: translateY(-50%);
    }
*/
    .course-item:hover::after,
    .course-item.active::after {
        width: 0px; /* Set width to 0px on hover and when active */
    }

    .course-item:last-child::after {
        display: none;
    }

    .course-item:hover,
    .course-item.active {
        background-color: #e8f0fd;
    }

    .course-item:hover .item-text,
    .course-item.active .item-text {
        color: #0056b3; /* Change text color to blue on hover and when active */
    }

	.item-text {
		font-family: Poppins, arial, sans-serif;
		font-weight: 400;
		text-align: center;
		padding: 0;
		font-size: 16px;
	}
	
    .icon {
        width: 35px;
        height: 35px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom;
        flex-shrink: 0;
        transition: background-image 0.1s ease;
        margin: 10px;
		box-shadow: none;
		border: none;
    }

    .course-item[data-hash="acpr"] .icon {
        background-image: url('/public/images/icon-old-man.png');
    }

    .course-item[data-hash="cpr"] .icon {
        background-image: url('/public/images/icon-family.png');
    }

    .course-item[data-hash="hcp"] .icon {
        background-image: url('/public/images/icon-doctor1.png');
    }

    .course-item[data-hash="bfa"] .icon {
        background-image: url('/public/images/icon-wound.png');
    }

    .course-item[data-hash="bbp"] .icon {
        background-image: url('/public/images/icon-lab.png');
    }

    .course-item[data-hash="bcls"] .icon {
        background-image: url('/public/images/icon-hand-heart.png');
    }

    .course-item:hover[data-hash="acpr"] .icon,
    .course-item.active[data-hash="acpr"] .icon {
        background-image: url('/public/images/icon-old-man-blue.png');
    }

    .course-item:hover[data-hash="cpr"] .icon,
    .course-item.active[data-hash="cpr"] .icon {
        background-image: url('/public/images/icon-family-blue.png');
    }

    .course-item:hover[data-hash="hcp"] .icon,
    .course-item.active[data-hash="hcp"] .icon {
        background-image: url('/public/images/icon-doctor1-blue.png');
    }

    .course-item:hover[data-hash="bfa"] .icon,
    .course-item.active[data-hash="bfa"] .icon {
        background-image: url('/public/images/icon-wound-blue.png');
    }

    .course-item:hover[data-hash="bbp"] .icon,
    .course-item.active[data-hash="bbp"] .icon {
        background-image: url('/public/images/icon-lab-blue.png');
    }

    .course-item:hover[data-hash="bcls"] .icon,
    .course-item.active[data-hash="bcls"] .icon {
        background-image: url('/public/images/icon-hand-heart-blue.png');
    }

    @media (max-width: 768px) {
        .courses-bar {
            flex-direction: column;
            align-items: stretch;
        }

        .course-item {
            border-right: none;
            border-bottom: 0px solid #0056b3;
            padding: 10px 0;
        }

        .course-item:last-child {
            border-bottom: none;
        }

        .icon {
            margin-right: 5px;
        }
    }

.course-tabs-container {
    box-shadow: none; /* Ensure no shadow by default */
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    will-change: transform, opacity;
}

.course-tabs-container.sticky {
    position: -webkit-sticky; /* for Safari */
    position: sticky;
    top: 0; /* Adjust as needed */
}

.course-tabs-container.sticky.has-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.course-tabs-container.unstuck {
    position: relative; /* or any non-sticky position */
    box-shadow: none; /* Remove shadow when unstuck */
    transform: translateY(-100%);
    opacity: 0;
}
.course-title.slick-slide{
    margin-bottom: -25px;
}
    .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 */
    }
    /* Dark Mode Styles */

    /* Dark Mode Styles specific to #day-night-section */
    #day-night-section.dark-mode {
        padding: 0;
        margin: 0;
        background: linear-gradient(to top, #c0c0c0 0%, #1a1a1a 35%, #191314 100%) !important;
        color: #f0f0f0 !important;
        transition: background-color 0.5s ease, color 0.5s ease;
    }

    /* Preload images */
    .hidden-preload {
        display: none;
    }

    .hidden-preload img {
        visibility: hidden;
    }

    .day-night-toggle {
        cursor: pointer; /* Add pointer on hover */
    }

    /* Default day mode hover */
    .day-night-toggle {
        transition: opacity 0.5s ease, background-color 0.5s ease;
    }

    /*	.day-night-toggle:hover {
            content: url('/public/images/day-hover.png'); /* Default hover swap */
    /*	} */

    #day-night-section.dark-mode .day-night-toggle {
        content: url('/public/images/night.png'); /* Night mode base image */
    }

    /*	.dark-mode .day-night-toggle:hover {
            content: url('/public/images/night-hover.png'); /* Night mode hover swap */
    /*	} */

    /* Example targeting in dark mode */
    .dark-mode #day-night-section {
        background-color: #2b2b2b !important;
        color: #f0f0f0 !important;
        transition: background-color 0.5s ease, color 0.5s ease; /* Smooth transition */
    }

    /* Extended transition when returning to day mode */
    #day-night-section {
        transition: background-color 0.5s ease, color 0.5s ease;
    }

    /* Night mode styling for the intro text */
    #day-night-section.dark-mode .intro-text {
        color: #f0f0f0 !important;
    }

    #day-night-section.dark-mode .cpr-courses-inner {
        color: #f0f0f0 !important;
    }

    #day-night-section.dark-mode .cpr-courses-inner a {
        color: #bb86fc !important; /* Lightened link color */
    }

    #day-night-section.dark-mode span {
        color: #ff6f6f !important; /* Adjusted specific red text color */
    }

    #day-night-section.dark-mode img {
        filter: brightness(0.8) !important; /* Dim images slightly */
    }

    /* Add overrides for any inline color styles */
    #day-night-section.dark-mode .specific-element {
        color: #f0f0f0 !important; /* Overrides specific inline colors */
    }

    #day-night-section.dark-mode a {
        color: #bb86fc !important; /* Adjusts link colors */
    }

    /* Override button colors */
    #day-night-section.dark-mode button, .dark-mode .btn {
        background-color: #333 !important;
        color: #f0f0f0 !important;
    }
    #day-night-section.dark-mode ul.slick-dots li button{
        background-color: transparent !important;
        color: #f0f0f0 !important;
    }


    /* Neon sign styling */
    #neon-sign {
        position: absolute;
        top: 20px;
        right: 20px;
        opacity: 0; /* Hidden by default */
        transition: opacity 0.3s ease;
    }

    /* Flicker animation for the neon effect */
    @keyframes neon-flicker {
        0%, 100% { opacity: 0.8; }
        5% { opacity: 0.4; }
        10% { opacity: 1; }
        20% { opacity: 0.6; }
        30% { opacity: 0.9; }
        40%, 60% { opacity: 0.8; }
        70% { opacity: 1; }
        80% { opacity: 0.9; }
        90% { opacity: 0.7; }
    }

    /* Show in dark mode with flicker */
    .dark-mode #neon-sign {
        display: block; /* Make it visible */
        animation: neon-flicker 2s ease-in-out infinite alternate; /* Flicker effect */
        opacity: 1;
    }
    .underline-image {
        display: block;
        position: absolute;
        width: 64px; /* Adjust width as needed */
        height: 32px;
        top: -4px; /* Move it down by 20px */
        left: -7px; /* Move it right by 30px */
        /*	transform: rotate(4deg); */
        opacity: 0.75;
    }

    .checkmark-image {
        display: block;
        position: absolute;
        width: 40px; /* Adjust width as needed */
        height: 40px;
        top: 56px; /* Move it down by 20px */
        left: 140px; /* Move it right by 30px */
        transform: rotate(4deg);
        opacity: 0.9;
        filter: invert(26%) sepia(95%) saturate(6781%) hue-rotate(355deg) brightness(104%) contrast(112%);
    }

    .exclamation {
        font-family: Rock Salt, Poppins, sans-serif;
        font-size: 30px;
        /*    line-height: 0.9;*/
        transform: rotate(0deg);
        color: red;
        /*    font-style: italic; */
        position: absolute;
        top: -21px;
        left: 47px;
        text-align: center;
        opacity: 0.65;
    }
    /* COURSE SELECTION/MENU TABS General container and grid setup */
    .bento-tabs-container {
        display: grid;
        grid-template-columns: repeat(6, 1fr);  /* 6 columns */
        grid-template-rows: repeat(2, 1fr);     /* 2 equal-height rows */
        gap: 16px;
        width: 85vw;
        max-width: 1200px;
        margin: 0 auto;
    }


    /* Styling for each course block */
    .bento-tabs-container div {
        /*    border-radius: 8px;
        /*    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1); */
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        /*	border: 3px solid blue; */
    }

    .course-item {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Standard shadow */
        padding: 20px;
        color: #333;
        font-size: 150%;                        /* Adjusted for emphasis */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
        grid-row: 1 / span 2;                   /* Each item spans two rows */
    }

    .course-item:hover {
        background-color: #e5f3ff;
        color: #000;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); /* Larger shadow on hover */
    }

    .course-item.active {
        background-color: transparent;
        color: #000;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .course-item.active {
        animation: bounce 0.4s ease-in-out;
    }

    @keyframes bounce {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-5px);
        }
    }

    .course-item.active {
        border: 2px solid #7091e6;
        background-color: transparent;
        /*    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); */
    }

    /* Hover effect to make it feel interactive */
    .bento-tabs-container div:hover {
        transform: translateY(-3px);
        /*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    }

    /* Specific column placements for each item */
    .adult-pediatric-cpr { grid-column: 1; }
    .adult-cpr { grid-column: 2; }
    .emergency-first-aid { grid-column: 3; }
    .bloodborne-pathogens { grid-column: 4; }
    .healthcare-bls { grid-column: 5; }
    .comprehensive-bls { grid-column: 6; }


    /* Text styling for all course blocks */
    .bento-grid div p {
        font-size: 18px;
        /*    font-weight: bold;*/
        color: #333;
        margin: 0;
    }


    .title-container {
        margin: 24px auto;
        width: 75%;
        padding: 25px 0;
        border-radius: 8px;
        background-color: white;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    }

    .title-container h3X {
        font-weight: 500;
        font-size: 32px;
        letter-spacing: .05rem;
    }

    .tooltip {
        --bs-tooltip-bg: #7091e6;
        --bs-tooltip-opacity: 1;
        --bs-tooltip-max-width: 200px;
    }

    .tooltip-inner {
        color: white;
        font-size: 14px;
        font-family: Poppins, Arial, sans-serif;
        width: 300px; /* Set a fixed width (tooltip will not resize) */
        word-wrap: break-word; /* Ensure long text wraps within the tooltip */
        opacity: 0.9; /* Adjust the opacity (0.0 to 1.0) */
    }

    /* Responsive adjustment for smaller screens */
    @media (max-width: 992px) {
        .bento-tabs-container {
            grid-template-columns: repeat(3, 1fr);  /* Switch to 3 columns */
            grid-template-rows: repeat(4, 1fr);     /* 4 rows to fit all items */
        }
        /* Adjust grid placements for 3-column layout */
        .adult-pediatric-cpr { grid-column: 1; grid-row: 1 / span 2; }
        .adult-cpr { grid-column: 2; grid-row: 1 / span 2; }
        .emergency-first-aid { grid-column: 3; grid-row: 1 / span 2; }
        .bloodborne-pathogens { grid-column: 1; grid-row: 3 / span 2; }
        .healthcare-bls { grid-column: 2; grid-row: 3 / span 2; }
        .comprehensive-bls { grid-column: 3; grid-row: 3 / span 2; }
    }
    @media (max-width: 576px) {
        .bento-tabs-container {
            grid-template-columns: repeat(2, 1fr);  /* Switch to 3 columns */
            grid-template-rows: repeat(6, 1fr);     /* 4 rows to fit all items */
        }
        /* Adjust grid placements for 3-column layout */
        .adult-pediatric-cpr { grid-column: 1; grid-row: 1 / span 2; }
        .adult-cpr { grid-column: 2; grid-row: 1 / span 2; }
        .emergency-first-aid { grid-column: 1; grid-row: 3 / span 2; }
        .bloodborne-pathogens { grid-column: 2; grid-row: 3 / span 2; }
        .healthcare-bls { grid-column: 1; grid-row: 5 / span 2; }
        .comprehensive-bls { grid-column: 2; grid-row: 5 / span 2; }
    }

    .bg-color-change {
        transition: background-color 0.150s ease-in-out;
        padding-top: 96px;
        background-color: #effaff;
    }

    /* Hover effect for each course */

    .bg-hover-adult-pediatric-cpr:hover {
        background-color: #effaff; /* Light lavender */
    }

    .bg-hover-adult-cpr:hover {
        background-color: #fbf7fd; /* Light blue */
    }

    .bg-hover-emergency-first-aid:hover {
        background-color: #fffbf4; /* Light peach */
    }

    .bg-hover-bloodborne-pathogens:hover {
        background-color: #f4fff4; /* Light mint green */
    }

    .bg-hover-healthcare-bls:hover {
        background-color: #f5f7ff; /* Light purple-blue */
    }

    .bg-hover-comprehensive-bls:hover {
        background-color: #fcf4f4; /* Light pink */
    }

    /* Targeting the specific button with high specificity */
    .day-night-container{
        width: 75%;
        margin: 72px auto 0 auto;
        display: flex;
        gap: 24px;
        align-items: flex-start;
        justify-content: center;
        padding: 0;
    }
    .day-night-container .left-col{
        position: relative;
        flex: 0.5;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: left;
        margin: 0;
    }
    .day-night-container .right-col{
        flex: 1;
        max-width: 600px;
        margin: 0;
        padding: 0;
        margin: 0;
        text-align: left;
        font-size: 16px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .day-night-section .testimonial-slider{
        width: 100%;
        margin: 50px auto 0 auto;
    }




