/* Fonts */
@font-face {
  font-family: 'Kolkektif';
  /* Give the font a name */
  src: url('../fonts/Kollektif.ttf') format('truetype');
}

/* 
:root {
  --default-font: "Kolkektif", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Kolkektif", sans-serif;
  --nav-font: "Kolkektif", sans-serif;
} */

:root {
  --default-font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

:root {
  --background-color: #fafbf9;
  /* Background color for the entire website, including individual sections */
  /* --default-color: #646464; */
  --default-color: #322929;
  /* Default text color used for the majority of text content across the website */
  --heading-color: #257766;
  /* Color for headings, subheadings, and titles */
  --accent-color: #257766;
  /* Accent color for buttons, links, and elements that need to stand out */
  --surface-color: #ffffff;
  /* Background of boxed elements (e.g., cards, icon boxes) */
  --contrast-color: #ffffff;
  /* Text color for readability on backgrounds with accent or heading colors */
  --secondary-text-color: #000000;
}

:root {
  --nav-color: #257766;
  /* Default color for main navigation menu links */
  --nav-hover-color: #257766;
  /* Hover and active color for nav menu links */
  --nav-mobile-background-color: #fafbf9;
  /* Background color for mobile navigation menu */
  --nav-dropdown-background-color: #fafbf9;
  /* Background color for dropdown items in navigation menu */
  --nav-dropdown-color: #646464;
  /* Default color for dropdown navigation links */
  --nav-dropdown-hover-color: #257766;
  /* Hover color for dropdown navigation links */
}


.light-background {
  --background-color: #fafbf9;
  /* Background for light sections */
  --surface-color: #ffffff;
  /* Light surface color */
}

.dark-background {
  --background-color: #060606;
  /* Background for dark sections */
  --default-color: #ffffff;
  /* Text color for dark sections */
  --heading-color: #ffffff;
  /* Heading color for dark sections */
  --surface-color: #252525;
  /* Surface background for boxed elements */
  --contrast-color: #ffffff;
  /* Contrast color for text on dark sections */
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

.text-td-green {
  color: var(--accent-color);
}

.start-icon-color {
  color: #c4710d !important;
}

.bg-td-green {
  background-color: var(--accent-color);
}

.bg-td-black {
  background-color: var(--secondary-text-color) !important;
}

.font-color-white {
  color: white !important;
}

.no-hover:hover {
  transform: none !important;
}

.no-hover-btn:hover {
  background-color: white !important;
  color: black !important;
  border: 1px solid black !important;
}


a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0 0 0 0;
  transition: all 0.5s;
  z-index: 997;
}

.margin-top-20 {
  margin-top: 20px !important;
}

.header .input-group {
  position: relative;
}

.header .input-group-text {
  position: absolute;
  left: 20px;
  /* Adjust this for the desired horizontal spacing */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  /* Ensures the icon does not block input */
}


.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 45px;
  /* Adjust the height to make the logo more prominent */
  margin-right: 8px;
  /* Keeps spacing consistent */
  height: auto;
  /* Ensures the image maintains its aspect ratio */
  width: auto;
  /* Ensures the image scales proportionally */
}


/* .header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
} */

.header .btn-explore,
.header .btn-explore:focus {
  color: var(--contrast-color) !important;
  background: var(--accent-color);
  font-size: 15px;
  padding: 8px 10px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.header .btn-explore:hover,
.header .btn-explore:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color)
}

/* Dropdown button hover effect */
.login .dropdown .btn:hover {
  background-color: #e9ecef;
}

/* Dropdown menu styling */
.login .dropdown-menu {
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

/* Dropdown items hover effect */
.login .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #257766;
}

.login-cart .cart-count {
  font-size: 0.7rem;
  border-radius: 50%;
  margin-top: 10px;
  margin-right: 10px;
  margin-left: -10px;
}

@media (max-width: 767px) {
  .login-cart {
    margin-right: 10px;
  }


  .border-2px {
    border-bottom: 2px solid darkgray;
  }


  .border-all-2px {
    border: 2px solid darkgray !important;
  }

  .border-80 {
    position: relative;
    display: inline-block;
    padding: 15px 35px !important;
    /* or block */
  }

  .border-80::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    /* push from left side */
    width: 85%;
    /* only 85% line */
    border-bottom: 2px solid darkgray;
  }

  .border-80-new {
    position: relative;
    display: inline-block;
    padding: 10px !important;
  }

  .border-80-new::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 70%;
    /* border-bottom: 2px solid darkgray; */
  }

  .padding-15 {
    padding: 15px !important;
  }

  .placeholder-18::placeholder {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .header .navmenu {
    order: 1;
  }

  .header .container-fluid {
    position: relative;
  }

  .header .logo {
    /* position: absolute; */
    left: 50%;
    transform: translateX(-25%);
    z-index: 10;
  }

  .header .logo {
    order: 2;
  }

  .header .site-login-cart {
    order: 3;
    margin: 0;
    padding: 6px 0px;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 12px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 10px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 100%;
    /* Change left to 100% to open the dropdown to the right */
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    /* Ensure the dropdown stays to the right */
    visibility: visible;
  }

  .navmenu .search-widget form {
    background: var(--background-color);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    padding: 0px 10px;
    position: relative;
    transition: 0.3s;
  }

  .navmenu .search-widget form input[type=text] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: 380px;
    background-color: var(--background-color);
    color: var(--default-color);
  }

  .navmenu .search-widget form input[type=text]:focus {
    outline: none;
    /* Remove the default outline */
    box-shadow: none;
    /* Remove any box-shadow that might be causing the extra border */
  }



  .navmenu .search-widget form button {
    background: var(--accent-color);
    color: var(--contrast-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
  }

  .navmenu .search-widget form button i {
    line-height: 0;
  }

  .navmenu .search-widget form button:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }

  .navmenu .search-widget form:is(:focus-within) {
    border-color: var(--accent-color);
  }

}

/* Navmenu - Mobile */
@media (max-width: 1199px) {

  /*  */
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 36px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    height: 340px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }


  .navmenu h2,
  .navmenu h2:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    /* position: absolute; */
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }

  .navmenu .search-widget form {
    padding: 10px;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: flex-start;
  justify-content: start;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 20px;
  color: var(--accent-color);
  transition: 0.3s;
  padding: 0;
  margin: 0;
}

/* .footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
} */

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.iso-img {
  max-height: 5rem;
  /* Adjust the height of the ISO logo */
  margin-top: 10px;
  /* Add spacing if needed */
  border-radius: 50%;
}


.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 30px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

