/**
* Template Name: Mentor
* Template URL: https://bootstrapmade.com/mentor-free-education-bootstrap-theme/
* Updated: Jul 07 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Google Sans", "Noto Sans Kannada", sans-serif;
  --heading-font: "Google Sans", "Noto Sans Kannada", sans-serif;
  --nav-font: "Google Sans", "Noto Sans Kannada", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #e67e22; 
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e67e22;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent-gradient: linear-gradient(90deg, #d35400 0%, #e67e22 50%, #d35400 100%);
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #272828;
  /* The default color of the main navmenu links */
  --nav-hover-color: #e67e22;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #272828;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-hover-color: #e67e22;
  --nav-dropdown-hover-color: #e67e22;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html {
    margin-top: 0 !important;
}

body {
  color: var(--default-color);
  background: url('../../assets/background.png') center/cover no-repeat fixed;
  font-family: var(--default-font);
  top: 0 !important;
}

/* Extreme Hide Google Translate Toolbar */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.goog-te-banner,
.goog-te-balloon-frame,
#goog-gt-tt,
#goog-gt-vt,
.goog-te-menu-value,
.VIpgJ-Zvi9fb-AbS9ne-dHeBf-syS1u,
iframe[id*=":0.container"],
iframe[id*=":1.container"],
iframe[id*=":2.container"],
iframe[class*="goog-te-banner-frame"],
iframe.skiptranslate {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    border: none !important;
}

html {
    margin-top: 0 !important;
}

