/**
* Template Name: Mentor - Biyani Technologies (Redesigned)
* Enhanced theme: Vedic Saffron & Deep Maroon palette
*/
 
/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&family=Poppins:wght@400;500;600;700&display=swap');
 
:root {
  --default-font: "DM Sans", system-ui, -apple-system, sans-serif;
  --heading-font: "Cormorant Garamond", serif;
  --nav-font: "Poppins", sans-serif;
}
 
/* Core Palette — Vedic Saffron & Deep Maroon */
:root {
  --background-color: #FFFAF4;
  --default-color: #2C1810;         /* Deep espresso — primary text */
  --heading-color: #7B1D1D;         /* Rich maroon — headings */
  --accent-color: #D4670C;          /* Saffron orange — CTAs, accents */
  --accent-light: #F7A543;          /* Warm gold — secondary accent */
  --surface-color: #FFF2E0;         /* Warm cream — card surfaces */
  --contrast-color: #FFFFFF;        /* White for text on dark/colored bg */
  --border-color: #E8D5B7;          /* Parchment — subtle borders */
  --muted-text: #7A5C4A;            /* Warm muted — secondary text */
}
 
/* Nav Colors */
:root {
  --nav-color: #2C1810;
  --nav-hover-color: #D4670C;
  --nav-mobile-background-color: #FFFAF4;
  --nav-dropdown-background-color: #FFF2E0;
  --nav-dropdown-color: #2C1810;
  --nav-dropdown-hover-color: #D4670C;
}
 
.light-background {
  --background-color: #FFF6EA;
  --surface-color: #FFEFD0;
}
 
.dark-background {
  --background-color: #1A0A05;
  --default-color: #F5E6D0;
  --heading-color: #F7A543;
  --surface-color: #2D1208;
  --contrast-color: #FFFFFF;
}
 
:root {
  scroll-behavior: smooth;
}
 
/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}
 
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 16px;
  line-height: 1.7;
}
 
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
 
a:hover {
  color: #B8540A;
  text-decoration: none;
}
 
h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
}
 
/* PHP Email Form */
.php-email-form .error-message {
  display: none;
  background: #c0392b;
  color: #fff;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 4px;
}
 
.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #27ae60;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 4px;
}
 
.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: transparent;
  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%, rgba(212,103,12,0.3) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}
 
.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation: pulsate-play-btn 2s infinite;
  border-radius: 50%;
  border: 5px solid rgba(212,103,12,0.5);
  top: -15%;
  left: -15%;
  background: transparent;
}
 
.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  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:after {
  border-left-color: var(--accent-color);
  transform: translateX(-40%) translateY(-50%) scale(20);
}
 
@keyframes pulsate-play-btn {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1); opacity: 0; }
}
 
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: var(--background-color);
  border-bottom: 2px solid var(--border-color);
  padding: 12px 0;
  transition: all 0.4s ease;
  z-index: 997;
  box-shadow: 0 2px 20px rgba(44,24,16,0.06);
}
 
.header .logo {
  line-height: 1;
}
 
.header .logo img {
  max-height: 68px;
  margin-right: 10px;
}
 
.header .logo h1 {
  font-weight: 700;
  font-size: 26px;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--heading-color);
  font-family: var(--heading-font);
}
 
.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #FFFFFF !important;
  background: linear-gradient(135deg, var(--accent-color), #B8540A);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--nav-font);
  padding: 10px 26px;
  margin: 0 0 0 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212,103,12,0.3);
  letter-spacing: 0.3px;
}
 
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background: linear-gradient(135deg, #B8540A, #8B3A06);
  box-shadow: 0 6px 20px rgba(212,103,12,0.45);
  transform: translateY(-1px);
  color: #FFFFFF !important;
}
 
@media (max-width: 1200px) {
  .header .logo { order: 1; }
  .header .btn-getstarted { order: 2; margin: 0 15px 0 0; padding: 7px 16px; }
  .header .navmenu { order: 3; }
}
 
.scrolled .header {
  box-shadow: 0 4px 24px rgba(44,24,16,0.12);
}
 
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@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 16px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: color 0.3s ease;
    position: relative;
  }
 
  .navmenu a::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
  }
 
  .navmenu a:hover::after,
  .navmenu .active::after,
  .navmenu .active:focus::after {
    transform: scaleX(1);
  }
 
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    margin-left: 5px;
    transition: 0.3s;
  }
 
  .navmenu li:last-child a { padding-right: 0; }
  .navmenu li:last-child a::after { right: 0; }
 
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-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: 8px;
    z-index: 99;
    box-shadow: 0 8px 30px rgba(44,24,16,0.15);
    border: 1px solid var(--border-color);
  }
 
  .navmenu .dropdown ul li { min-width: 200px; }
 
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }
 
  .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;
  }
}
 