@media (max-width: 767px) {

  section,
  .section {
    padding-top: 30px;
    padding-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: var(--accent-color);
  color: #fafbf9;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 1.50rem;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 90px 0 60px 0;
  display: flex;
  align-items: center;
  /* background: url(../img/hero-bg.png) top center no-repeat; */
  background-color: var(--background-color);
  background-size: cover;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

/* Hero Section Swiper Styles */
.hero .swiper {
  border-radius: 15px;
  /* Rounded corners for the swiper */
  overflow: hidden;
  /* Ensure the images inside the swiper are clipped to the rounded corners */
}

.hero .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  /* Ensure the slide takes full height */
}

.hero .swiper-pagination {
  position: absolute;
  bottom: 15px;
  /* Position the pagination outside the image */
  left: 50%;
  transform: translateX(-50%);
  /* Center the pagination horizontally */
  z-index: 10;
  /* Ensure the pagination is above the images */
}

.hero .swiper-pagination-bullet {
  background-color: #bea9a9;
  /* White bullets */
  width: 12px;
  height: 12px;
  opacity: 0.7;
  /* Slight transparency */
  transition: all 0.3s ease;
  /* Smooth transition for hover effect */
}

.hero .swiper-pagination-bullet:hover {
  background-color: var(--accent-color);
  /* Change bullet color on hover */
  opacity: 1;
  /* Full opacity on hover */
}

.hero .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  /* Active bullet color */
  opacity: 1;
  /* Full opacity for active bullet */
}

/* Stats Card Styling */
.hero .stats-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

/* Stats Row Styling */
.hero .stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}

/* Stats Item Styling */
.hero .stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  width: 33.33%;
  /* Each stat takes up 1/3 of the row */
}

/* Icons and Numbers */
.hero .stats-item i,
.stats-item .purecounter {
  /* color: var(--accent-color); */
  /* Green color for icon and number */
}

.hero .stats-item i {
  font-size: 3rem;
  /* Icon size */
  margin-bottom: 10px;
}

.hero .stats-item .purecounter {
  font-size: 3rem;
  /* font-weight: bold; */
}

.hero .stats-item p {
  font-size: 1rem;
  color: #333;
  margin-top: 5px;
  margin-bottom: 0;
}

/* Vertical Line Separator */
.hero .separator {
  border-left: 2px solid #a89d9d;
  /* Light gray color for the separator */
  height: 100%;
  margin: 0 15px;
  /* Space between stats items */
}

/* Ensuring the separator is visible */
.hero .separator {
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .hero .swiper {
    margin-top: 20px;
  }

  .hero .stats-item {
    width: 100%;
    /* Ensure full width on mobile */
    margin-bottom: 10px;
  }

  /* Hide separator on mobile */
  .hero .separator {
    display: none;
  }

  .hero {
    padding: 80px 0 0 0;
    min-height: auto;
  }
}


@media (max-width: 640px) {
  .hero h1 {
    font-size: 25px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .trending-courses h3 {
    font-size: 27px !important;
    line-height: 36px;
  }

  .fs-1-8-rem {
    font-size: 1.8rem !important;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  transition: 0.3s;
  opacity: 0.5;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .clients p {
    font-size: 1.75rem;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/* Remove background from left container */
.about .content {
  background-color: transparent;
  /* Remove background */
}

.about .content .icon-img {
  width: 4rem;
  /* Adjust size to be similar to fs-2 (Bootstrap font size) */
  height: 4rem;
  object-fit: contain;
  /* Ensures images don't stretch */
}

/* Section Heading */
.about .content h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-color);
}

/* Main Heading */
.about .content h5 {
  font-size: 1.4rem;
  font-weight: 900;
}

.about .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

/* Grid Item Styling */
.about .content .d-flex {
  background-color: #efeef4;
  /* Grey background */
  border-left: 10px solid #14532d;
  /* Dark green border */
  border-radius: 4px;
  /* Optional rounded corners */
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  /* Optional shadow */
}

/* Icon Styling */
.about .content i {
  color: #14532d;
  /* Dark green icon */
  font-size: 2.5rem;
  /* Icon size */
  margin-right: 15px;
}

/* Button Styling */
.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .content .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}


@media (max-width: 640px) {
  .about .content h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .about .content h5 {
    font-size: 18px;
    line-height: 36px;
  }
}

/*--------------------------------------------------------------
# Courses Section
--------------------------------------------------------------*/

/* Course Section Header */
.courses-one h2 {
  color: var(--secondary-text-color);
  font-size: 2.2rem;
}

.courses-one .btn-outline-primary {
  transition: all 0.3s ease;
}

.courses-one .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color)
}

/* Tab Styling */
.courses-one .nav-pills .nav-link {
  transition: all 0.3s ease;
  color: var(--accent-color);
  padding: 10px 20px;
  /* Add padding for better spacing */
}

.courses-one .nav-pills .nav-link:hover {
  color: var(--hover-color);
}

.courses-one .nav-pills .nav-link.active {
  border-bottom: 2px solid #000000;
  background-color: transparent;
  color: #000000;
  border-radius: 0px;
}

#courseTabs {
  display: flex;
  overflow-x: auto;
  /* Enables horizontal scrolling */
  -webkit-overflow-scrolling: touch;
  /* Smooth scrolling for mobile devices */
  padding-bottom: 10px;
  /* Optional: Adds spacing between tabs and bottom of the container */
  scroll-behavior: smooth;
  /* Smooth scrolling */
  width: 100%;
  /* Ensures the tabs container takes full width */
  flex-wrap: nowrap;
  /* Ensures the items don't wrap */
}

#courseTabs .nav-item {
  white-space: nowrap;
  /* Prevents the text from wrapping */
  margin-right: 15px;
  /* Optional: Adds spacing between each tab */
}

#courseTabs .nav-item:last-child {
  margin-right: 0;
  /* Removes margin from the last item */
}

#courseTabs::-webkit-scrollbar {
  height: 5px;
  /* Optional: Customizes the scrollbar height */
}

#courseTabs::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  /* Optional: Customizes the scrollbar thumb color */
  border-radius: 4px;
}

#courseTabs::-webkit-scrollbar-thumb:hover {
  background-color: #555;
  /* Optional: Changes the color when hovering over the scrollbar */
}


/* Card Hover Effect */
.courses-one .card {
  box-shadow: 0px 2px 5px var(--default-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Ensure the card stretches to the full height */
}

.courses-one .card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 12px var(--card-shadow-color);
}

.courses-one .card-body {
  flex: 1;
  /* Makes sure the body content takes up remaining space */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Proper spacing for content */
}

.courses-one .card-img-top {
  height: 180px;
  /* object-fit: cover; */
  /* Ensures images are cropped uniformly */
}

.courses-one .card-title {
  min-height: 3rem;
  /* Ensure even height for all titles */
  line-height: 1.5rem;
  text-align: start;
  /* Centers titles in the card */
  flex-shrink: 0;
  /* Prevent title from shrinking */
}

.courses-one .view-detail-btn {
  margin-top: auto;
  /* Pushes button to the bottom */
  transition: all 0.3s ease;
}


/* Badge Styling */
.courses-one .badge {
  font-size: 0.75rem;
  padding: 0.4em 0.7em;
}


.courses-one .view-detail-btn:hover {
  background-color: white !important;
  color: black !important;
  border: 1px solid black !important;
}

/* Courses Card Slider Animation */

