:root {
  --blue-color: #155bfb;
  --blue2-color: #1b9dfd;
  --main-color: #1b9dff;
  --white-color: #ffffff;
  --lightblue-color: #ddf0ff;
  --lightblue2-color: #87e2e6;
  --darkblue-color: #101767;



  --dark-color: #000;
  --title-color: #495472;
  --paragraph-color: #8691b1;
  --orange-color: #ffa500; /* Example orange */
  --orange-dark-color: #ff8c00; /* Darker orange for hover */

  
  --add-to-card-button-bg: #ffa500; /* Default color for Add to Cart & Details buttons */
  --add-to-cart-hover: #e68a00; /* Hover color for Add to Cart button */


  --global-border-radius: 10px;

}

/*
=============== 
Global Styles
===============
*/
html {
  scroll-behavior: smooth;
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* container Section */
.container {
  max-width: none; /* or set it to any other desired value */
  padding-right: 0px;
  padding-left: 0px;
}

/* Override styles within the media query */
@media (min-width: 1400px) {
  .container{
    max-width: 1320px;/* Your custom styles here */
	padding-right: 0px;
    padding-left: 0px;
  }
}

/* For narrower screens, add 1px space on each side */
@media (max-width: 768px) {
  .container {
    padding-right: 1%;  /* 1% of the screen width */
    padding-left: 1%;   /* 1% of the screen width */
  }
}



ul {
  list-style-type: none;
  padding-left: 0 !important;
}

dl,
ol,
ul,
p {
  margin-bottom: 0 !important;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button:focus {
  outline: 0;
  box-shadow: none;
}

.btn:focus {
  outline: 0;
  box-shadow: none;
}

.bg-button {
  background: var(--lightblue-color);
  color: var(--darkblue-color);
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  text-align: center;
  
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Subtle shadow */
}

.bg-button:hover {
  background: var(--blue2-color);
  color: var(--white-color);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
  transform: translateY(-2px); /* Slight lift effect */
}

.bg-button:active {
  transform: translateY(1px); /* Button presses down slightly when clicked */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Navbar Section */
/* Navbar Section */
/* Navbar Section */
nav {
  background: var(--main-color);
  padding-right: 40px;
  padding-left: 40px;

}

/* fixed nav */
.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--main-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.fixed-nav .links a {
  color: var(--white-color);
}

.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-toggle {
  font-size: 1.75rem;
  color: var(--white-color);
  background: transparent;
  border-color: transparent;
  transition: all 0.3s linear;
  cursor: pointer;
}

/* .nav-toggle:hover {
  color: var(--main-color);
} */

header .logo { /* ceu4fl logo */
  width: 250px;
  padding: 10px 0;
}

header .nav .logo2 { /* Small home icon */
   width: 60px;
   padding: 10px 0;
   display:none;
}

header .logo3 { /* ceu4fl animation */
	
    width: 250px;
    height: 65px; /* Set the height of the container */
    padding: 10px 0;
    background-image: url('../images/logo.gif'); /* Specify the image URL */
    background-size: cover; /* Scale the image to cover the container */
    background-position: center; /* Center the image within the container */
}

header .logo4 { /* large home icon */
    width: 250px;
    height: 65px;
    padding: 10px 0;
    background-image: url('../images/large_home.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--main-color); /* Match navbar color exactly */
}



.links-container {
  height: 0;
  overflow: hidden;
  transition: all 0.3s linear;
}

.show-links {
  height: 200px;
}

.links {
  padding-top: 20px;
  padding-bottom: 20px;
}

.links a {
  color: var(--white-color);
  font-size: 17px;
  text-transform: capitalize;
  display: block;
  transition: all 0.3s linear;
 
  padding: 10px 10px;
  border-radius: var(--global-border-radius); /* Uses the global setting */
}

#menu-links .contact_us {
  color: blue;
}

/* Styling the cart icon */
.cart-icon {
  font-size: 1.8rem; /* Increase the size of the icon */
  color: var(--white-color); /* Make it white */
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.cart-icon i {
  margin-left: 5px; /* Add a small space between the icon and the text */
}


/* Cart count badge styles */
.cart-count {
  background-color: #ff0000; /* Red background for visibility */
  color: #fff; /* White text */
  font-size: 0.8rem; /* Smaller font */
  border-radius: 50%; /* Circular shape */
  padding: 3px 8px; /* Space inside the badge */
  position: relative;
  top: -10px; /* Adjust position */
  left: 10px; /* Adjust position */
  display: inline-block;
}

/* Styling the cart icon */

/* NAVBAR RESPONSIVE  */
@media screen and (min-width: 800px) {
  nav {
    background: transparent;
  }

  .nav-center {
    width: 100%;
    /* max-width: 1170px; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-header {
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }
  header .logo2 {
 display: none;
  }
  

  
  .links-container {
    height: auto !important;
  }

  .links {
    display: flex;
  }

  .links a {
   color: var(--white-color);
    font-size: 17px;
    text-transform: capitalize;
    display: block;
    transition: all 0.3s linear;
    margin: 0 1rem;

  }

  .links a:hover {
    color: #fff;
  }
}

@media screen and (max-width: 800px) {
  .nav-header {
    display: block;
  }


  header .logo {
    display:none;
  }
  
  header .logo2 {
  width: 35px;
  float: right; /* Align the image(home icon) to the right */
  padding-top: 5px;
  display: block;
}

header .logo3 {
 display:none; /* Animation hidden on smaller screens */
}

header .logo4 {
 display:none; /* large home icon hidden on smaller screens */
}

}

/* hero */
header {
  background: var(--main-color);
}

/* Banner Section  */
/* Banner Section  */
/* Banner Section  */
.banner {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.banner .banner-container {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  column-gap: 0px;
  row-gap: 20px;
}

/* Banner Item  */
.banner .banner-container .banner-item {
  width: 40%;
}

.banner .banner-container .banner-item.details-container {
   padding: 0 0 0 2rem; /* 0 top, 0 right, 0 bottom, 4rem left */
   position: relative;
}

.banner .banner-container .banner-item.right-image {
  width: 60%;
}

.banner .banner-container .center-logo {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.banner .banner-container .center-logo img {
  width: 200px;
}

.banner .banner-container .hero-details {
  padding-top: 1rem; /*top marging hero banner */
}

.banner .banner-container .hero-details p {
  color: var(--white-color);
  font-size: 28px;
  text-align: left;
}



.banner .banner-container .hero-details h1 {
    font-size: 47px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.banner .banner-container .hero-details .hero-description p {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.banner .banner-container .hero-details .courses-description p {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

 
	
	
	
	
.banner .banner-container .hero-details .button-container {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  gap: 20px;
}

.banner .banner-container .hero-details .scroll-container {
  padding-top: 1rem;
  display: flex;
  align-items: center;
  
}

.banner .banner-container .hero-details .button-container a {
  font-size: 17px;
  font-weight: 500;
  display: block;
}

.banner .banner-container .hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
}

.banner .banner-container .hero-image img {
  max-width: 100%;
}

/* Banner Responsive Section */
@media screen and (max-width: 1040px) {
  .banner .banner-container .bg-button {
    width: 150px;
  }
  
  .banner .banner-container .hero-details p {
  font-size: 35px;
}

.banner .banner-container .hero-details h1 {
    font-size: 32px;
   
}


}
@media screen and (max-width: 768px) {
  .banner .banner-container .hero-details h1 {
    font-size: 22px;
	text-align: center;
	
  }

}


@media screen and (max-width: 1040px) {
  .banner .banner-container .hero-details h1
  {
    font-size: 27px;
	
  }
  .banner .banner-container .hero-details h1
  {
    font-size: 25px;
	
  }
  
  .banner .banner-container .hero-details p {
  font-size: 22px;
  }
  
}



@media screen and (max-width: 899px) {
  .banner .banner-container .bg-button {
    width: 130px;
    position: relative;
    z-index: 9;
  }
  
  .banner .banner-container .hero-details p {
  font-size: 30px;
}
  
}


@media screen and (max-width: 767px) {
 
nav {
 padding: 0 6px; /* 0 top and bottom, 24px left and right */

}


 .banner {
    padding-top: 0rem;
  }

  .banner .banner-container {
    flex-direction: column;
  }

  .banner .banner-container .bg-button {
    width: 180px;
  }

  .banner .banner-container .banner-item {
    width: 100%;
  }

  .banner .banner-container .banner-item.right-image {
    width: 100%;
  }

  .banner .banner-container .center-logo {
    display: flex;
  }

  .banner .banner-container .hero-details p {
    text-align: center;
  }

  .banner .banner-container .hero-details .button-container {
    justify-content: center;
  }
  
  .banner .banner-container .hero-details .scroll-container {
    justify-content: center;
  }
  
  .banner .banner-container .hero-image {
    padding-top: 2rem;
  }
  
  .banner .banner-container .banner-item.details-container {
  padding: 0 1rem;
  }
  
   
}


@media screen and (max-width: 468px) {
  .banner .banner-container .bg-button {
    width: 150px;
  }
  
}

@media screen and (max-width: 400px) {
  .banner .banner-container .hero-details p {
    font-size: 18px;
  }

.banner .banner-container .hero-details .hero-description p {
    font-size: 18px;
  }

}

@media screen and (max-width: 335px) {
  .banner .banner-container .bg-button {
    width: 130px;
  }
}



/* All page titles except the launching page */
.page-title {
  background: var(--main-color);
  color: #fff;
  min-height: 80px;
  clip-path: polygon(0 0, 100% 0, 100% 65%, 0% 100%);
}


.page-title .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
}


.page-title .title h1 {
    margin: 0;
     /*font-size: 2rem; Adjust font size as needed */
     padding-top: 10px; /* Adjust this value to move the title down */
}


/* general  */
.title {
  padding-bottom: 1rem;
  font-size: 30px;
}

@media (max-width: 800px) {

     
    .page-title {
    min-height: 40px;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0% 100%);
}

    .page-title .title {
       padding-left: 6px;
    }

    .page-title .title h1 {
        margin: 0;
    }
}



.highlight {
  color: #d69515; /* Example color */
}

.bold-black {
  font-weight: bold;
  color: black;
}





/* Comprehensive Section  */
/* Comprehensive Section  */
/* Comprehensive Section  */
.comprehensive-container {
  margin-top: 6rem;
}

.comprehensive-container .comprehensive-photo {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.comprehensive-container .comprehensive .photo img {
  max-width: 100%;
}

/* Comprehensive Details  */
.comprehensive .comprehensive-detail {

    font-weight: 300;
	
  padding-left: 2rem;
  display: flex;
  /* min-height: 400px; */
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}


.comprehensive .comprehensive-detail .comprehensive-info p {
  color: var(--paragraph-color);
  font-size: 18px;
}






/* Comprehensive Responsive Section  */
@media screen and (max-width: 992px) {
  .comprehensive .comprehensive-detail .comprehensive-title p {
    font-size: 23px;
  }

  .comprehensive .comprehensive-detail {
    padding: 0 0;
  }

  .comprehensive .comprehensive-detail .comprehensive-info p {
    font-size: 16px;
  }

}

@media screen and (max-width: 767px) {
  .comprehensive-container {
    margin-top: 10rem;
  }

  .comprehensive .comprehensive-detail {
    margin-top: 1rem;
    min-height: auto;
  }
}

@media screen and (max-width: 400px) {
  .comprehensive-container .comprehensive {
    padding: 0 0;
  }
}

@media screen and (max-width: 357px) {
  .comprehensive-detail .comprehensive-title p {
    font-size: 20px !important;
  }
}



/* info */
/* info */
/* info */
.info_container {
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    max-width: 600px;
}

.info_container .content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.info_container .text {
    flex: 1;
    padding-right: 20px;
}


.info_container .text p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.info_container .image img {
    max-width: 100%;
    height: auto;
}






/* Experience Section */
/* Experience Section */
/* Experience Section */
.experience-container {
  margin-top: 6rem !important;
}

.experience-container .experience-photo {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.experience-container .experience .photo img {
  max-width: 100%;
}

/* Experience Details */
.experience .experience-detail {
	
	
  font-weight: 300;
	
  padding: 0 2rem;
  display: flex;
  /* min-height: 400px; */
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}




.experience .experience-detail .experience-info p {
  color: var(--paragraph-color);
 font-size: 18px;
}



/* Experience Responsive Section */
@media screen and (max-width: 992px) {
  .experience .experience-detail .experience-title p {
    font-size: 23px;
  }

  .experience .experience-detail {
    padding: 0 0;
  }

  .experience .experience-detail .experience-info p {
    font-size: 16px;
  }

}

@media screen and (max-width: 767px) {
  .experience .experience-detail {
    margin-top: 20px;
    min-height: auto;
  }

  .experience .order-item-2 {
    order: calc(2);
  }

  .experience .order-item-1 {
    order: calc(1);
  }
}

@media screen and (max-width: 400px) {
  .experience-container .experience {
    padding: 0 0;
  }
}

@media screen and (max-width: 357px) {
  .experience-detail .experience-title p {
    font-size: 20px !important;
  }
}



/* Provider Section */
/* Provider Section */
/* Provider Section */
.provider-container {
  margin-top: 6rem !important;
}

.provider-container .provider .photo {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.provider-container .provider .photo img {
  max-width: 100%;
}

/* Provider Details */
.provider .provider-detail {
	font-weight: 300;
  display: flex;
  min-height: auto;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}


.provider .provider-detail .provider-title {
  padding-bottom: 1rem;
}

.provider .provider-detail .provider-title p {
  color: var(--title-color);
  font-size: 30px;
}


.provider .provider-detail .provider-info p {
  color: var(--paragraph-color);
  font-size: 18px;
}



/* Provider Responsive Section */
@media screen and (max-width: 992px) {
  .provider .provider-detail .provider-title p {
    font-size: 23px;
  }

  .provider .provider-detail {
    padding: 0 0;
  }

  .provider .provider-detail .provider-info p {
    font-size: 16px;
  }

}

@media screen and (max-width: 767px) {
  .provider .provider-detail {
    margin-top: 30px;
  }
}

@media screen and (max-width: 400px) {
  .provider-container .provider {
    padding: 0 0;
  }
}

@media screen and (max-width: 357px) {
  .provider .provider-detail .provider-title p {
    font-size: 20px !important;
  }
}





/* Faq Section  */
/* Faq Section  */
/* Faq Section  */
.faq-section .faq-title {
  background: var(--lightblue-color);
  min-height: 150px;
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0% 100%);
}

.faq-section .faq-title h1 {
  font-size: 35px;
  color: var(--dark-color);
  text-align: center;
  padding-top: 40px;
  font-weight: 600;
}

.faq-section .faq-container {
  width: 100%;
  background: var(--lightblue-color);
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.faq-section .faq-container .accordion-button:not(.collapsed) {
  color: var(--dark-color) !important;
  background: var(--white-color);
}

.faq-section .faq-container .accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.faq-section .faq-container .accordion-header .accordion-button {
  font-size: 20px;
  color: var(--dark-color);
  font-weight: 500;
}

.faq-section .faq-container .accordion-body {
  font-size: 17px;
  color: var(--dark2-color);
}

.faq-section .button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.faq-section .button-container a {
  font-size: 17px;
  font-weight: 500;
  display: block;
}

/* Faq Responsive Section  */
@media screen and (max-width: 400px) {
  .faq-section .faq-container .accordion-header .accordion-button {
    font-size: 17px;
  }

  .faq-section .faq-container .accordion-body {
    font-size: 15px;
  }
}


/* Style for the share icon */
.share-icon {
    display: inline-block;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px; /* square look with slightly rounded corners */
    background-color:rgb(255, 255, 255);
    border: 0px solid #e3e6ea;
    transition: all 0.3s ease;
}

.share-icon i {
    color: var(--main-color);
    font-size: 1.2em;
}

/* Hover effect for the share icon */
.share-icon:hover {
    background-color: var(--main-color);
    transform: scale(1.1);
}

/* Change icon color on hover */
.share-icon:hover i {
    color: #ffffff;
}







/* Footer Section  */
/* Footer Section */
.footer {
  background: var(--lightblue-color);
}

.footer-container {
  background: var(--main-color);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
  padding-top: 3rem;
  margin-bottom: -1px;
}

.footer .container {
  max-width: 1320px; /* Set the width to 1320px */
  margin: 0 auto; /* Center the container */
  display: flex;
  justify-content: space-between; /* Ensure items are spread out */
}

.footer-column {
  flex: 1; /* Default size for the other columns */
  min-width: 200px; /* Minimum width for each column */
  margin: 1rem;
}

.footer-column:first-child {
  flex: 1.5; /* Make the first column take up more space */
}

.footer .logo img {
  width: 220px;
}

.footer .logo {
  padding-bottom: 1rem; /* Added padding to create space between the logo and address */
}

.footer-detail p {
  color: var(--white-color);
  font-size: 17px;
}

.footer-title {
  color: var(--white-color);
  font-size: 18px;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-list li a {
  color: var(--white-color);
  text-decoration: none;
}

.footer-list li a:hover {
  color: var(--lightblue-color);
}

address {
  font-style: normal;
  color: var(--white-color);
}

.copyright-title {
  font-size: 14px;
  color: var(--white-color);
  background: var(--title-color);
  width: 100%;
  padding: 1rem 0;
  text-align: center;
}

.top-link {
  font-size: 17px;
  position: fixed;
  bottom: 0;
  right: 0;
  background: var(--title-color);
  width: 30px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  color: var(--white-color);
  border: 1px solid #ccc;
  visibility: hidden;
  z-index: -100;
}

.show-link {
  visibility: visible;
  z-index: 100;
}

/* social media */
.footer-line {
  border: 0;
  height: 1px;
  background-color: #ccc;
  margin: 10px 0;
}


.social-media {
  display: flex;
  gap: 15px; /* Adjust spacing between icons */
}

.social-media a {
  color: #000;
  font-size: 30px; /* Increase the size of the icons */
}

.social-media a:hover {
  color: #d69515; /* Change to desired hover color */
}

/* Media Query for Small Screens */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center; /* Center the columns */
  }

  .social-media {
    justify-content: center; /* Center the social media icons */
    margin-top: 20px; /* Add some space above the icons if needed */
  }

  .footer-column {
    text-align: center; /* Center align text in each column */
  }
}

/* social media */




html {
  scroll-behavior: smooth;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-column {
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer-column:first-child {
    flex: 1; /* Restore normal size for mobile screens */
  }
  
  .footer-container {
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% 100%);
  }
  
  
}






/* ========================
   BUTTON STYLES
   ======================== */


.top-selection {
    padding-top: 0;
  	padding-bottom: 0;
}



/* Base Button Style */
.btn {
    width: 100%; /* Full width inside container by default */
    border: none; /* Remove border */
    color: #fff; /* White text */
    text-align: center;
    text-decoration: none;
    box-sizing: border-box; /* Include padding in width/height */
}

/* Extra Style (Overrides for top buttons) */
.extra-style {
    background-color: #007bff; /* Bootstrap blue */
    border: 1px solid #007bff;
    color: white;
    display: inline-block; /* Prevent full-width */
    width: auto; /* Auto width based on content */
    border-radius: var(--global-border-radius); /* Uses the global setting */
}

/* "Show All" Button */
.container .btn-show-all {
    background-color: var(--add-to-card-button-bg); /* Orange-yellow background */
    color: black; /* Black text */
    border-color: #d69515; /* Matching border */
}

/* Active Button State */
.active-btn {
    background-color: #007bff; /* Bootstrap blue */
    color: white; /* White text */
    border-color: #007bff; /* Matching border */
}

/* ========================
   FILTER BUTTONS
   ======================== */

/* Default filter button look */
.container .filter-button {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    transition: box-shadow 0.3s ease; /* Smooth shadow transition */
}

/* Hover effect for filter buttons */
.container .filter-button:hover {
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2); /* Stronger shadow */
}

/* ========================
   BUTTON CONTAINER
   ======================== */

/* Button container alignment */
.container .button-container {
    justify-content: left; /* Align buttons left */
    margin-top: 0; /* No extra top space */
}

/* Keep alignment; shrink buttons on small screens */
@media (max-width: 800px) {

  .top-selection {
    padding-left: 5px;
    padding-right: 5px;
}



  .button-container .btn {
    padding: 4px 8px;         /* tighter padding */
    font-size: 0.95rem;       /* smaller text */
    line-height: 1.2;
    flex: 0 0 auto;           /* prevent stretching full width */
  }

  /* if extra-style adds bigger padding, tame it further */
  .button-container .extra-style {
    padding: 4px 8px;
  }

  /* keep the counter on the right, search below full width */
  #course-total {
    order: 5;                 /* right side of row */
    margin-left: auto;        /* push to right (same as ms-auto) */
  }
  #search-input {
    order: 999;               /* new line below */
    width: 100%;
    margin-top: .5rem;
    max-width: 100%;          /* avoid shrinking weirdness */
  }
}



/* Typography Styles */
/* Card Title (h2) */


.card h2 {
    font-size: 1.2em; /* Large, readable font size */
    font-weight: normal;
    margin-bottom: 5px; /* Add spacing below the title */
    text-align: left; /* Align title to the left */
    color: var(--main-color);
}


/* Label Style */
.card .label {
    font-size: 0.9em; /* Modern, readable font size */
    font-weight: 600; /* Semi-bold for emphasis */
    color: #555; /* Slightly lighter gray for labels */
    text-transform: uppercase; /* Make labels stand out */
    margin-bottom: 0px; /* Add spacing below labels */
    display: block; /* Ensure proper spacing */
    font-family: 'Inter', 'Roboto', 'Arial', sans-serif; /* Modern font-family */
    letter-spacing: 1px; /* Add letter spacing for style */
}

/* Paragraph Style */
.card .paragraph {
    font-size: 1em; /* Modern, readable size */
    line-height: 1.6; /* Improve readability */
    color: var(--paragraph-color);
    margin-bottom: 10px; /* Add spacing between paragraphs */
    font-family: 'Inter', 'Roboto', 'Arial', sans-serif; /* Modern font-family */
}
/* Typography Styles */

.spacer {
    flex-grow: 1; /* Pushes content below it to the bottom */
}


.card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-price {
    font-size: 2.2em;
    font-weight: normal;
    color: #333;
    display: flex;
    align-items: center;
	color: var(--main-color);
}



/* Card footer */
.card-footer {
    display: flex; /* Use flexbox for horizontal alignment */
    gap: 10px; /* Add spacing between buttons */
    padding: 15px 10px; /* Add spacing */
    border-top: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
}


.card-footer form,
.card-footer a {
    flex: 1; /* Force equal width for both buttons */
    display: flex; /* Make them behave the same */
}

.btn-add-to-cart,
.btn-details {
    background-color:  var(--add-to-card-button-bg);
    border-radius: var(--global-border-radius); /* Uses the global setting */
    margin: 5px; /* Adds spacing between buttons */
    flex: 1; /* Ensure equal width for both buttons */
    text-align: center; /* Align text to center */
    box-sizing: border-box; /* Include padding and border in width calculation */
    display: flex; /* Force consistent behavior */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
	text-decoration: none; /* Remove underline from links */
    padding: 10px 0px !important; /* Override any inherited padding */
	margin: 0px !important; /* Override any inherited padding */
}


.btn-details {
    background-color: #007bff;
    text-decoration: none;
    align-items: center; /* Vertical alignment */
    justify-content: center; /* Horizontal alignment */
}

.card .btn-details:hover {
    background-color: #0056b3; /* Darker blue shade for hover effect */
    color: white; /* White text for better contrast */
    transition: all 0.3s ease; /* Smooth transition for all properties */
}

.card .btn-add-to-cart:hover {
    background-color: var(--add-to-cart-hover); /* Darker orange for hover effect */
    color: white; /* White text for better contrast */
    transition: all 0.3s ease; /* Smooth transition for all properties */
}


.card-title {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #1b9dff !important; /* Marked as important */
}
/* Card footer */