/* Mobile Nav */
@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; }
 
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 12px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(44,24,16,0.15);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
 
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
  }
 
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }
 
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(212,103,12,0.1);
    transition: 0.3s;
  }
 
  .navmenu a i:hover { background-color: var(--accent-color); color: #fff; }
 
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: #fff;
    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-radius: 8px;
    transition: all 0.5s ease-in-out;
  }
 
  .navmenu .dropdown > .dropdown-active { display: block; }
 
  .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(44,24,16,0.85);
    transition: 0.3s;
  }
 
  .mobile-nav-active .navmenu > ul { display: block; }
}
 
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #F5E6D0;
  background: linear-gradient(160deg, #3D0E0E 0%, #1A0A05 100%);
  font-size: 14px;
  padding-bottom: 0;
  position: relative;
}
 
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light), var(--accent-color));
}
 
.footer .footer-top {
  padding-top: 60px;
  padding-bottom: 40px;
}
 
.footer h4 {
  font-size: 17px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--accent-light);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(247,165,67,0.25);
}
 
.footer p { color: #C4A882; font-size: 14px; }
 
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
 
.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(247,165,67,0.08);
}
 
.footer .footer-links ul li:last-child { border-bottom: none; }
 
.footer .footer-links ul a {
  color: #C4A882;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
 
.footer .footer-links ul a::before {
  content: '›';
  color: var(--accent-color);
  font-size: 18px;
  line-height: 1;
}
 
.footer .footer-links ul a:hover {
  color: var(--accent-light);
  padding-left: 6px;
}
 
.footer .footer-contact p {
  color: #C4A882;
  margin-bottom: 8px;
}
 
.footer .footer-contact strong {
  color: var(--accent-light);
}
 
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(247,165,67,0.3);
  font-size: 16px;
  color: #C4A882;
  margin-right: 10px;
  transition: all 0.3s ease;
}
 
.footer .social-links a:hover {
  color: #fff;
  border-color: var(--accent-color);
  background: var(--accent-color);
  transform: translateY(-2px);
}
 
.footer .copyright {
  padding: 20px 0;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(247,165,67,0.15);
  text-align: center;
}
 
.footer .copyright p {
  margin-bottom: 4px;
  color: #9A7A60;
  font-size: 13px;
}
 
.footer .credits {
  font-size: 12px;
  color: #7A5A40;
}
 
.footer .credits a { color: var(--accent-color); }
 
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}
 
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 4px solid var(--accent-color);
  border-top-color: transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}
 
@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
 
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: -15px;
  z-index: 99999;
  background: linear-gradient(135deg, var(--accent-color), #B8540A);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(212,103,12,0.4);
}
 