.courses-one .swiper-wrapper {
  height: auto;
}

.courses-one .swiper-pagination {
  margin-top: 10px;
  position: relative;
}

.courses-one .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.courses-one .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.courses-one .swiper-slide {
  /* width: auto !important; */
  /* Prevent Swiper from controlling the width */
  display: block !important;
  /* Allow the grid system to work */
  padding: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .courses-one h2 {
    font-size: 1.4rem;
  }

  .h5,
  h5 {
    font-size: 0.95rem !important;
  }

  .courses-one .text-end {
    text-align: start !important;
    margin-top: 0.5rem;
  }

  .courses-one .swiper-slide {
    width: 100%;
    /* Enforce single card per view */
    margin-right: 0;
    /* Remove margin for seamless replacement */
  }
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
/* Background color for the section */
.why-choose-us {
  background-color: var(--background-color);
}

/* Title background (green rectangle) */
.title-background {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/* Text styling for the quote */
.quote-text {
  color: var(--secondary-text-color);
}

/* Highlighted text in green */
.highlighted-text {
  color: var(--accent-color);
  font-weight: bold;
}

/* Hover effect for cards */
.card:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# Expert Panel Section
--------------------------------------------------------------*/
/* Expert Panel Card */
.expert-panel .swiper-slide .card {
  width: 100%;
  max-width: 300px;
  margin: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  word-wrap: break-word;
  /* Ensures long words break */
  overflow-wrap: break-word;
  /* Breaks long words gracefully */
  text-align: left;
  /* Prevents card content from stretching */
}

.expert-panel .swiper-slide .card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.expert-panel .swiper-slide .card-img-top {
  /* height: 250px !important; */
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  object-fit: contain !important;
  object-position: top;
}

/* Card Body */
.expert-panel .swiper-slide .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem !important;
  word-wrap: break-word;
  /* Ensures text wraps within the card */
  overflow-wrap: break-word;
  text-align: center;
}

/* Title */
.expert-panel .swiper-slide .card-body h5 {
  font-size: 1rem;
  line-height: 1.4;
  word-wrap: break-word;
  /* Ensures text wraps */
  overflow-wrap: break-word;
  /* Break long words */
  white-space: normal;
  /* Prevents forcing single-line text */
  text-overflow: ellipsis;
  /* For long text truncation */
}

/* Author and Description */
.expert-panel .swiper-slide .card-body p {
  font-size: 0.7rem;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  text-align: center;
  /* Ensure text wraps instead of one line */
}

.min-h-34 {
  min-height: 34px !important;
}

/* Join Now Button */
.expert-panel .swiper-slide .btn {
  background-color: var(--accent-color);
  /* Default green */
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  text-align: center;
  border: none;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .expert-panel h2 {
    font-size: 0.8rem;
    text-align: center;
  }

  .expert-panel .text-end {
    text-align: start !important;
    margin-top: 0.5rem;
  }

  .expert-panel p {
    font-size: 1.5rem;
    text-align: center;
  }
}

/* Courses Card Slider Animation */
.expert-panel .swiper-wrapper {
  height: auto;
}

.expert-panel .swiper-pagination {
  margin-top: 10px;
  position: relative;
}

.expert-panel .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.expert-panel .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.expert-panel .swiper-slide {
  /* Prevent Swiper from controlling the width */
  display: block !important;
  /* Allow the grid system to work */
  padding: 10px;
}

/* Responsive Adjustments For the Slider */
@media (max-width: 768px) {
  .expert-panel .swiper-slide {
    width: 100%;
    /* Enforce single card per view */
    margin-right: 0;
    /* Remove margin for seamless replacement */
  }

  .expert-panel .swiper-slide .card {
    max-width: 90%;
    box-shadow: 6px 6px 0px 0px rgb(0 0 0 / 10%) !important;
    /* Allow more width on smaller screens */
  }

  .trending-courses .card {
    max-width: 90%;
    margin: auto;
    /* Allow more width on smaller screens */
  }

  .courses-one .card {
    max-width: 90%;
    margin: auto;
    /* Allow more width on smaller screens */
  }

  .expert-panel .swiper-slide .card-img-top {
    height: 250px;
  }

  .expert-panel .swiper-slide .card-body h5 {
    font-size: 1rem;
    text-align: center;
  }

  .expert-panel .swiper-slide .card-body p {
    font-size: 0.8rem;
    text-align: center;
  }

}

/*--------------------------------------------------------------
# Trending Courses Section
--------------------------------------------------------------*/
.trending-courses h3 {
  color: var(--secondary-text-color);
  font-size: 2.5rem;
}

.trending-courses .btn-outline-primary {
  transition: all 0.3s ease;
}

.trending-courses .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color)
}

/* Tab Styling */
/* Tab Styling */
.trending-courses .nav-pills .nav-link {
  transition: all 0.3s ease;
  color: var(--accent-color);
  padding: 10px 20px;
  /* Add padding for better spacing */
}

.trending-courses .nav-pills .nav-link:hover {
  color: var(--hover-color);
}

.trending-courses .nav-pills .nav-link.active {
  border-bottom: 2px solid #000000;
  background-color: transparent;
  color: #000000;
  border-radius: 0px;
}

#trending-coursesTab {
  display: flex;
  overflow-x: auto;
  /* Enables horizontal scrolling */
  -webkit-overflow-scrolling: touch;
  /* Smooth scrolling for mobile devices */
  padding-bottom: 10px;
  /* Optional: Adds spacing between tabs and bottom of the container */
  scroll-behavior: smooth;
  /* Smooth scrolling */
  width: 100%;
  /* Ensures the tabs container takes full width */
  flex-wrap: nowrap;
  /* Ensures the items don't wrap */
}

#trending-coursesTab .nav-item {
  white-space: nowrap;
  /* Prevents the text from wrapping */
  margin-right: 15px;
  /* Optional: Adds spacing between each tab */
}

#trending-coursesTab .nav-item:last-child {
  margin-right: 0;
  /* Removes margin from the last item */
}

#trending-coursesTab::-webkit-scrollbar {
  height: 5px;
  /* Optional: Customizes the scrollbar height */
}

#trending-coursesTab::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  /* Optional: Customizes the scrollbar thumb color */
  border-radius: 4px;
}

#trending-coursesTab::-webkit-scrollbar-thumb:hover {
  background-color: #555;
  /* Optional: Changes the color when hovering over the scrollbar */
}


/* Card Hover Effect */
.trending-courses .card {
  box-shadow: 0px 2px 5px var(--default-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Ensure the card stretches to the full height */
}

.trending-courses .card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 12px var(--card-shadow-color);
}

.trending-courses .card-body {
  flex: 1;
  /* Makes sure the body content takes up remaining space */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Proper spacing for content */
}

.trending-courses .card-img-top {
  height: auto;
  object-fit: cover;
  /* Ensures images are cropped uniformly */
}

.card-img,
.card-img-top {
  height: 200px;
}