body {
    top: 0 !important;
    position: static !important;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

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);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-weight: 700;
  font-size: 48px;
  margin: 0;
  letter-spacing: 1px;
  text-transform: capitalize;
  background: linear-gradient(45deg, #ff6600, #f59250);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: linear-gradient(45deg, #ff6600, #ee7321);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# 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 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 19px; /* Increased from 11px */
    line-height: 1;
    margin-left: 10px;
    font-weight: 600 !important;
    transition: 0.3s;
    align-self: flex-start; /* Align to the top of the flex directon */
    margin-top: 5.5px; /* Match the top padding of the parent a tag to align with text top */
  }

  .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: #e67e22;
    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: #ffffff;
    font-weight: 600;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: #ffffff;
    color: #B22222;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
    display: flex;
    align-items: center;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: none; /* Allow full height expansion */
    overflow-y: visible; /* Let page scroll handle it */
    padding: 0;
    margin: 0;
    background-color: #e67e22; 
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: 0.3s;
    border-radius: 0;
  }

  .navmenu ul li:first-child {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #e67e22; 
  }

  .navmenu a,
  .navmenu a:focus {
    color: #ffffff;
    padding: 15px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: block;
    position: relative;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }


  .navmenu a i,
  .navmenu a:focus i {
    font-size: 18px; /* Increased from 14px */
    line-height: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    height: auto;
    display: flex;
    align-items: flex-start; 
    padding-top: 25px; /* Adjusted to sit slightly higher than 30px */
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.05); /* Subtle separtor bg */
    color: #fff;
    transition: 0.3s;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 0;
    background-color: transparent; /* Remove dark background in mobile dropdowns */
    box-shadow: none;
    border-radius: 0;
    transition: none;
  }
  
  .navmenu .dropdown ul a {
      padding-left: 40px;
      font-weight: 400;
      font-size: 15px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      font-weight: 600;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: transparent;
  }



  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    /* position: absolute; */ 
    /* top: 15px; */
    /* right: 15px; */
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: static;
    overflow: visible;
    inset: auto;
    background: transparent;
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }

  .mobile-nav-active .navmenu ul {
    animation: mobile-nav-slide-down 0.3s ease-out forwards;
  }

  @keyframes mobile-nav-slide-down {
    0% {
      transform: translateY(-50px);
      opacity: 0;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
}

/* Gradient Buttons */
/* Gradient Buttons */
.btn-getstarted,
.header .btn-getstarted,
.hero .btn-get-started,
.about .content .read-more,
.why-us .why-box .more-btn,
.footer .footer-newsletter .newsletter-form input[type=submit] {
  background: var(--accent-gradient);
  border: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
  padding-top: 1px; /* Subtle offset for optical centering */
}

.hero .btn-get-started:hover {
  background: var(--accent-gradient);
  border: none;
  opacity: 0.9;
}

.why-us .why-box .more-btn {
  background: linear-gradient(45deg, #ffffff, #f0f0f0);
  color: var(--accent-color);
}

.why-us .why-box .more-btn:hover {
  background: linear-gradient(45deg, #f0f0f0, #ffffff);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  margin-bottom: 0;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
  padding-top: 10px;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: 100%;
  background-color: var(--surface-color);
  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 2px 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/* Footer Mobile Visibility */
@media (max-width: 576px) {
  .footer {
    font-size: 17px;
  }
  .footer .footer-about p, 
  .footer .footer-contact p,
  .footer .footer-links ul li a {
    font-size: 17px !important;
  }
  .footer h4 {
    font-size: 22px !important;
  }
  .footer .bank-details {
    font-size: 1rem !important;
  }
  .footer .sitename {
    font-size: 1.4rem !important;
  }
  .footer .copyright p,
  .footer .credits {
    font-size: 14px !important;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.4s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  width: 120px;
  height: 120px;
  background: url('../../assets/left.png') center/contain no-repeat;
  animation: animate-preloader 1s linear infinite;
  filter: drop-shadow(0 0 15px rgba(230, 126, 34, 0.3));
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg) scale(0.9);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(0.9);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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 {
  --default-color: var(--contrast-color);
  --background-color: var(--accent-color);
  --heading-color: var(--contrast-color);
  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(--accent-color) 90%, black 5%);
  padding: 20px 0;
}

.page-title nav a {
  color: var(--default-color);
}

.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: 60px 0;
  scroll-margin-top: 900px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--nav-font);
  text-transform: uppercase;
}

/* Custom Section Title Header with Images */
.section-title-header {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 20px;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .section-title-header {
    font-size: 1.8rem !important;
    gap: 10px !important;
  }
  .section-title-header img {
    height: 35px !important;
  }
}

@media (max-width: 576px) {
  .section-title-header {
    font-size: 1.45rem !important;
    gap: 5px !important;
  }
  .section-title-header img {
    height: 25px !important;
  }
  .section-title-header span {
    margin-top: 8px !important;
    font-size: 30px !important;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: auto;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #ffffff;
}

.hero .hero-bg-carousel {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
}

.hero .hero-bg-carousel .carousel-item {
  width: 100%;
  height: auto;
}

.hero .hero-bg-carousel img,
.hero .hero-bg-carousel video {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.15) brightness(1.05) saturate(1.1) drop-shadow(0 0 10px rgba(0,0,0,0.5));
  image-rendering: -webkit-optimize-contrast;
  transition: filter 0.5s ease;
}

.hero .hero-overlay {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero:before {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  background: linear-gradient(90deg, #d35400 0%, #e67e22 50%, #d35400 100%) !important;
  background-size: 200% auto !important;
  letter-spacing: 1px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1; 
  padding: 17px 50px 13px 50px; /* Visually centered by shifting padding */
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 30px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff !important;
}



.hero .btn-get-started:hover {
  background-position: right center !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.hero .btn-get-started span {
  display: inline-block;
  transition: 0.3s;
}

.hero .btn-get-started:hover span {
  transform: scale(1.4);
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}


.hero h2 .oom-text {
  font-size: 72px;
  font-weight: 400;
  display: block;
  margin-bottom: -26px;
}

.hero h2 .temple-name {
  font-size: 45px;
  font-weight: 800;
  background: linear-gradient(45deg, #ff6600, #fc9753);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 5px;
}

@media (max-width: 768px) {
  .hero h2 .oom-text {
    font-size: 24px;
  }

  .hero h2 .temple-name {
    font-size: 36px;
  }
}

/* Slow Hero Carousel Slide */
#heroCarousel .carousel-item {
  transition: transform 1.5s ease-in-out !important;
}

/* Custom Fall Down Animation with Bounce */
@keyframes fallDownBounce {
  0% {
    transform: translateY(-100vh);
    opacity: 0;
  }

  60% {
    transform: translateY(30px);
    opacity: 1;
  }

  80% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-fall-down {
  animation: fallDownBounce 1s ease-out forwards;
  opacity: 0;
  /* Start hidden */
}

.delay-100 {
  animation-delay: 0.2s;
}

.delay-200 {
  animation-delay: 0.4s;
}

.delay-300 {
  animation-delay: 0.6s;
}

/* Hero News Sidebar */
.hero-news-sidebar {
  position: absolute;
  top: 55%;
  right: 2%;
  transform: translateY(-50%);
  width: 420px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  /* Transparent White */
  backdrop-filter: blur(10px);
  /* Glassmorphism effect */
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.news-header {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
}

.news-header h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-scroller {
  flex: 1;
  overflow-y: auto;
  position: relative;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.news-scroller::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.news-track {
  animation: scrollUp 20s linear infinite;
}

.news-track:hover {
  animation-play-state: paused;
}

.news-item {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.3s;
}

.news-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.news-item h4 {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 5px;
  font-weight: 500;
  color: #ffdda1;
  /* Accent color for titles */
}

.news-item p {
  font-size: 13px;
  margin: 0;
  opacity: 0.8;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
    /* Moves halfway up (assuming content is duplicated) */
  }
}

/* Hero Content Responsiveness */
.hero-content-inner {
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .hero-content-inner {
    max-width: 100%;
    padding-right: 20px;
    /* Leave room if sidebar is hidden but edge-to-edge is too much */
  }

  .hero .container {
    padding-left: 20px !important;
    margin-top: 190px !important;
  }
}

/* Hero Content Responsiveness - Mobile */
@media (max-width: 575px) {
  .hero-content-inner {
    padding-left: 0 !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero h2 {
    margin-bottom: 5px !important;
  }

  .hero h2 .temple-name {
    font-size: 18px !important; /* Further reduced for better fit */
    letter-spacing: 0.5px;
    line-height: 1.4;
    display: block;
    text-align: center;
  }

  .hero p {
    font-size: 12px !important; /* Further reduced */
    margin-bottom: 15px !important;
    text-align: center;
  }

  .hero .d-flex {
    justify-content: flex-start !important; /* Align button to left */
  }

  .hero .btn-get-started {
    padding: 6px 20px; /* Smaller button */
    font-size: 12px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .hero h2 .temple-name {
    font-size: 24px !important;
  }
  
  .hero p {
    font-size: 15px !important;
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-news-sidebar {
    display: none;
    /* Hide on smaller screens if it overlaps content too much */
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.7rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
    background:var(--accent-color);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
    border-radius: 50px;
    padding: 13px 30px 9px 30px;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.about .content .read-more:hover {
  background: var(--accent-gradient);
  opacity: 0.9;
  text-decoration: none;
  color: #fff;
}

/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts {
  padding: 25px 0;
}

.counts .stats-item {
  padding: 30px;
  width: 100%;
}

.counts .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.counts .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

/* Committee Section Styling */
/* Seva List Table Odd Row Styling */
.seva-list .table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: #ffe6cc !important; /* Solid light golden-orange */
  box-shadow: none !important;
  color: #000;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 10px 0;
}

.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Courses & Events Section - Fixed Heights & Alignment
--------------------------------------------------------------*/
.courses .course-item,
.events .event-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.courses .course-item:hover,
.events .event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.courses .course-item img,
.events .event-card img {
  height: 280px;
  width: 100%;
  object-fit: cover;
}

.courses .course-content,
.events .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px !important;
}

.courses .course-content h3,
.events .card-body h4 {
  min-height: 56px; /* Approx 2 lines */
  margin-bottom: 8px !important;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 20px;
}

.courses .course-content h3 a,
.events .card-body h4 {
  color: #B8860B !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.courses .course-content .text-muted.small,
.events .card-body .text-muted.small {
  min-height: 20px;
  margin-bottom: 12px !important;
  display: block;
}

.courses .course-content .description,
.events .card-body .description {
  min-height: 72px; /* Approx 3 lines */
  margin-bottom: 20px !important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.6;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .course-content .mt-auto,
.events .card-body .mt-auto {
  margin-top: auto !important;
}

/*--------------------------------------------------------------
# Trainers Index Section
--------------------------------------------------------------*/
.trainers-index .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.trainers-index .member img {
  margin: -1px -1px 30px -1px;
}

.trainers-index .member .member-content {
  padding: 0 20px 30px 20px;
}

.trainers-index .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.trainers-index .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.trainers-index .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.trainers-index .member .social {
  margin-top: 15px;
}

.trainers-index .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.trainers-index .member .social a:hover {
  color: var(--accent-color);
}

.trainers-index .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/

.about-us {
  background: var(--accent-gradient);
  color: #fff;
}

.about-us .content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #FFD700;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding-bottom: 10px;
}

.about-us .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: #FFD700;
}

.about-us .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Course Details Section
--------------------------------------------------------------*/
.course-details .course-header {
  margin-bottom: 40px;
}

.course-details .course-header .course-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.course-details .course-header .course-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.course-details .course-header .course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .course-details .course-header .course-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.course-details .course-header .instructor {
  display: flex;
  align-items: center;
  gap: 15px;
}

.course-details .course-header .instructor .instructor-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.course-details .course-header .instructor .instructor-info h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.course-details .course-header .instructor .instructor-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.course-details .course-header .course-stats {
  display: flex;
  gap: 25px;
}

@media (max-width: 576px) {
  .course-details .course-header .course-stats {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.course-details .course-header .course-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--default-color);
}

.course-details .course-header .course-stats .stat-item i {
  color: var(--accent-color);
}

.course-details .course-content {
  margin-bottom: 50px;
}

.course-details .course-content h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .course-details .course-content h2 {
    font-size: 26px;
  }
}

.course-details .course-content .course-description {
  margin-bottom: 40px;
}

.course-details .course-content .course-description p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--default-color);
}

.course-details .course-content .what-you-learn {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.course-details .course-content .what-you-learn h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.course-details .course-content .what-you-learn .learn-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-details .course-content .what-you-learn .learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
}

.course-details .course-content .what-you-learn .learn-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.course-details .course-curriculum {
  margin-bottom: 50px;
}

.course-details .course-curriculum h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.course-details .course-curriculum .curriculum-section {
  margin-bottom: 25px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  overflow: hidden;
}

.course-details .course-curriculum .curriculum-section .section-header {
  background-color: var(--surface-color);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .course-details .course-curriculum .curriculum-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.course-details .course-curriculum .curriculum-section .section-header h4 {
  font-size: 18px;
  margin: 0;
  color: var(--heading-color);
}

.course-details .course-curriculum .curriculum-section .section-header .lessons-count {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.course-details .course-curriculum .curriculum-section .lessons {
  padding: 0;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  transition: background-color 0.3s;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item:last-child {
  border-bottom: none;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-info i {
  color: var(--accent-color);
  font-size: 18px;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-info span {
  font-size: 15px;
  color: var(--default-color);
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-duration {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.course-details .course-sidebar {
  position: sticky;
  top: 100px;
}

.course-details .course-sidebar .pricing-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.course-details .course-sidebar .pricing-card .price {
  margin-bottom: 10px;
}

.course-details .course-sidebar .pricing-card .price .currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-color);
  vertical-align: top;
}

.course-details .course-sidebar .pricing-card .price .amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
}

.course-details .course-sidebar .pricing-card .price .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.course-details .course-sidebar .pricing-card .original-price {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  margin-bottom: 25px;
}

.course-details .course-sidebar .pricing-card .course-features {
  margin-bottom: 30px;
}

.course-details .course-sidebar .pricing-card .course-features .feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-align: left;
}

.course-details .course-sidebar .pricing-card .course-features .feature i {
  color: var(--accent-color);
  font-size: 16px;
  width: 16px;
}

.course-details .course-sidebar .pricing-card .course-features .feature span {
  font-size: 14px;
  color: var(--default-color);
}

.course-details .course-sidebar .pricing-card .btn-enroll {
  width: 100%;
  padding: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.course-details .course-sidebar .pricing-card .btn-enroll:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.course-details .course-sidebar .pricing-card .btn-preview {
  width: 100%;
  padding: 15px;
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.course-details .course-sidebar .pricing-card .btn-preview:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.course-details .course-sidebar .course-info-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
}

.course-details .course-sidebar .course-info-card h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.course-details .course-sidebar .course-info-card .info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.course-details .course-sidebar .course-info-card .info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.course-details .course-sidebar .course-info-card .info-item .label {
  font-size: 14px;
  font-weight: 600;
  color: var(--default-color);
}

.course-details .course-sidebar .course-info-card .info-item .value {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.course-details .course-sidebar .course-tags {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 25px;
}

.course-details .course-sidebar .course-tags h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.course-details .course-sidebar .course-tags .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.course-details .course-sidebar .course-tags .tags-list .tag {
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s;
}

.course-details .course-sidebar .course-tags .tags-list .tag:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .course-details .course-sidebar {
    position: static;
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs {
  padding-top: 30;
}

.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  background-color: var(--background-color);
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs .nav-link.active {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tabs .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .tabs .nav-link {
    border: 0;
    padding: 15px;
  }

  .tabs .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Trainers Section
--------------------------------------------------------------*/
.trainers .member {
  position: relative;
}

.trainers .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .trainers .member .member-img {
    margin: 0 60px;
  }
}

.trainers .member .member-img img {
  position: relative;
  z-index: 1;
}

.trainers .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.trainers .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.trainers .member .member-img .social a:hover {
  color: var(--accent-color);
}

.trainers .member .member-info {
  margin-top: 30px;
}

.trainers .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.trainers .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.trainers .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.trainers .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .card {
  background-color: var(--background-color);
  border: 0;
  /* padding: 0 30px; */
  margin-bottom: 60px;
  position: relative;
}

.events .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events .card-body {
  z-index: 10;
  background: var(--surface-color);
  border-top: 4px solid var(--surface-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events .card-title a {
  color: var(--default-color);
  transition: 0.3s;
}

.events .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .card:hover img {
  transform: scale(1.1);
}

.events .card:hover .card-body {
  border-color: var(--accent-color);
}

.events .card:hover .card-body .card-title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 8px;
  padding-bottom: 40px;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-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 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 textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px 12px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/* Translucent Header for Index Page */
.index-page .header {
  background-color: rgba(66, 66, 66, 0.247);
  /* Tanslucent black */
  transition: all 0.5s;
}

.index-page .header .logo h1 {
  color: #fff;
}

.index-page .navmenu a,
.index-page .navmenu a:focus {
  color: #fff;
}

.index-page .navmenu a:hover,
.index-page .navmenu .active,
.index-page .navmenu .active:focus {
  color: white;
}

.index-page .header .btn-getstarted,
.index-page .header .btn-getstarted:focus {
  background: linear-gradient(45deg, #ff6600, #ee7321);
  color: #fff;
}

/* Scrolled Header for Index Page */
.index-page.scrolled .header {
  background-color: #ffffff;
  /* White background when scrolled */
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.index-page.scrolled .header .logo h1 {
  color: var(--accent-color);
}

.index-page.scrolled .navmenu a,
.index-page.scrolled .navmenu a:focus {
  color: white
}

.index-page.scrolled .navmenu a:hover,
.index-page.scrolled .navmenu .active,
.index-page.scrolled .navmenu .active:focus {
  color: var(--nav-hover-color);
}

.about-text {
  text-align: justify;
  line-height: 1.7;
  font-size: 17px;
  color: #000000;
}

/*--------------------------------------------------------------
# Mobile Responsiveness Customizations
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  /* Reduce God Logo size on mobile/tablet */
  #header img[alt="God Logo"] {
    max-height: 80px !important;
  }

  /* Hide the desktop Donate button and Language Selector in the navbar on mobile/tablet */
  #header .container.d-flex.align-items-center.justify-content-between > .btn,
  #header .pe-md-5 {
     display: none;
  }
  
  /* Strictly hide the desktop donate button if not covered above */
  #header .btn-lg.ms-3 {
      display: none;
  }

  /* Fix invisible text in mobile menu (white text on white background) */
  .navmenu a,
  .navmenu a:focus,
  .navmenu a:hover,
  .navmenu .toggle-dropdown,
  .navmenu .active,
  .navmenu .dropdown-active {
    color: white!important;
  }
  
  /* Ensure the active/hover state in mobile menu is also visible/distinct if needed */
  .navmenu .active, 
  .navmenu .dropdown-active > a {
     color: white !important;
  }

  /* Ensure hamburger icon is visible */
  .mobile-nav-toggle {
    color: white;
  }

}

/* Social Sidebar Styling */
.social-sidebar {
  position: fixed;
  right: 15px;
  bottom: 80px;
  z-index: 996;
  display: flex !important;
  flex-direction: column;
  gap: 12px;
  transition: all 0.4s;
}

.social-sidebar a {
  width: 45px;
  height: 45px;
  padding: 0 !important; /* Fixed: Removed padding that caused misalignment */
  background: linear-gradient(90deg, #d35400 0%, #e67e22 50%, #d35400 100%) !important;
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
  font-size: 1.2rem;
}

.social-sidebar a:hover {
  background: linear-gradient(90deg, #b34700 0%, #d35400 50%, #b34700 100%) !important;
  transform: scale(1.1);
}


/* Unified Header Donation Button */
.header-donate-btn {
  background: #FFD700 !important; 
  color: #8B0000 !important; 
  position: relative; 
  overflow: hidden; 
  border-radius: 50px !important; 
  padding: 14px 40px 10px 40px !important; 
  font-weight: bold !important; 
  box-shadow: 0 4px 6px rgba(0,0,0,0.3) !important; 
  font-size: 14px !important; 
  white-space: nowrap !important; 
  display: inline-flex !important; 
  align-items: center !important; 
  justify-content: center !important; 
  line-height: 1 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.header-donate-btn:hover {
  background: #ffcc00 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.35) !important;
  color: #720000 !important;
}

/* Donation Button Pulse Effect */
@keyframes donate-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.donate-btn-effect {
  animation: donate-pulse 2s infinite;
}

@media (max-width: 1199px) {

  /* Fix Hero Content on Mobile */
  .hero-content-inner {
    margin-left: 0 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    text-align: center; /* Optional: Center text on mobile for better balance */
  }
  
  /* Override the text-start class on mobile if needed for centering */
  .hero-content-inner.text-start {
    text-align: center !important;
  }
}
/* Seva Table Alignment */
.seva-list .table td:last-child, .seva-list .table th:last-child { padding-right: 40px !important; }

.footer {
  background-color: #ffffff !important;
  font-weight: 600;
  color: black;
}

/* Menu Arrow Styling */
.navmenu .toggle-dropdown {
  font-size: 13px !important;
  margin-left: 2px !important;
  margin-top: 7px;
}

body.lang-kn .navmenu .toggle-dropdown {
  margin-top: 4px !important;
}

/* Change to up arrow on hover/active for filled caret */
.navmenu .dropdown:hover > a .toggle-dropdown::before,
.navmenu .dropdown a:focus .toggle-dropdown::before,
.navmenu .dropdown a:active .toggle-dropdown::before {
  content: '\F232' !important; /* Bootstrap 'caret-up-fill' */
}


/* Force transparent background on arrow icon to prevent white background on hover */
.navmenu .toggle-dropdown,
.navmenu .toggle-dropdown:hover,
.navmenu a:hover .toggle-dropdown,
.navmenu .active .toggle-dropdown,
.navmenu .active:focus .toggle-dropdown {
  background-color: transparent !important;
  background: none !important;
}

/* Ensure mobile menu dropdowns display correctly */
@media (max-width: 1199px) {
  .navmenu .dropdown > ul {
    display: none;
  }
  .navmenu .dropdown.active > ul {
    display: block;
  }
  /* Fix scrolling clipping issues */
  .navmenu {
    overflow-y: auto;
    max-height: 100vh;
  }
}


/* Hide carousel controls by default and show on hover */
/* Hide carousel controls by default and show on hover */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  opacity: 0;
  transition: all 0.3s ease;
  width: 5%; /* Narrow width to keep arrow near edge */
}

/* Position arrows at the very edges */
.hero .carousel-control-prev { left: 0; }
.hero .carousel-control-next { right: 0; }

/* Style the icon container (the square background) */
.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  background-color: transparent !important; /* Removed black background */
  width: 3rem; /* Increased arrow size */
  height: 3rem;
  background-size: 100% 100%;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.hero:hover .carousel-control-prev,
.hero:hover .carousel-control-next {
  opacity: 1;
}

/* News Ticker Mobile Responsiveness */
@media (max-width: 575px) {
  .news-label {
    font-size: 14px !important;
    padding: 10px 15px !important;
  }
  .news-ticker-item {
    font-size: 13px !important;
  }
  .news-content img {
    height: 20px !important;
  }
}


/* TV Design for About Section Video */
.tv-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.tv-screen-bezel {
  background: #1a1a1a;
  padding: 12px 12px 25px 12px;
  border-radius: 15px;
  box-shadow: inset 0 0 2px rgba(255,255,255,0.1), 0 10px 30px rgba(0,0,0,0.4);
  position: relative;
  border: 2px solid #444;
}

/* Power light */


/* Brand placeholder */
.tv-screen-bezel::before {
 
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  color: #555;
  font-size: 10px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  letter-spacing: 1px;
}

.tv-screen-content {
  border-radius: 2px;
  background: #000;
  overflow: hidden;
}

.tv-stand-neck {
  width: 80px;
  height: 20px;
  background: #222;
  margin: 0 auto;
  position: relative;
  top: -2px;
}

.tv-stand-base {
  width: 180px;
  height: 8px;
  background: linear-gradient(to bottom, #222, #111);
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  position: relative;
  top: -2px;
}


/* Responsive Footer Links */
@media (max-width: 992px) {
  .footer .footer-links {
    text-align: center !important;
  }
  .footer .footer-links ul li {
    justify-content: center;
  }
}

/* Mobile Footer Size Adjustments */
@media (max-width: 576px) {
  .footer {
    padding-top: 30px !important;
  }
  .footer h4 {
    font-size: 1rem !important;
    margin-bottom: 12px !important;
  }
  .footer p, 
  .footer .footer-links ul li,
  .copyright p {
    font-size: 0.7rem !important;
    line-height: 1.5 !important;
  }
  .credits {
    font-size: 0.7rem !important;
  }
  .credits a {
    font-size: 18px !important; /* Large font for mobile as requested */
    display: inline-block;
    margin-top: 5px;
  }
  .bank-details {
    font-size: 0.6rem !important;
    line-height: 1.4 !important;
  }
  .bank-details p {
    margin-bottom: 2px !important;
  }
  /* Committee Tabs Mobile Column View */
  #committee-tabs {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  #committee-tabs .nav-item {
    width: 100%;
    margin: 0 !important;
  }
  #committee-tabs .nav-link {
    width: 100% !important;
    min-width: 100% !important;
    text-align: center;
  }
  /* Extra override for any persistent elements */
  .footer p.text-muted {
    font-size: 1rem !important;
  }
}