.scroll-top i { font-size: 22px; color: #fff; line-height: 0; }
 
.scroll-top:hover {
  background: linear-gradient(135deg, #B8540A, #8B3A06);
  transform: translateY(-3px);
}
 
.scroll-top.active { visibility: visible; opacity: 1; bottom: 20px; }
 
@media screen and (max-width: 768px) {
  [data-aos-delay] { transition-delay: 0 !important; }
}
 
/*--------------------------------------------------------------
# Global Page Titles
--------------------------------------------------------------*/
.page-title {
  --default-color: var(--contrast-color);
  --background-color: var(--heading-color);
  --heading-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}
 
.page-title .heading {
  padding: 63px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
      background: var(--surface-color);

}
 
.page-title .heading h1 { font-size: 38px; font-weight: 700;   color: var(--default-color);
 }
 
.page-title nav {
  background-color: #5A1010;
  padding: 20px 0;
}
 
.page-title nav a { color: var(--contrast-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: rgba(255,255,255,0.5);
}
 
/*--------------------------------------------------------------
# Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
 
.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
 
.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
  margin: 12px auto 0;
  border-radius: 2px;
}
 
.section-title p {
  margin-bottom: 0;
  color: var(--muted-text);
  font-size: 16px;
  max-width: 640px;
  margin: 8px auto 0;
}
 
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
}
 
.hero img {
  display: block;
  width: 100%;
  height: auto;
}
 
.hero .container {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
}
 
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
  background-color: var(--background-color);
}
 
.about img {
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(44,24,16,0.15);
  transition: transform 0.4s ease;
}
 
.about img:hover { transform: scale(1.02); }
 
.about .content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 16px;
}
 
.about .content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
  border-radius: 2px;
}
 
.about .content p {
  color: var(--muted-text);
  margin-bottom: 20px;
  font-size: 15px;
}
 
.about .content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
 
.about .content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 15px;
  color: var(--default-color);
}
 
.about .content ul li:last-child { border-bottom: none; }
 
.about .content ul li i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
 
.about .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-color), #B8540A);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--nav-font);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212,103,12,0.3);
}
 
.about .read-more:hover {
  background: linear-gradient(135deg, #B8540A, #8B3A06);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,103,12,0.4);
}
 
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 80px 0;
}
 
.features .feature-box {
  background: var(--surface-color);
  border: 1px solid var(--border-color) !important;
  border-radius: 12px !important;
  padding: 32px !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
 
.features .feature-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}
 
.features .feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44,24,16,0.12);
  border-color: var(--accent-color) !important;
}
 
.features .feature-box:hover::before { opacity: 1; }
 
.features .feature-box i {
  color: var(--accent-color);
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
 
.features .feature-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
}
 
.features .feature-box p {
  color: var(--muted-text);
  font-size: 15px;
  margin-bottom: 0;
}
 
/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts {
  padding: 80px 0;
  background: linear-gradient(135deg, #3D0E0E 0%, #5A1818 50%, #3D0E0E 100%);
  position: relative;
  overflow: hidden;
}
 
.counts::before {
  content: 'ॐ';
  position: absolute;
  font-size: 300px;
  color: rgba(255,255,255,0.025);
  font-family: serif;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
}
 
.counts .text-center h2,
.counts .text-center p {
  color: #F5E6D0 !important;
}
 
.counts .text-center p { color: rgba(245,230,208,0.7) !important; }
 
.counts .stats-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(247,165,67,0.2);
  border-radius: 16px;
  padding: 40px 24px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
 
.counts .stats-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(247,165,67,0.5);
  transform: translateY(-4px);
}
 
.counts .stats-item span {
  font-size: 52px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--accent-light);
  display: block;
  line-height: 1.1;
}
 
.counts .stats-item p {
  font-size: 15px;
  color: rgba(245,230,208,0.8);
  margin: 8px 0 0;
  font-weight: 500;
}
 
/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 80px 0;
  background: var(--background-color);
}
 
.why-us .why-box {
  background: linear-gradient(145deg, #7B1D1D, #5A0E0E);
  padding: 40px 36px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 12px 40px rgba(44,24,16,0.25);
  position: relative;
  overflow: hidden;
}
 
.why-us .why-box::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
 
.why-us .why-box h2 {
  font-size: 26px;
  font-weight: 700;
  color: #FFF3E0;
  margin-bottom: 20px;
}
 
.why-us .why-box p {
  color: rgba(255,243,224,0.8);
  font-size: 15px;
  line-height: 1.8;
}
 
.why-us .why-box .more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: #FFF3E0;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
 
.why-us .why-box .more-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}
 
.why-us .icon-box {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
 
.why-us .icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44,24,16,0.12);
  border-color: var(--accent-color);
}
 
.why-us .icon-box img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}
 
.why-us .icon-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
}
 
.why-us .icon-box p {
  font-size: 14px;
  color: var(--muted-text);
  margin: 0;
}
 
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.features-item {
  background: var(--contrast-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: all 0.3s ease;
  filter: grayscale(0.2);
}
 
.features-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(212,103,12,0.15);
  filter: grayscale(0);
  transform: translateY(-3px);
}
 
.features-item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}
 
/*--------------------------------------------------------------
# Courses (Software Overview) Section
--------------------------------------------------------------*/
.courses {
  padding: 80px 0;
  background: var(--background-color);
}
 
.course-item {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
}
 
.course-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(44,24,16,0.15);
  border-color: var(--accent-color);
}
 
.course-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
 
.course-item:hover img { transform: scale(1.05); }
 
.course-content {
  padding: 24px;
}
 
.course-content .category {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  font-family: var(--nav-font);
}
 
.course-content .description {
  font-size: 14px;
  color: var(--default-color);
  line-height: 1.7;
  margin: 0;
}

.course-content a {
  color: black;
}
 
/*--------------------------------------------------------------
# Functions Section
--------------------------------------------------------------*/
.functions {
  background: linear-gradient(135deg, #FFF6EA 0%, #FFEFD0 100%);
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
 
.head-mod-5 {
  display: flex;
  margin-left: 12px;
  align-items: center;
}
 
.head-mod-5 h3 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--default-color);
  font-family: var(--nav-font);
}
 
.add-on {
  background-color: #fff;
  display: flex;
  width: 100%;
  border: 1px solid var(--border-color);
  align-items: center;
  border-radius: 100px;
  transition: all 0.3s ease;
  overflow: hidden;
}
 
.add-on:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 16px rgba(212,103,12,0.15);
  transform: translateY(-2px);
}
 
.icon-sect {
  display: flex;
  background: linear-gradient(135deg, var(--accent-color), #B8540A);
  padding: 14px 14px;
  align-items: center;
  border-radius: 100px;
  margin: 3px;
  flex-shrink: 0;
}
 
.icon-sect img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(10);
}
 
/*--------------------------------------------------------------
# Why Us (icon-box containers) - height fix
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .why-us .col-xl-4 {
    height: auto !important;
  }
}
 
/*--------------------------------------------------------------
# Responsive Map
--------------------------------------------------------------*/
.map-responsive {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(247,165,67,0.3);
}
 
.map-responsive iframe {
  width: 100%;
  border: 0;
  display: block;
}
 
/*--------------------------------------------------------------
# General Section Padding
--------------------------------------------------------------*/
.section { padding: 80px 0; }
 
/*--------------------------------------------------------------
# Trainers Section
--------------------------------------------------------------*/
.trainers .member { position: relative; }
 
.trainers .member .member-img {
  margin: 0 60px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
 
.trainers .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(44,24,16,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}
 
.trainers .member .member-img .social a {
  color: #fff;
  font-size: 20px;
  margin: 0 8px;
  transition: color 0.3s;
}
 
.trainers .member .member-img .social a:hover { color: var(--accent-light); }
 
.trainers .member .member-info { margin-top: 24px; text-align: center; }
 
.trainers .member .member-info h4 { font-weight: 700; margin-bottom: 4px; font-size: 18px; }
 
.trainers .member:hover .member-img .social { visibility: visible; opacity: 1; }
 
/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
 
.events .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44,24,16,0.12);
  border-color: var(--accent-color);
}
 