.courses-covered .card-img-top {
  height: auto !important;
  object-fit: cover !important;
  /* Ensures images are cropped uniformly */
}

.card-img,
.card-img-top {
  height: auto !important;
  object-fit: cover !important;
  /* Ensures images are cropped uniformly */
}

@media screen and (max-width: 767px) {
  .courses-covered .card-img-top {
    height: auto !important;
    object-fit: cover !important;
    /* Ensures images are cropped uniformly */
  }

  .card-img,
  .card-img-top {
    height: auto !important;
    object-fit: cover !important;
    /* Ensures images are cropped uniformly */
  }
}

.height-auto {
  height: auto !important;
}

.trending-courses .card-title {
  min-height: 3rem;
  /* Ensure even height for all titles */
  line-height: 1.5rem;
  text-align: start;
  /* Centers titles in the card */
  flex-shrink: 0;
  /* Prevent title from shrinking */
}

.trending-courses .view-detail-btn {
  margin-top: auto;
  /* Pushes button to the bottom */
  transition: all 0.3s ease;
}


/* Badge Styling */
.trending-courses .badge {
  font-size: 0.7rem;
  padding: 0.4em 0.7em;
}


.trending-courses .view-detail-btn:hover {
  background-color: white !important;
  color: black !important;
  border: 1px solid black !important;
}

/* Courses Card Slider Animation */

.trending-courses .swiper-wrapper {
  height: auto;
}

.trending-courses .swiper-pagination {
  /* margin-top: 20px; */
  position: relative;
}

.trending-courses .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.trending-courses .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.trending-courses .swiper-slide {
  /* Prevent Swiper from controlling the width */
  display: block !important;
  /* Allow the grid system to work */
  padding: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .trending-courses h2 {
    font-size: 1.75rem;
  }

  .trending-courses .text-end {
    text-align: start !important;
    margin-top: 0.5rem;
  }

  .trending-courses .swiper-slide {
    width: 100% !important;
    /* margin-right: 25px !important; */
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 20px;
  margin: 40px 30px;
  width: 170px;
  /* Adjusted width for smaller cards */
  height: auto;
  /* Auto height to maintain aspect ratio */
  aspect-ratio: 9 / 16;
  /* Keeps the 9:16 aspect ratio */
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
  position: relative;
  border-radius: 8px;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  /* color: var(--accent-color); */
  color: #c4710d;
  margin: 0 1px;
  font-size: 11px !important;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  margin: 0 auto 15px auto;
  font-weight: unset;
  font-size: 0.7rem;
  line-height: 1.5;
  overflow-wrap: break-word;
  white-space: normal;
  font-weight: 100;
  color: gray;
}

/* Video Container Styling */
.testimonial-item .video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.testimonial-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Style for the play/pause icon button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
}

.video-play-btn i {
  font-size: 36px;
}

/* Show play icon initially */
#testimonial-video.paused~.video-play-btn {
  display: flex;
}

#testimonial-video.playing~.video-play-btn {
  display: none;
}


/* Styling for the overlay with profile info */
.testimonial-item .testimonial-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  /* Semi-transparent black background */
  color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 0 0 8px 8px;
}

.testimonial-item .testimonial-info .profile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.testimonial-item .testimonial-info .testimonial-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.testimonial-item .testimonial-info h3 {
  font-size: 18px;
  margin: 0;
}

.testimonial-item .testimonial-info h4 {
  font-size: 14px;
  color: #ccc;
  margin-top: 5px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 10px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}


@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 20px auto;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

@media (max-width: 768px) {
  .testimonials .section-title p {
    font-size: 1.50rem;
    text-align: center;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 30px;
  height: 100%;
  border-radius: 20px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=number],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=number]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form input[type=number]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: var(--secondary-text-color);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/*--------------------------------------------------------------
# Contact us Page
--------------------------------------------------------------*/
#contact-page .col-lg-6 {
  background: transparent !important;
}

.contact-page h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.contact-page .col-lg-6 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.contact-page .form-label {
  color: #000000;
  font-size: 1.2rem;
}

.contact-page .icon-circle {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.0rem;
  background-color: var(--accent-color);
}

.contact-page .form-control {
  border-radius: 0.5rem;
}

.contact-page button.btn {
  background-color: var(--accent-color)
}

.contact-page ul li span {
  font-size: 1rem;
}


/*--------------------------------------------------------------
# Courses Details Page
--------------------------------------------------------------*/
.course-details .styled-hr {
  border: 0;
  /* Remove default border */
  height: 5px;
  /* Set thickness */
  background: var(--accent-color);
  /* Gradient effect */
  margin: 2rem 0;
  /* Add vertical spacing */
  opacity: 1;
  /* Slight transparency */
}

.course-details .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 7rem;
  color: rgb(237 0 0);
  border-radius: 50%;
  padding: 0.5rem;
}

.course-details .course-image {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}

.course-details .what-you-will-learn ul {
  padding-left: 1.5rem;
}

.course-details .subscription-box {
  background-color: var(--background-color);
  border-radius: 0.5rem;
  padding: 1rem;
}

/* General Section Styles */
#course-details-section {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

/* Left Section: Here’s what you will learn */
.course-details .what-you-will-learn h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.course-details .what-you-will-learn ul {
  padding-left: 0;
  /* Remove default list padding */
}

.course-details .what-you-will-learn li {
  display: flex;
  align-items: start;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* Left Section: Courses Includes */
.course-details .courses-includes h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.course-details .courses-includes .block-item1 {
  border-right: 2px solid #ddd;
  /* Only add border to the right of the first block */
}

.course-details .courses-includes ul {
  padding-left: 0;
  /* Remove default list padding */
}

.course-details .courses-includes li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.course-details .courses-includes li i {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-right: 10px;
}

.course-details .courses-includes .row {
  margin-right: 0;
  margin-left: 0;
}

.course-details .courses-includes .block-item {
  padding: 1rem;
}

.course-image {
  position: relative;
  /* keeps the icon inside */
  display: inline-block;
}

.course-image .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* perfectly center */
  font-size: 80px;
  /* adjust icon size */
  color: #fff;
  /* white play button */
  cursor: pointer;
  background: none;
  /* remove background */
  border: none;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.course-image .play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  /* zoom a bit on hover */
  opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .course-details .courses-includes .block-item1 {
    border-bottom: 2px solid #ddd !important;
    border-right: none;
    /* Only add border to the right of the first block */
    /* margin-left: 0px; */
    align-items: start !important;
  }

  .course-details .courses-includes .block-item2 {
    /* Only add border to the right of the first block */
    /* margin-left: 20px; */
    align-items: start !important;
  }
}



/* Course Description */
.course-details .course-description h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.course-details .course-description p {
  font-size: 1.1rem;
}

/* Course Content */
.course-details .course-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.course-details .course-content p {
  font-size: 1.1rem;
}

.course-details .course-content .accordion-button {
  border-radius: 8px !important;
  /* border: 1px solid var(--accent-color) !important; */
  font-size: 1.0rem;

}

.course-details .course-content .accordion-item {
  background-color: var(--background-color);
  /* Light background */
}

.course-details .course-content .accordion-button::after {
  font-size: 1.0rem;
  color: var(--accent-color);
  /* Green color for dropdown icon */
}

.course-details .course-content .no-chevron::after {
  display: none;
}


.course-details .course-content .accordion-button:not(.collapsed) {
  background-color: var(--background-color) !important;
  /* Light green for expanded state */
  color: #257766;
}

.course-details .course-content .accordion-button:focus {
  outline: none;
  /* Remove default focus outline */
  box-shadow: none;
  /* Remove any box shadow */
}


.course-details .course-content .accordion-body {
  font-size: 1rem;
  padding: 1rem;
  color: #495057;
}

/* FAQ Section */

.course-details .faq h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.course-details .faq p {
  font-size: 1.1rem;
}

.course-details .faq .accordion-button {
  font-size: 1.1rem;
  color: black;
  background-color: transparent !important;
  /* Remove background color */
}

.course-details .faq .accordion-button:not(.collapsed) {
  background-color: var(--background-color);
  color: var(--accent-color);
  font-weight: bold;
}

.course-details .faq .accordion-body {
  font-size: 1rem;
  line-height: 1.6;
  color: #495057;
}

.course-details .faq .accordion-item {
  border: none;
  /* Remove default borders */
  border-bottom: 2px solid rgba(0, 0, 0, 0.289);
  /* Add thin horizontal dividers */
  border-radius: 0;
  background-color: transparent !important;
  /* Remove background color */
}

.course-details .faq .accordion-button:focus {
  outline: none;
  /* Remove default focus outline */
  box-shadow: none;
  /* Remove any box shadow */
  background: #fff;
}

/* Fixed Course Card */
.course-details .no-hover-btn:hover {
  background-color: white !important;
  color: black !important;
  border: 1px solid black !important;
}

.course-details .course-image {
  position: relative;
}

.course-details .course-image img {
  border-radius: 8px;
}

.course-details .course-image a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  /* Play button overlay background */
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.course-details .course-image a:hover {
  background: rgba(0, 0, 0, 0.8);
  /* Darker hover effect */
  transform: scale(1.0);
  /* Slight zoom on hover */
}

.modal-backdrop {
  --bs-backdrop-bg: none !important;
}

.course-details .modal .modal-content {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  /* Adds depth */
}

.course-details .modal .modal-body video {
  max-height: 80vh;
  width: 100%;
  border-radius: 0.3rem;
}

.course-details .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 7rem;
  color: rgb(237, 49, 49);
  border-radius: 50%;
  padding: 0.5rem;
}

.course-details .course-image .bi-play-circle-fill {
  font-size: 3rem;
}

.course-details .position-sticky {
  top: 0px;
  /* Adjust spacing from the top */
}

.course-details .card {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* Soft shadow for the card */
  border-radius: 8px;
}

.course-details .card h6 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.course-details .subscription-box p {
  font-size: 1rem;
  text-align: start;
  /* Smaller font size for details */
}

.course-details .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0 0 !important;
  scroll-margin-top: 98px;
  overflow: clip;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .course-details .position-sticky {
    position: relative;
    /* Make sticky elements normal on smaller screens */
    top: 0;
  }

  .course-details #course-details-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}


/*--------------------------------------------------------------
# Subscription Packs Page
--------------------------------------------------------------*/

.subscription-packs {
  background-color: var(--background-color);
  /* Light background for the section */
  width: 100%;
  min-height: auto;
  position: relative;
  margin-bottom: -8rem;
}

.subscription-packs .row {
  height: 100%;
  /* Ensure the row takes the full height of the container */
  align-items: stretch;
  /* Stretch all columns to match height */
}

.subscription-packs .col-lg-6 {
  height: 100%;
  /* Both columns must stretch to full height */
}

.subscription-packs .container {
  background-color: var(--accent-color);
  border-radius: 30px;
  --bs-gutter-x: 0 !important;
  width: 100%;
  height: 50vh;
  /* Ensure the container spans the full section height */
  padding: 0;
  /* Remove extra padding to align with columns */
}

/* First Section Left */
.left-section .packs-hero-img {
  width: 100%;
  /* Ensures the image occupies the full width of the column */
  height: 100%;
  /* Maintains aspect ratio */
  object-fit: cover;
  /* Ensures the image covers the area */
  border-radius: 30px 0px 0px 30px;
  /* Removes any default rounding */
}

/* First Section Right */
.right-section {
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 2rem;
  height: 100%;
}

.right-section h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 56px;
}

.right-section p {
  font-size: 1.1rem;
}


/* Subscriptio PAcks Card Styling */
/* Overlap styling */
.overlap-card {
  position: relative;
  /* top: -8rem; */
  /* Overlap effect */
  margin: 0 auto;
  /* margin-bottom: -8rem !important; */
  z-index: 2;
  /* Ensure it appears above other elements */
  width: 90%;
  /* Default card width */
  border-radius: 1rem;
  /* Rounded corners */
  background-color: #ffffff;
  /* Card background */
  transition: all 0.3s ease-in-out;
  /* Smooth resizing for responsiveness */
}

/* Responsive Styles */
@media (max-width: 991px) {

  /* Reduce spacing on smaller screens */
  .subscription-packs .container {
    height: auto;
    padding: 1rem;
    border-radius: 20px;
  }

  .right-section {
    padding: 1rem;
  }

  .right-section h2 {
    font-size: 2rem;
    line-height: 1.5;
  }

  .right-section p {
    font-size: 1rem;
  }

  .overlap-card {
    top: -4rem;
    /* Reduce overlap effect */
    margin-bottom: -4rem !important;
    width: 95%;
  }
}


@media (max-width: 767px) {
  .subscription-packs {
    min-height: auto;
    /* Allow dynamic height */
  }

  .overlap-card {
    top: 0;
    /* Remove overlap on very small screens */
    margin-bottom: 2rem !important;
    width: 100%;
    background-color: #f8f9fa;
    /* Light background for separation */
    border-radius: 30px;
  }

  .overlap-card .stats-item1 {
    border-bottom: 2px solid #dee2e6;
    width: 95%;
    margin-bottom: 2rem;
    padding: 1rem !important;
    align-items: center !important;
  }

  .overlap-card .stats-item2 {
    border: none !important;
  }

  .overlap-card .stats-item3 {
    border-top: 2px solid #dee2e6;
    width: 95%;
    margin-top: 2rem;
    padding: 1rem !important;
  }

  .stats-item3 button {
    width: 100%;
  }

  .stats-item3 a {
    width: 100%;
  }

}