.events .card-body {
  padding: 24px;
  background: var(--surface-color);
}
 
.events .card-title { font-weight: 700; text-align: center; margin-bottom: 16px; }
 
.events .card:hover .card-title a { color: var(--accent-color); }
 
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(44,24,16,0.07);
  padding: 32px 24px;
  text-align: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
 
.pricing .pricing-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44,24,16,0.15);
}
 
.pricing .pricing-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted-text);
  margin-bottom: 20px;
}
 
.pricing .pricing-item h4 {
  font-size: 40px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}
 
.pricing .pricing-item ul { padding: 16px 0; list-style: none; font-size: 14px; }
 
.pricing .pricing-item ul li { padding-bottom: 12px; }
 
.pricing .pricing-item ul i { color: var(--accent-color); font-size: 18px; padding-right: 4px; }
 
.pricing .btn-buy {
  background: linear-gradient(135deg, var(--accent-color), #B8540A);
  color: #fff;
  display: inline-block;
  padding: 10px 36px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212,103,12,0.3);
}
 
.pricing .btn-buy:hover {
  background: linear-gradient(135deg, #B8540A, #8B3A06);
  transform: translateY(-2px);
}
 
.pricing .featured { border-color: var(--accent-color); }
 
.pricing .featured h3 { background: var(--accent-color); color: #fff; }
 
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact { padding: 60px 0; }
 
.contact .info-item + .info-item { margin-top: 32px; }
 
.contact .info-item i {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color), #B8540A);
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  transition: all 0.3s;
  margin-right: 16px;
  box-shadow: 0 4px 12px rgba(212,103,12,0.3);
}
 
.contact .info-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
 
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 12px 16px;
  box-shadow: none;
  border-radius: 8px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  transition: border-color 0.3s;
}
 
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,103,12,0.1);
}
 
.contact .php-email-form button[type=submit] {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color), #B8540A);
  border: 0;
  padding: 12px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212,103,12,0.3);
}
 
.contact .php-email-form button[type=submit]:hover {
  background: linear-gradient(135deg, #B8540A, #8B3A06);
  transform: translateY(-2px);
}