/* What's In This Packs */
.pack-details {
  margin-top: 8rem;
  background-color: var(--background-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* text-align: center; */
  /* Center-align text */
  padding: 2rem;
}

.pack-details h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pack-details p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.pack-details h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pack-details img {
  width: 70%;
  max-width: 400px;
  /* Limit max width for large screens */
  height: auto;
  /* Maintain aspect ratio */
  aspect-ratio: 16 / 9;
  /* Ensures 16:9 ratio */
  border-radius: 0.5rem;
  /* Rounded rectangular frame */
  object-fit: cover;
  margin: 1rem 0;
  /* Add margin for spacing */
}

@media (max-width: 991px) {
  .pack-details img {
    width: 100%;
    /* Increase width for smaller screens */
    margin: 0 auto;
    /* Center horizontally */
    display: block;
    /* Ensures the element is treated as a block for margin auto */
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .pack-details {
    margin-top: 8rem;
    /* Reduce margin for smaller screens */
    padding: 1.5rem;
  }

  .pack-details h2 {
    font-size: 2.5rem;
    text-align: center;
  }

  .pack-details p {
    font-size: 1.1rem;
    text-align: center;
  }

  .pack-details h3 {
    font-size: 2rem;
  }

}

@media (max-width: 576px) {
  .pack-details {
    margin-top: 8rem;
    /* Further reduce margin */
    padding: 1rem;
  }

  .pack-details h2 {
    font-size: 2.5rem;
    text-align: center;
  }

  .pack-details p {
    font-size: 1rem;
    text-align: center;
  }

  .pack-details h3 {
    font-size: 1.8rem;
  }

  .pack-details img {
    width: 100%;
    /* Full width for small devices */
    max-width: 100%;
    /* Remove max width */
  }
}

.cta-section h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cta-section h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }
}


/* Courses Covered */
.courses-covered h2 {
  font-size: 3rem;
}

.courses-covered h3 {
  font-size: 1.5rem;
}

/* Card Hover Effect */
.courses-covered .card {
  box-shadow: 0px 2px 5px var(--default-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Ensure the card stretches to the full height */
}

.courses-covered .card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 12px var(--card-shadow-color);
}

.courses-covered .card-body {
  flex: 1;
  /* Makes sure the body content takes up remaining space */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Proper spacing for content */
}

.courses-covered .card-title {
  min-height: 3rem;
  /* Ensure even height for all titles */
  line-height: 1.5rem;
  text-align: start;
  /* Centers titles in the card */
  flex-shrink: 0;
  /* Prevent title from shrinking */
}

.courses-covered .view-detail-btn {
  margin-top: auto;
  /* Pushes button to the bottom */
  transition: all 0.3s ease;
}


/* Badge Styling */
.courses-covered .badge {
  font-size: 0.75rem;
  padding: 0.4em 0.7em;
}


.courses-covered .view-detail-btn:hover {
  background-color: white !important;
  color: black !important;
  border: 1px solid black !important;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .courses-covered h2 {
    font-size: 2.5rem;
  }

  .courses-covered h3 {
    font-size: 1.5rem;
  }

}

/* Packs FAQ Section */
.packs-faq h2 {
  font-size: 3rem;
}

.packs-faq h3 {
  font-size: 1.5rem;
}

.packs-faq .faq-tabs .nav-link {
  border: 2px solid var(--accent-color);
  color: var(--secondary-text-color);
  border-radius: 8px;
  margin-bottom: 10px;
  transition: background-color 0.3s, color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  width: 100%;
  /* Adjust padding to allow for text wrapping */
  white-space: normal;
  /* Enable text wrapping */
  word-wrap: break-word;
  /* Ensure long words break */
}

.packs-faq .faq-tabs .nav-link.active {
  background-color: var(--accent-color);
  color: #fff;
}

/* Right Column Styling */
.packs-faq .faq-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.packs-faq .styled-hr {
  border: 0;
  height: 3px;
  background: var(--accent-color);
  margin: 2rem 0;
  opacity: 1;
}

.packs-faq .accordion-button {
  font-size: 1.2rem;
  color: black;
  background-color: transparent !important;
}

.packs-faq .accordion-button:not(.collapsed) {
  background-color: var(--background-color);
  font-weight: bold;
}

.packs-faq .accordion-body {
  font-size: 1rem;
  line-height: 1.6;
  color: #495057;
}

.packs-faq .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.289);
  border-radius: 0;
  background-color: transparent !important;
}

.packs-faq .accordion-button:focus {
  outline: none;
  box-shadow: none;
  /* background: #fff; */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .packs-faq h2 {
    font-size: 2.5rem;
  }

  .packs-faq h3 {
    font-size: 1.3rem;
  }

  .packs-faq .faq-tabs .nav-link {
    font-size: 1.3rem;
    padding: 0.5rem 0.8rem;
    /* Adjust padding for smaller screens */
  }
}

@media (max-width: 768px) {
  .packs-faq h2 {
    font-size: 2.5rem;
  }

  .packs-faq h3 {
    font-size: 1.5rem;
  }

  .packs-faq .faq-tabs .nav-link {
    font-size: 1.2rem;
    padding: 0.4rem 0.6rem;
  }
}


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/* Subscription packs enroll now modal container  */
.form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.form-check-input:focus {
  outline: none;
  box-shadow: none;
}


.form-check-input {
  width: 1.25em;
  height: 1.25em;
  cursor: pointer;
}

/* Scoped Login Cart Styling */
.site-login-cart .site-cart-icon,
.site-login-cart .site-user-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  font-size: 2rem;
  color: var(--accent-color);
}

.site-login-cart .site-cart-icon .badge {
  font-size: 0.75rem;
  padding: 0.3em 0.5em;
  border-radius: 50%;
}

.site-login-cart .site-wishes-list,
.site-login-cart .site-users {
  width: 350px;
  border-radius: 8px;
}

.site-login-cart .site-wish-header,
.site-login-cart .site-total-item {
  background-color: var(--background-color);
  border-bottom: 1px solid #e9ecef;
}

.site-login-cart .site-avatar img {
  width: 55px;
  height: 30px;
  object-fit: contain;
  border-radius: 4px;
  border: solid 1px lightseagreen;
}

.site-login-cart .site-users {
  width: 170px;
}

.site-login-cart .site-user-header .site-user-text {
  border-bottom: 1px solid #e9ecef;
}

/* Prevent dropdown menus inside .site-login-cart from showing on hover unless already open */
.site-login-cart .dropdown:hover .dropdown-menu:not(.show) {
  display: none !important;
}

/*--------------------------------------------------------------
# Custom CSS
--------------------------------------------------------------*/
.mt-100 {
  margin-top: 100px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.pl-0 {
  padding-left: 0px;
}

.fs-13-imp {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px;
}

.fs-14-imp {
  font-size: 14px !important;
}

.fs-15-px-imp {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px;
}

.fs-16-imp {
  font-size: 16px !important;
}

.fs-24-imp {
  font-size: 24px !important;
}

.fs-30 {
  font-size: 30px;
}

.fs-32-imp {
  font-size: 32px !important;
}

.fs-35 {
  font-size: 35px;
}

.header-icon-element {
  width: 35px;
  height: 35px;
  font-size: 2.2rem;
  object-fit: cover;
}

.min-h-62 {
  min-height: 62px;
}

.min-h-60 {
  min-height: 65px;
}

.min-h-70 {
  min-height: 70px;
}

.owl-carousel .owl-item img {
  display: block !important;
  width: 100% !important;
}

#more_eng {
  display: none;
}

#more_hin {
  display: none;
}

.color-blue {
  color: #0000ff !important;
}

.min-height-40 {
  min-height: 40px;
}

.min-height-50 {
  min-height: 50px
}

.min-height-110 {
  min-height: 110px
}

.min-height-50-fix {
  min-height: 50px !important;
}

.height-40-fix-of-hidden {
  height: 40px !important;
  overflow: hidden;
}

.height-50-fix-of-hidden {
  height: 50px !important;
  overflow: hidden;
}

.height-45-fix-of-hidden {
  height: 45px !important;
  overflow: hidden;
}

.height-50-fix-of-hidden {
  height: 50px !important;
  overflow: hidden;
}

.height-52-fix-of-hidden {
  height: 52px !important;
  overflow: hidden;
}

.height-55-fix-of-hidden {
  height: 55px !important;
  overflow: hidden;
}

.height-60-fix-of-hidden {
  height: 60px !important;
  overflow: hidden;
}

.height-60-fix-of-hidden {
  height: 60px !important;
  overflow: hidden;
}

.min-height-60 {
  min-height: 60px;
}

.min-height-90 {
  min-height: 90px;
}

.height-400 {
  height: 400px;
}

.min-height-400 {
  min-height: 400px;
}

.min-height-275 {
  min-height: 275px;
}

.height-135 {
  height: 135px !important;
}

.height-500-scroll-y {
  min-height: 300px;
}

.text-left {
  text-align: left !important;
}

.min-w-70 {
  min-width: 70px;
}

.border-green-1px {
  border: 1px solid green !important;
}

.border-green-2px {
  border: 2px solid green !important;
}

.border-black-1px {
  border: 1px solid #697169 !important;
}

.border-bottom-70 {
  border-bottom: 1px solid #a1a1a1;
  width: 70%;
}

.border-bottom-80 {
  border-bottom: 1px solid #a1a1a1;
  width: 80%;
}

.border-bottom-100 {
  border-bottom: 1px solid #a1a1a1;
  width: 100%;
}

.border-radius-20 {
  border-radius: 20px !important;
}

@media only screen and (min-width: 767px) {
  .hidedesktop {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hidemobile {
    visibility: hidden;
    clear: both;
    float: left;
    margin: 10px auto 5px 20px;
    width: 28%;
    display: none;
  }
}

.img-play-container img {
  width: 100%;
  height: auto;
}

.img-play-container .play-icon-btn {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: white;
  font-size: 50px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .img-play-container .play-icon-btn {
    left: 50%;
    top: 15%;
  }
}

.font-black {
  color: #000000 !important;
}

.recaptcha-wrapper {
  max-width: 100%;
  overflow: hidden;
}

.g-recaptcha {
  transform: scale(0.85);
  /* adjust as needed */
  transform-origin: 0 0;
}

.recaptcha-wrapper {
  width: 100%;
  transform: scale(0.77);
  /* adjust to fit your layout */
  transform-origin: top left;
}

@media (min-width: 768px) {
  .recaptcha-wrapper {
    transform: scale(1);
  }
}

.height-250 {
  height: 250px !important;
}

.min-h-34 {
  min-height: 34px !important;
}

.w-1280-h-400 {
  width: 1280px !important;
  height: 400px !important;
}


/* Wrap container */
.custom-select-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Hide default arrow */
.custom-select-container select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding-right: 2rem;
  /* space for the icon */
}

/* Custom icon */
.custom-dropdown-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  /* clicks pass through */
  font-size: 14px;
  color: #555;
}

.h5,
h5 {
  font-size: 1.2rem;
}

.fs-9-rem {
  font-size: .9rem !important;
}

.bg-black {
  background-color: rgb(68 60 60) !important;
}

.fs-4 {
  font-size: calc(1.475rem + .3vw) !important;
}

.btn {
  --bs-btn-line-height: 1.2rem !important;
  --bs-btn-font-size: 1rem !important;
}

.pb-4rem {
  padding-bottom: 0.4rem !important;
}

.text-black {
  color: rgb(61 52 52) !important;
}

.font-weight-bold {
  font-weight: bold !important;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #6c757d;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease-in-out;
}

.footer-links a:hover {
  color: #000;
}

.footer h6 {
  font-size: 14px;
  letter-spacing: 0.5px;
}

.footer-links a.footer-link {
  color: #444;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f1f1;
  color: #333;
  font-size: 18px;
  transition: all 0.3s;
}

.social-link:hover {
  background: #257766;
  color: #fff;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  background: #257766;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  z-index: 999;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.fw-500 {
  font-weight: 500 !important;
}

.accordion-button {
  color: #585c61 !important;
}

.vimeo-col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.vimeo-wrapper {
  width: 100%;
  /* or a fixed px width */
  max-width: 800px;
  aspect-ratio: 16/9;
  position: relative;
}

.vimeo-wrapper iframe {
  width: 98%;
  height: 98%;
  border: 1px solid #2F5B44;
  border-radius: 20px;
  padding: 0px !important;
}

/* ---------- Footer Base ---------- */
#footer {
  background: #132a12;
  color: #f5f5f5;
  font-size: 15px;
  margin-top: 40px;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.25);
}

#footer h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

#footer h6 i {
  color: #ffffff;
}

/* ---------- Footer Links ---------- */
#footer a.footer-link {
  color: #cfd8dc;
  text-decoration: none;
  transition: 0.3s;
  padding: 5px 0;
  display: inline-block;
}

#footer a.footer-link:hover {
  color: #fff;
  transform: translateX(4px);
}

/* ---------- Social Buttons ---------- */
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
  font-size: 18px;
}

.social-link:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.social-link.facebook {
  background: #3b5998;
}

.social-link.instagram {
  background: #E1306C;
}

.social-link.linkedin {
  background: #0077B5;
}

/* ---------- Store Badge ---------- */
#footer img.store-badge {
  max-height: 42px;
  transition: 0.3s;
}

#footer img.store-badge:hover {
  transform: scale(1.05);
}

/* ---------- Scroll Top Button ---------- */
#scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #257766;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  text-align: center;
  line-height: 46px;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  z-index: 1000;
}

#scroll-top:hover {
  background: #257766;
}

/* ---------- Mobile Accordion (Udemy-like) ---------- */
#footer .accordion-button {
  background: #132a12 !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 6px;
  padding: 10px 14px;
  font-size: 15px;
}

.bg-132a12 {
  --bs-accordion-bg: #132a12 !important;
}

#footer .accordion-button:focus {
  box-shadow: none;
}

#footer .accordion-body {
  background: #132a12 !important;
  border-radius: 6px;
  padding: 10px 14px;
  color: #ffffff;
}

#footer .accordion-body a.footer-link {
  color: #ffffff !important;
  display: block;
  padding: 6px 0;
  font-size: 14px;
}

#footer .accordion-body a.footer-link:hover {
  color: #ff9800 !important;
}

/* ---------- Logo & Email ---------- */
#footer .brand-logo {
  max-height: 60px;
}

#footer .support-email {
  color: #f5f5f5;
  font-size: 15px;
}

#footer .support-email i {
  color: #ffb400 !important;
  margin-right: 4px;
}

.accordion-item {
  border: 2px solid;
}

.margin-left-10 {
  margin-left: 10px !important;
}

.h-35-px {
  min-height: 35px !important;
}

.dropdown-menu {
  display: none;
}

.dropdown-menu.show {
  display: block;
}

/* Remove Bootstrap’s default accordion arrow */
.accordion-button::after {
  display: none !important;
}

/* Transition for smooth rotation */
.toggle-icon {
  transition: transform 0.3s ease;
}

/* Rotate icon when accordion is expanded */
.accordion-button:not(.collapsed) .toggle-icon {
  transform: rotate(180deg);
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: white !important;
}

.accordion-button:not(.collapsed) {
  /* background-color: white !important; */
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.border-80-new {
  position: relative;
  display: inline-block;
  padding: 10px !important;
  border-radius: unset;
}

.border-80-new::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 70%;
  /* border-bottom: 2px solid darkgray; */
}

.fs-17 {
  font-size: 17px !important;
}

.fs-8 {
  font-size: 8px !important;
}

.fs-22-px-imp {
  font-size: 22px !important;
}

.fs-23-px-imp {
  font-size: 23px !important;
}

.text-justify-imp {
  text-align: justify !important;
}

.justify-content-unset {
  justify-content: unset !important;
}

.bg-color-unset {
  background-color: unset !important;
}

.white-space-pre-line {
  white-space: pre-line !important;
}

.w-65 {
  width: 65% !important;
}

.h-0-imp {
  height: 0px !important;
}

.w-0-imp {
  width: 0px !important;
}

.padding-icon-custom {
  padding: 12px 15px 0px 7px !important;
}

.pt-0-imp {
  padding-top: 0px !important;
}

.border-radius-unset {
  --bs-card-border-radius: unset !important;
}

.line-height-zero-imp {
  line-height: 0px !important;
}

.align-self-top {
  align-self: start !important;
}

.download-button {
  padding: 2px 25px 5px 25px !important;
  font-size: 18px !important;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.p-10-px {
  padding: 11px !important;
}

.min-w-50-px {
  min-width: 50px !important;
}

.sop-p-tag {
  color: var(--heading-color);
  margin: 0px;
  font-size: 19px !important;
  font-weight: unset !important;
  font-family: var(--heading-font);
  text-align: start;
}

.bg-grey-only {
  background-color: rgba(33, 37, 41, 0.75) !important;
}

.testimonial-item-five .testimonial-users {
  display: flex !important;
  padding: 15px !important;
}

.testimonial-item-five .testimonial-users .imgbx {
  position: relative !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  margin-right: 20px !important;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}


.testimonial-item-five .swiper-slide {
  flex-shrink: unset;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.testimonial-item-five {
  background: #FFFFFF;
  box-shadow: 0px 4px 24px rgb(100 100 100 / 25%);
  border-radius: 10px;
  background-position: center;
  background-size: cover;
  width: 455px;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.testimonial-quote {
  padding: 20px;
}

.testimonial-content {
  padding: 20px;
}

.testimonial-ratings {
  border-bottom: 1px solid #E7E7E7;
  font-size: 14px;
  padding: 0px 0px 0px 20px;
}

.become-content {
  margin-bottom: 50px;
  width: 400px;
  position: relative;
  z-index: 11111;
}

.become-content h2 {
  font-weight: 600;
  font-size: 48px;
  color: #FFFFFF;
}

.become-content h4 {
  font-weight: 500;
  font-size: 20px;
  color: #FFFFFF;
}

/* CHAT GPT */

.testimonial-three .swiper-testimonial-three {
  width: 100%;
  max-width: 100%;
}

.testimonial-three .testimonial-item-five {
  box-sizing: border-box;
}

.testimonial-three .testimonial-content p {
  font-size: 15px;
  line-height: 1.6;
}

.testimonial-three img {
  max-width: 100%;
  height: auto;
}

.testimonial-three .imgbx img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .testimonial-three h2 {
    font-size: 22px;
    text-align: center;
  }

  .testimonial-three h4 {
    font-size: 16px;
    text-align: center;
  }

  .testimonial-three .testimonial-content p {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .testimonial-item-five {
    width: 300px;
  }
}

@media (max-width: 767.98px) {
  .testimonial-item-five {
    width: 350px;
  }
}

@media (max-width: 575.98px) {
  .testimonial-quote {
    padding: 10px;
  }
}

@media (max-width: 575.98px) {
  .testimonial-content {
    padding: 15px;
  }
}

@media (max-width: 575.98px) {
  .testimonial-ratings {
    padding: 15px;
  }
}

@media (max-width: 575.98px) {
  .testimonial-item-five .testimonial-users {
    padding: 15px;
  }
}


@media (max-width: 575.98px) {
  .become-content {
    margin-bottom: 0px !important;
  }
}

@media (max-width: 767.98px) {
  .become-content {
    margin-bottom: 0px !important;
  }
}

/* Center testimonial card inside swiper slide on mobile */
@media (max-width: 767px) {
  .swiper-slide {
    display: flex;
    justify-content: center;
    /* horizontally center the card */
    align-items: center;
    /* vertically center (optional) */
  }

  .testimonial-item-five {
    max-width: 90%;
    /* keeps card from touching edges */
    margin: 0 auto;
    /* fallback centering */
  }

  .testimonial-three {
    margin-top: 20px;
  }

  .testimonial-bottom-nav {
    margin-right: 15px !important
  }

}

.h-30-px {
  height: 30px !important;
}


.niche-pack-tile-mobile {
  width: auto;
  height: 60px;
  overflow: hidden;
  border-radius: 8px;
}

.btn-small-mv {
  --bs-btn-line-height: .7rem !important;
  --bs-btn-font-size: .8rem !important;
}

.partner-logo img {
  max-height: 110px;
  /* keeps logos uniform */
  object-fit: contain;
  /* filter: grayscale(100%); */
  /* optional: makes them look neat */
  transition: filter 0.3s ease;
}

.cliets-section {
  background: #f5f7f9;
  padding: 23px 0;
}

.h-60-px-imp {
  height: 60px !important;
}

.h-80-px-imp {
  height: 80px !important;
}

.h-100-px-imp {
  height: 100px !important;
}

.price-center {
  top: 100%;
  /* adjust (40–50%) for vertical placement */
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.0rem;
  white-space: nowrap;
}


.price-center-one {
  top: 58%;
  /* adjust (40–50%) for vertical placement */
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.0rem;
  white-space: nowrap;
}