

/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  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: #37423b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2b5629; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --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: #2b5629; /* 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-dropdown-hover-color: #2b5629; /* 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
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

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: 75px;
  margin-right: 8px;
}

.header .logo h1 {
  font-weight: 700;
  font-size: 30px;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  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: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -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;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# 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: 75px;
  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;
}

.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;
}

/*--------------------------------------------------------------
# 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: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 0px;
  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: 0px 0px;
  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;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.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;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: 0.4s;
  margin-top: 30px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  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: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 24px 12px 24px;
  border-radius: 50px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# 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;
}

.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 Section
--------------------------------------------------------------*/
.courses .course-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 5px;
}

.courses .course-content {
  padding: 15px;
}

.courses .course-content h3 {
  font-weight: 700;
  font-size: 20px;
}

.courses .course-content h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.courses .course-content h3 a:hover {
  color: var(--accent-color);
}

.courses .course-content .category {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0;
  border-radius: 5px;
}

.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .course-content .description {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses .trainer .trainer-profile .trainer-link {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.courses .trainer .trainer-profile .trainer-link:hover {
  color: var(--accent-color);
}

.courses .trainer .trainer-rank {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.courses .trainer .trainer-rank .user-icon {
  font-size: 22px;
}

/*--------------------------------------------------------------
# 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 .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.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: var(--accent-color);
}

.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;
  }
}

/*--------------------------------------------------------------
# Courses Course Details Section
--------------------------------------------------------------*/
.courses-course-details {
  padding-bottom: 20px;
}

.courses-course-details h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.courses-course-details h3:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  bottom: 0;
  left: 0;
}

.courses-course-details h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.courses-course-details .course-info {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 10px 15px;
  margin-bottom: 15px;
}

.courses-course-details .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  font-family: var(--nav-font);
}

.courses-course-details .course-info p {
  margin: 0;
  font-weight: 600;
}

.courses-course-details .course-info a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}




/* ===================================
   ZN PROGRAMS SECTION
=================================== */

#zn-programs-section-v2{
    background: #f5f8f7;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
}

#zn-programs-section-v2 .container-fluid{
    padding-left: 20px;
    padding-right: 20px;
}

.zn-programs-row{
    row-gap: 24px;
    column-gap: 0;
}


/* Heading */

.zn-programs-heading-wrap{
    margin-bottom: 45px;
}

.zn-programs-subtitle{
    display: inline-block;
    background: rgba(43,175,102,0.10);
    color: #2b5629;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.zn-programs-main-title{
    font-size: 52px;
    font-weight: 800;
    color: #111;
    letter-spacing: 1px;
    margin: 0;
}

/* Row */

.zn-programs-row{
    gap: 10px;
}

/* Card */

.zn-program-card-v2{
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    height: 100%;
    position: relative;
}

.zn-program-card-v2:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Image */

.zn-program-image-wrap{
    position: relative;
    overflow: hidden;
}

.zn-program-image{
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.zn-program-card-v2:hover .zn-program-image{
    transform: scale(1.08);
}

.zn-program-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.05));
}

/* Badge */

.zn-program-badge{
    position: absolute;
    top: 18px;
    left: 18px;
    background: #2b5629;
    color: #fff;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Content */

.zn-program-content{
    padding: 30px 28px;
}

.zn-program-title{
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    color: #111;
    margin-bottom: 18px;
}

.zn-program-title-small{
    font-size: 24px;
}

.zn-program-divider{
    width: 65px;
    height: 4px;
    background: #2b5629;
    border-radius: 50px;
    margin-bottom: 25px;
}

/* Top Row */

.zn-program-top{
    margin-bottom: 18px;
}

.zn-program-label{
    font-size: 14px;
    font-weight: 700;
    color: #777;
    letter-spacing: 2px;
    margin: 0;
}

.zn-program-arrow{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(43,175,102,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.zn-program-arrow img{
    width: 18px;
}

.zn-program-card-v2:hover .zn-program-arrow{
    background: #2b5629;
    transform: rotate(-45deg);
}

.zn-program-card-v2{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.zn-program-image{
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: cover;
}

.zn-programs-main-title{
    font-size: clamp(28px, 4vw, 52px);
}

.zn-program-title{
    font-size: clamp(20px, 2.2vw, 28px);
}

.zn-program-title-small{
    font-size: clamp(18px, 2vw, 24px);
}
/* ===================================
   PROGRAM LIST INLINE
=================================== */

.zn-program-list{
    margin: 0;
    padding: 0;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.zn-program-list li{
    margin-bottom: 0;
}

.zn-program-list li a{
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;

    background: #f4f7f6;
    padding: 8px 14px;
    border-radius: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;
}

.zn-program-list li a:hover{
    color: #fff;
    background: #2b5629;
    transform: translateY(-2px);
}

/* Special List */

.zn-program-list-special{
    /* display: block; */
}

.zn-program-list-special li{
    margin-bottom: 12px;
}

.zn-program-list-special li a{
    white-space: normal;
    border-radius: 14px;
    line-height: 1.6;
}
/* Responsive */

@media(max-width: 1399px){

    .zn-programs-main-title{
        font-size: 44px;
    }

    .zn-program-title{
        font-size: 24px;
    }

}

@media(max-width: 991px){

    .zn-programs-main-title{
        font-size: 38px;
    }

    .zn-program-image{
        height: 240px;
    }

}

@media(max-width: 767px){

    .zn-programs-main-title{
        font-size: 32px;
    }

    .zn-program-content{
        padding: 25px 22px;
    }

    .zn-program-title{
        font-size: 22px;
    }

    .zn-program-image{
        height: 220px;
    }
    
     .zn-program-content{
        padding: 20px 18px;
    }

    .zn-program-badge{
        font-size: 12px;
        padding: 6px 14px;
    }

    .zn-program-arrow{
        width: 42px;
        height: 42px;
    }

}

@media (hover: none){
    .zn-program-card-v2:hover{
        transform: none;
    }

    .zn-program-card-v2:hover .zn-program-image{
        transform: none;
    }
}

.zn-program-list{
    gap: 8px;
}

@media (max-width: 576px){
    .zn-program-list li a{
        font-size: 13px;
        padding: 7px 12px;
    }
}


.modern-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.modern-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.zn-program-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.zn-program-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-card:hover .zn-program-image {
    transform: scale(1.08);
}

.zn-program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}

.zn-program-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #2b5629;
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px #2b5629;
}

.zn-program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.zn-program-desc {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 20px;
}

.btn-primary {
    background: #2b5629;
    border: none;
    padding: 12px 20px;
    border-radius: 48px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2b5629;
    transform: translateY(-2px);
}
/* ===================================
   ZN ABOUT LCMD SECTION
=================================== */

#zn-about-lcmd-section-v2{
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to bottom, #f7faf8, #ffffff);
    overflow: hidden;
}

/* Background Shapes */

.zn-about-bg-circle-one{
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(43,175,102,0.06);
    top: -120px;
    left: -120px;
    z-index: 1;
}

.zn-about-bg-circle-two{
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(43,175,102,0.04);
    bottom: -100px;
    right: -80px;
    z-index: 1;
}

/* Main Card */

.zn-about-lcmd-card{
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 34px;
    padding: 70px 70px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.06),
        0 5px 20px rgba(0,0,0,0.03);

    border: 1px solid rgba(43,175,102,0.08);
}

/* Badge */

.zn-about-top-badge{
    display: inline-block;
    background: rgba(43,175,102,0.10);
    color: #2b5629;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

/* Heading */

.zn-about-heading-wrap{
    margin-bottom: 45px;
}

.zn-about-main-heading{
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #111;
    margin-bottom: 22px;
}

.zn-about-heading-line{
    width: 90px;
    height: 5px;
    background: #2b5629;
    margin: auto;
    border-radius: 100px;
}

/* Paragraphs */

.zn-about-content-wrap{
    max-width: 1000px;
    margin: auto;
}

.zn-about-paragraph{
    font-size: 18px;
    line-height: 2;
    color: #555;
    margin-bottom: 28px;
    text-align: center;
}

/* Links */

.zn-about-paragraph a{
    color: #2b5629;
    font-weight: 700;
    text-decoration: none;
    position: relative;
}

.zn-about-paragraph a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #2b5629;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.zn-about-paragraph a:hover::after{
    transform: scaleX(1);
}

/* Button */

.zn-about-btn-wrap{
    margin-top: 45px;
}

.zn-about-main-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: #2b5629;
    color: #fff !important;

    padding: 18px 34px;
    border-radius: 100px;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.35s ease;

    box-shadow: 0 12px 30px rgba(43,175,102,0.25);
}

.zn-about-main-btn:hover{
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(43,175,102,0.35);
    color: #fff !important;
}

.zn-about-main-btn svg{
    transition: transform 0.3s ease;
}

.zn-about-main-btn:hover svg{
    transform: translateX(4px);
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width: 1399px){

    .zn-about-main-heading{
        font-size: 46px;
    }

}

@media(max-width: 1199px){

    .zn-about-lcmd-card{
        padding: 60px 50px;
    }

    .zn-about-main-heading{
        font-size: 40px;
    }

}

@media(max-width: 991px){

    #zn-about-lcmd-section-v2{
        padding: 80px 0;
    }

    .zn-about-lcmd-card{
        padding: 50px 35px;
        border-radius: 28px;
    }

    .zn-about-main-heading{
        font-size: 34px;
    }

    .zn-about-paragraph{
        font-size: 17px;
        line-height: 1.9;
    }

}

@media(max-width: 767px){

    #zn-about-lcmd-section-v2{
        padding: 65px 0;
    }

    .zn-about-lcmd-card{
        padding: 40px 22px;
        border-radius: 24px;
    }

    .zn-about-main-heading{
        font-size: 28px;
        line-height: 1.3;
    }

    .zn-about-paragraph{
        font-size: 15px;
        line-height: 1.9;
        text-align: left;
    }

    .zn-about-main-btn{
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }

    .zn-about-top-badge{
        font-size: 11px;
        padding: 10px 18px;
    }

}

@media(max-width: 480px){

    .zn-about-main-heading{
        font-size: 24px;
    }

    .zn-about-paragraph{
        font-size: 14px;
    }

}

/* ============================= */
/* LIFE AT LCMD - MODERN DESIGN */
/* ============================= */
/* SECTION WRAPPER */
.zn-lcmd2-section{
    padding: 80px 20px;
    background: #f8f9fb;
}

.zn-lcmd2-wrapper{
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* LEFT SLIDER */
.zn-lcmd2-slider-area{
    flex: 1.2;
    min-width: 0;
}

.znLcmdSwiper{
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.znLcmdSwiper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT CONTENT */
.zn-lcmd2-content{
    flex: 0.8;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.zn-lcmd2-title{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.zn-lcmd2-title::after{
    content:"";
    width: 60px;
    height: 3px;
    background:#2b5629;
    display:block;
    margin-top:8px;
    border-radius:10px;
}

.zn-lcmd2-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.zn-lcmd2-list li{
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 16px;
}

.znLcmdSwiper,
.swiper-wrapper,
.swiper-slide {
    width: 100%;
    height: auto;
}

.znLcmdSwiper img{
    width: 100%;
    height: 100%;
    min-height: 250px;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

.zn-lcmd2-slider-area{
    flex: 1.2;
    min-width: 0;
    width: 100%;
}

.znLcmdSwiper{
    width: 100%;
    height: 100%;
    position: relative;
}

/* RESPONSIVE */
@media (max-width: 992px){
    .zn-lcmd2-wrapper{
        flex-direction: column;
        gap: 20px;
    }

    .zn-lcmd2-slider-area,
    .zn-lcmd2-content{
        width: 100%;
    }

    .znLcmdSwiper{
        height: 280px;
    }

    .znLcmdSwiper img{
        height: 280px;
        min-height: unset;
    }

    .zn-lcmd2-content{
        padding: 20px;
    }
}


/**/

.modern-stats {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-stats:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.stats-icon {
  font-size: 2.8rem;
  color: #2b5629;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.modern-stats:hover .stats-icon {
  transform: scale(1.1);
  color: #2b5629;
}

.purecounter {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: #2a2a2a;
  display: block;
  margin-bottom: 0.5rem;
}

.modern-stats p {
  font-size: 1.05rem;
  color: #666;
  font-weight: 500;
  margin: 0;
}

/* Optional: Light gradient background */
#counts {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
}
/*  */

#znHeroSliderSection {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0px 0px;
}

/* Main Swiper */
.znHeroSwiperMain {
    width: 100%;
    height: 75vh;           /* Full viewport height */
    min-height: 620px;       /* Minimum height */
}

/* Image - Fixed Centering & Cover */
.znHeroSlideImage {
    width: 100%;
    height: 100%;
    object-fit: cover;           /* Ensures full coverage */
    object-position: center center;   /* Centers the image */
    transition: transform 9s ease;
}

/* Zoom effect on active slide */
.swiper-slide-active .znHeroSlideImage {
    transform: scale(1.07);
}

/* Overlay */
.znHeroOverlayLayer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.35)
    );
    z-index: 2;
}

/* Content */
.znHeroContentWrap {
    position: absolute;
    top: 15%;
    left: 8%;
    transform: unset;
    z-index: 5;
    max-width: 720px;
    color: #fff;
    padding-right: 20px;
}
.znHeroTagline {
    display: inline-block;
    padding: 10px 26px;
    margin-bottom: 20px;
    border-radius: 50px;
    background: #2b562978;
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(126, 216, 152, 0.4);
}

.znHeroMainTitle {
    font-size: clamp(32px, 4.5vw, 58px);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff !important;           /* This is the fix */
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

/* 
.znHeroMainTitle h2{
  color: #fff !important;
} */

.znHeroDescription {
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    max-width: 580px;
}

/* Button - Using your theme color */
.znHeroMainButton {
    display: inline-block;
    padding: 16px 38px;
    background: #2b5629;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(126, 216, 152, 0.3);
}

.znHeroMainButton:hover {
    background: #2b5629;
    transform: translateY(-4px);
    color: #000;
}

/* =========================
   NAVIGATION ARROWS (Bootstrap Icons)
========================= */

.znHeroCustomPrev,
.znHeroCustomNext {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    z-index: 20;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    border: 1px solid rgba(255,255,255,0.2);
}

.znHeroCustomPrev { left: 30px; }
.znHeroCustomNext { right: 30px; }

.znHeroCustomPrev:hover,
.znHeroCustomNext:hover {
    background: #2b5629;
    color: #000;
    transform: scale(1.08);
    border-color: #2b5629;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .znHeroCustomPrev,
    .znHeroCustomNext {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .znHeroCustomPrev { left: 15px; }
    .znHeroCustomNext { right: 15px; }
}
/* Pagination */
.znHeroCustomPagination {
    position: absolute;
    bottom: 40px;
    left: 50%  !important;
    transform: translateX(-50%);
    z-index: 20;
}

.znHeroCustomPagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
    margin: 0 6px;
}

.znHeroCustomPagination .swiper-pagination-bullet-active {
    background: #2b5629;
    width: 36px;
    border-radius: 30px;
}

.znHeroSlideImage {       
    object-position: 100% -325px;   /* Centers the image */    
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 992px) {
    .znHeroContentWrap {
        left: 6%;
        max-width: 580px;
    }    

    .znHeroSlideImage {       
    object-position: center center;   /* Centers the image */    
}

}

@media (max-width: 768px) {
    .znHeroSwiperMain { min-height: 520px; }
    
    .znHeroContentWrap {
        left: 5%;
        right: 5%;
        max-width: 100%;
    }
    
    .znHeroMainButton {
        padding: 14px 32px;
    }
    .znHeroSlideImage {       
    object-position: center center;   /* Centers the image */    
}
}

@media (max-width: 576px) {
    .znHeroTagline { font-size: 12px; padding: 8px 18px; }
    .znHeroMainTitle { font-size: 2.2rem; }
    .znHeroSlideImage {       
    object-position: center center;   /* Centers the image */    
}
}

/* ==================== RESPONSIVE IMPROVEMENTS ==================== */

@media (max-width: 1400px) {
    .znHeroSwiperMain {
        min-height: 580px;
    }
    .znHeroSlideImage {       
    object-position: center center;   /* Centers the image */    
}
}

@media (max-width: 1200px) {
    .znHeroSwiperMain {
        min-height: 550px;
    }
    .znHeroContentWrap {
        left: 6%;
    }
    .znHeroSlideImage {       
    object-position: center center;   /* Centers the image */    
}
}

@media (max-width: 992px) {
    .znHeroSwiperMain {
        min-height: 520px;
    }
    .znHeroContentWrap {
        left: 5%;
        max-width: 90%;
    }
.znHeroSlideImage {       
    object-position: center center;   /* Centers the image */    
}
    
}

@media (max-width: 768px) {
    .znHeroSwiperMain {
        height: 75vh;           /* Better mobile height */
        min-height: 100%;
    }
    
    .znHeroContentWrap {
        left: 5%;
        right: 5%;
        top: 25%;
    }
    
    .znHeroMainTitle {
        font-size: 2.4rem;
    }

    .znLcmdSwiper, .swiper-wrapper, .swiper-slide {
    width: 100%;
    height: 100%;
}

.znHeroSlideImage {       
    object-position: center center;   /* Centers the image */    
}
}

@media (max-width: 576px) {
    .znHeroSwiperMain {
        height: 75vh;
        min-height: 100%;
    }
    
    .znHeroContentWrap {
        top: 25%;
    }
    
    .znHeroMainTitle {
        font-size: 2.1rem;
    }

    .znLcmdSwiper, .swiper-wrapper, .swiper-slide {
    width: 100%;
    height: 100%;
}
}

@media (max-width: 420px) {
    .znHeroSwiperMain {
       height: 75vh;
        min-height: 100%;
    }

    .znLcmdSwiper, .swiper-wrapper, .swiper-slide {
    width: 100%;
    height: 100%;
}
}
/**/


.success-stories-section {
    background: rgba(43,175,102,0.10);
}

.zn-subtitle {
    color: #2b5629;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 15px;
}

.zn-section-title {
    font-size: clamp(2.3rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: #222;
    margin: 12px 0 16px;
}

.zn-section-desc {
    color: #555;
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto;
}

/* Image Slider */
.successStoriesSwiper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.success-slide-img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    display: block;
}

/* Pagination */
.success-swiper-pagination {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 8px;
}

.success-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.7);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.success-swiper-pagination .swiper-pagination-bullet-active {
    background: #2b5629;
    width: 32px;
    border-radius: 30px;
}

/* Navigation Arrows */
.success-swiper-prev,
.success-swiper-next {
    position: absolute;
    top: 50%;
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.9);
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 21;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.success-swiper-prev { left: 20px; }
.success-swiper-next { right: 20px; }

.success-swiper-prev:hover,
.success-swiper-next:hover {
    background: #2b5629;
    color: #fff;
    transform: scale(1.1);
}

/* Button */
.success-more-btn {
    background: #2b5629;
    color: #fff;
    font-weight: 600;
    padding: 14px 42px;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.success-more-btn:hover {
    background: #1f3f1f;
    transform: translateY(-4px);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .success-slide-img {
        height: 420px;
    }
    
    .success-swiper-prev,
    .success-swiper-next {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .success-slide-img {
        height: 360px;
    }
}


.success-swiper-pagination, #mockPagination {
    
    transform: unset !important;
   
}

/*  */

#mockPagination {
    position: unset;
    
}


.mock-interviews-section {
    background: #f8f9fa;
}

.zn-subtitle {
    color: #2b5629;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 15px;
}

.zn-section-title {
    font-size: clamp(2.3rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: #222;
    margin: 12px 0 16px;
}

.zn-section-desc {
    color: #555;
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto;
}

/* ==================== VIDEO CARD ==================== */
.mock-video-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
}

.mock-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
    position: relative;
    height: 300px;           /* Reduced height for better 3-column fit */
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 55px;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 0 20px rgba(0,0,0,0.7);
    transition: all 0.3s ease;
}

.mock-video-card:hover .play-overlay {
    color: #2b5629;
    transform: translate(-50%, -50%) scale(1.15);
}

.mock-video-info {
    padding: 16px 12px;
    text-align: center;
}

.mock-video-info h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
    line-height: 1.3;
}

.mock-video-info p {
    color: #666;
    font-size: 0.93rem;
    margin: 0;
}

/* Swiper Settings */
.mockInterviewSwiper {
    padding: 10px 0;
}

.mock-swiper-prev,
.mock-swiper-next {
    position: absolute;
    top: 45%;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.95);
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 11;
    cursor: pointer;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    transition: all 0.3s;
}

.mock-swiper-prev { left: -8px; }
.mock-swiper-next { right: -8px; }

.mock-swiper-prev:hover,
.mock-swiper-next:hover {
    background: #2b5629;
    color: #fff;
}

/* Pagination */
#mockPagination {
    /* position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; */
}

#mockPagination .swiper-pagination-bullet-active {
    background: #2b5629;
    width: 32px;
    border-radius: 30px;
}

/* Button */
.mock-more-btn {
    background: #2b5629;
    color: #fff;
    font-weight: 600;
    padding: 14px 42px;
    border-radius: 50px;
}
/*  */

.zn-courses-section {
    background: rgba(0, 0, 0, 0.12);
}

.zn-subtitle {
    color: #2b5629;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 15px;
}

.zn-section-title {
    font-size: clamp(2.3rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: #222;
    margin: 12px 0 16px;
}

.zn-section-desc {
    color: #555;
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto;
}

/* Course Card */
.zn-course-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.zn-course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.zn-course-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.zn-course-content {
    padding: 20px;
}

.zn-course-category {
    background: #e8f0e8;
    color: #2b5629;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
}

.zn-course-price {
    font-weight: 700;
    color: #2b5629;
    font-size: 1.1rem;
}

.zn-course-title {
    font-size: 1.25rem;
    margin: 12px 0;
    font-weight: 700;
}

.zn-course-title a {
    color: #222;
    text-decoration: none;
}

.zn-course-title a:hover {
    color: #2b5629;
}

.zn-course-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 18px;
}

.zn-trainer-profile img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 8px;
}

.zn-trainer-stats {
    color: #666;
    font-size: 0.9rem;
}
/* Navigation Arrows */
.zn-courses-prev,
.zn-courses-next {
    position: absolute;
    top: 50%;
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.95);
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 30;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    pointer-events: all !important;
}

.zn-courses-prev { left: 0px; }
.zn-courses-next { right: 0px; }

.zn-courses-prev:hover,
.zn-courses-next:hover {
    background: #2b5629;
    color: #fff;
    transform: scale(1.08);
}

/* Make sure arrows are clickable */
.zn-courses-prev, .zn-courses-next {
    pointer-events: all;
}
/* Pagination */
#znCoursesPagination {
    position: relative;
    margin-top: 30px;
    text-align: center;
}

div#znCoursesPagination {
    display: block;
}

#znCoursesPagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
}

#znCoursesPagination .swiper-pagination-bullet-active {
    background: #2b5629;
    width: 34px;
    border-radius: 30px;
}

/* More Button */
.zn-more-courses-btn {
    background: #2b5629;
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s;
}

.zn-more-courses-btn:hover {
    background: #1f3f1f;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    /* .zn-course-card img { height: 200px; } */
}


/*  */
.zn-faculty-section {
    background: #f8f9fa;
}

.zn-faculty-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.zn-faculty-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.zn-faculty-card img {
    height: 280px;
    object-fit: cover;
    width: 100%;
}

.zn-faculty-content {
    padding: 24px;
    text-align: center;
}

.zn-faculty-content h4 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    color: #222;
}

.zn-faculty-role {
    color: #2b5629;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.zn-faculty-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.zn-social-links a {
    color: #666;
    font-size: 1.3rem;
    margin: 0 8px;
    transition: 0.3s;
}

.zn-social-links a:hover {
    color: #2b5629;
}

/* Swiper Controls */
.zn-faculty-prev,
.zn-faculty-next {
    position: absolute;
    top: 50%;
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.95);
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 20;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

.zn-faculty-prev { left: -15px; }
.zn-faculty-next { right: -15px; }

.zn-faculty-prev:hover,
.zn-faculty-next:hover {
    background: #2b5629;
    color: #fff;
}

/* Pagination */
#znFacultyPagination {
    position: relative;
    margin-top: 40px;
    text-align: center;
}

#znFacultyPagination .swiper-pagination-bullet-active {
    background: #2b5629;
    width: 34px;
     border-radius: 30px;
}

/* Button */
.zn-more-faculty-btn {
    background: #2b5629;
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
}

.zn-more-faculty-btn:hover {
    background: #1f3f1f;
    transform: translateY(-3px);
}

/*  */
.zn-blog-section {
    background: rgba(43,175,102,0.10);
}

.zn-blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.zn-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.zn-blog-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.zn-blog-content {
    padding: 20px;
}

.zn-blog-date {
    color: #2b5629;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.zn-blog-title {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.zn-blog-title a {
    color: #222;
    text-decoration: none;
    font-weight: 700;
}

.zn-blog-title a:hover {
    color: #2b5629;
}

.zn-blog-excerpt {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.zn-read-more {
    color: #2b5629;
    font-weight: 600;
    text-decoration: none;
}

.zn-read-more:hover {
    text-decoration: underline;
}

/* Swiper Controls */
.zn-blog-prev,
.zn-blog-next {
    position: absolute;
    top: 50%;
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.95);
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 20;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    transition: all 0.3s;
}

.zn-blog-prev { left: 0px; }
.zn-blog-next { right: 0px; }

.zn-blog-prev:hover,
.zn-blog-next:hover {
    background: #2b5629;
    color: #fff;
}

/* Pagination */
#znBlogPagination {
    position: relative;
    margin-top: 40px;
    text-align: center;
}

#znBlogPagination .swiper-pagination-bullet-active {
    background: #2b5629;
    width: 34px;
     border-radius: 30px;
}

/* More Button */
.zn-more-blogs-btn {
    background: #2b5629;
    color: #fff;
    padding: 14px 42px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
}

.zn-more-blogs-btn:hover {
    background: #1f3f1f;
    transform: translateY(-3px);
}

/*  */
.zn-news-section {
    background: #f8f9fa;
}

.zn-news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.zn-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.zn-news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.zn-news-content {
    padding: 20px;
}

.zn-news-date {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #2b5629;
    font-weight: 500;
    margin-bottom: 10px;
}

.zn-news-title {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 700;
    color: #222;
}

.zn-news-location {
    color: #555;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.zn-news-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zn-zoom-btn, .zn-register-btn {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.zn-zoom-btn {
    background: #0d6efd;
    color: #fff;
}

.zn-register-btn {
    background: #2b5629;
    color: #fff;
}

.zn-register-btn:hover {
    background: #1f3f1f;
}

/* Swiper Controls */
.zn-news-prev,
.zn-news-next {
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.95);
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 20;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.zn-news-prev { left: 0px; }
.zn-news-next { right: 0px; }

.zn-news-prev:hover,
.zn-news-next:hover {
    background: #2b5629;
    color: #fff;
}

/* Pagination */
#znNewsPagination .swiper-pagination-bullet-active {
    background: #2b5629;
}

/* More Button */
.zn-more-news-btn {
    background: #2b5629;
    color: #fff;
    padding: 14px 42px;
    border-radius: 50px;
    font-weight: 600;
}

/*  */

/* ==========================================
   ZN CONTACT V3
========================================== */

.zn-contact-v3{
  padding: 100px 0;
  background: #f6faf6;
}

/* HEADER */
.zn-contact-v3-badge{
  display: inline-block;
  background: rgba(43,86,41,0.12);
  color: #2b5629;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
}

.zn-contact-v3-title{
  font-size: 44px;
  font-weight: 800;
  margin-top: 15px;
}

.zn-contact-v3-subtitle{
  max-width: 650px;
  margin: 10px auto 50px;
  color: #666;
  line-height: 1.7;
}

/* FORM CARD */
.zn-contact-v3-form-card{
  background: #fff;
  padding: 45px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  height: 100%;
}

/* INPUTS */
.zn-v3-input,
.zn-v3-textarea{
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 14px 18px;
  outline: none;
  transition: 0.3s;
}

.zn-v3-input{
  height: 55px;
}

.zn-v3-textarea{
  resize: none;
}

.zn-v3-input:focus,
.zn-v3-textarea:focus{
  border-color: #2b5629;
  box-shadow: 0 0 0 4px rgba(43,86,41,0.12);
}

/* BUTTON */
.zn-v3-btn{
  width: 100%;
  background: #2b5629;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s;
}

.zn-v3-btn:hover{
  background: #1f3f1e;
  transform: translateY(-2px);
}

/* IMAGE */
.zn-contact-v3-image{
  position: relative;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.zn-v3-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.zn-contact-v3-image:hover .zn-v3-img{
  transform: scale(1.08);
}

/* IMAGE OVERLAY */
.zn-v3-image-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
}

.zn-v3-image-overlay h3{
  font-size: 24px;
  font-weight: 800;
  color: #fff;

}

.zn-v3-image-overlay p{
  opacity: 0.85;
}

/* MAP */
.zn-contact-v3-map{
  margin-top: 60px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.zn-v3-map-iframe{
  width: 100%;
  height: 420px;
  border: 0;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px){

  .zn-contact-v3-title{
    font-size: 34px;
  }

  .zn-contact-v3-form-card{
    padding: 30px;
  }

  .zn-contact-v3-image{
    margin-top: 25px;
    min-height: 350px;
  }
}

@media (max-width: 768px){

  .zn-contact-v3-title{
    font-size: 28px;
  }

  .zn-v3-map-iframe{
    height: 280px;
  }

  .zn-contact-v3-form-card{
    padding: 22px;
  }
}

.row.zn-contact-v3-row.align-items-stretch
 {
    margin-bottom: 50px;
}
/*  */



/* ==========================================
   ZN PAGE HERO (THEME: #2b5629)
========================================== */

.zn-page-hero{
  position: relative;
  padding: 140px 0 90px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

/* GREEN THEME OVERLAY */
.zn-page-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(43,86,41,0.85),
    rgba(0,0,0,0.75)
  );
  z-index: 1;
}

/* INNER LAYOUT */
.zn-page-hero-inner{
  position: relative;
  z-index: 2;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-space-evenly;
}

/* TITLE */
.zn-page-title{
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: capitalize;
}

/* SUBTITLE */
.zn-page-subtitle{
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

/* BREADCRUMB (BOTTOM POSITIONED) */
.zn-page-breadcrumb{
  margin-top: 60px;
  text-align: center;
}

.zn-page-breadcrumb ol{
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 10px;
  font-size: 14px;
  background: rgba(255,255,255,0.08);
  padding: 10px 18px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.zn-page-breadcrumb li{
  color: rgba(255,255,255,0.7);
}

.zn-page-breadcrumb li a{
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.zn-page-breadcrumb li a:hover{
  color: #2b5629;
}

.zn-page-breadcrumb li+li::before{
  content: "/";
  margin: 0 10px;
  color: rgba(255,255,255,0.4);
}

/* RESPONSIVE */
@media (max-width: 991px){

  .zn-page-hero{
    padding: 110px 0 70px;
  }

  .zn-page-title{
    font-size: 42px;
  }
}

@media (max-width: 576px){

  .zn-page-hero{
    padding: 90px 0 60px;
  }

  .zn-page-title{
    font-size: 32px;
  }

  .zn-page-subtitle{
    font-size: 14px;
  }

  
.zn-page-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


}


/*  */
/* ==========================================
   ZN ABOUT V2
========================================== */

.zn-about-v2{
  padding: 100px 0;
  background: #f7fbf7;
}

/* BADGE */
.zn-about-v2-badge{
  display: inline-block;
  background: rgba(43,86,41,0.12);
  color: #2b5629;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 15px;
}

/* TITLE */
.zn-about-v2-title{
  font-size: 42px;
  font-weight: 900;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* TEXT */
.zn-about-v2-text{
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* LIST */
.zn-about-v2-list{
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.zn-about-v2-list li{
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: #333;
  font-size: 15px;
}

.zn-about-v2-list i{
  color: #2b5629;
  font-size: 18px;
  margin-top: 2px;
}

/* BUTTON */
.zn-about-v2-btn{
  display: inline-block;
  background: #2b5629;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.zn-about-v2-btn:hover{
  background: #1f3f1e;
  transform: translateY(-2px);
}

/* IMAGE WRAPPER */
.zn-about-v2-image-wrapper{
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* IMAGE */
.zn-about-v2-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.zn-about-v2-image-wrapper:hover .zn-about-v2-img{
  transform: scale(1.06);
}

/* FLOATING CARD */
.zn-about-v2-card{
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: 18px 22px;
  border-radius: 16px;
  border-left: 4px solid #2b5629;
}

.zn-about-v2-card h3{
  font-size: 22px;
  font-weight: 900;
  margin: 0;
  color: #2b5629;
}

.zn-about-v2-card p{
  margin: 0;
  font-size: 13px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 991px){

  .zn-about-v2{
    padding: 70px 0;
  }

  .zn-about-v2-title{
    font-size: 32px;
  }

  .zn-about-v2-image-wrapper{
    margin-top: 20px;
  }
}

@media (max-width: 576px){

  .zn-about-v2-title{
    font-size: 26px;
  }

  .zn-about-v2-text{
    font-size: 14px;
  }

  .zn-about-v2-card{
    padding: 14px 18px;
  }
}
/*  */
/* 


<!-- ==========================================
     ZN BOARD MEMBERS CSS
========================================== --> */


/* SECTION */
.zn-board-members-section{
    padding: 100px 0;
    background: #f7fbf7;
}

/* HEADER */
.zn-board-badge{
    display: inline-block;
    background: rgba(43,86,41,0.10);
    color: #2b5629;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.zn-board-title{
    font-size: 46px;
    font-weight: 900;
    color: #111;
    margin-bottom: 15px;
}

.zn-board-subtitle{
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

/* CARD */
.zn-member-card{
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.zn-member-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(43,86,41,0.12);
}

/* IMAGE */
.zn-member-image-wrap{
    position: relative;
    overflow: hidden;
}

.zn-member-image{
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: 0.6s ease;
}

.zn-member-card:hover .zn-member-image{
    transform: scale(1.08);
}

/* OVERLAY */
.zn-member-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(43,86,41,0.75),
        rgba(0,0,0,0.15)
    );
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    padding-bottom: 25px;
    opacity: 0;
    transition: 0.4s ease;
}

.zn-member-card:hover .zn-member-overlay{
    opacity: 1;
}

.zn-member-overlay a{
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    color: #2b5629;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.zn-member-overlay a:hover{
    background: #2b5629;
    color: #fff;
}

/* CONTENT */
.zn-member-content{
    padding: 28px;
}

.zn-member-content h3{
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111;
}

.zn-member-position{
    display: inline-block;
    color: #2b5629;
    font-weight: 700;
    margin-bottom: 15px;
}

.zn-member-content p{
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px){

    .zn-board-members-section{
        padding: 70px 0;
    }

    .zn-board-title{
        font-size: 34px;
    }

    .zn-member-image{
        height: 300px;
    }
}

@media (max-width: 576px){

    .zn-board-title{
        font-size: 28px;
    }

    .zn-member-content{
        padding: 22px;
    }

    .zn-member-image{
        height: 260px;
    }
}

/*  */

/* 

<!-- ==========================================
     ZN WHY BEPI CSS
========================================== -->
 */


/* SECTION */
.zn-why-bepi-section{
    padding: 110px 0;
    background: #f7fbf7;
    position: relative;
    overflow: hidden;
}

/* HEADER */
.zn-why-bepi-badge{
    display: inline-block;
    background: rgba(43,86,41,0.10);
    color: #2b5629;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.zn-why-bepi-title{
    font-size: 48px;
    font-weight: 900;
    color: #111;
    margin-bottom: 18px;
}

.zn-why-bepi-subtitle{
    max-width: 720px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* CARD */
.zn-why-bepi-card{
    background: #fff;
    border-radius: 24px;
    padding: 45px 35px;
    height: 100%;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.zn-why-bepi-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(43,86,41,0.15);
}

/* TOP BORDER EFFECT */
.zn-why-bepi-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #2b5629;
    transform: scaleX(0);
    transition: 0.4s ease;
}

.zn-why-bepi-card:hover::before{
    transform: scaleX(1);
}

/* ICON */
.zn-why-bepi-icon{
    width: 90px;
    height: 90px;
    margin: auto auto 25px;
    border-radius: 50%;
    background: rgba(43,86,41,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.zn-why-bepi-icon i{
    font-size: 38px;
    color: #2b5629;
    transition: 0.4s ease;
}

.zn-why-bepi-card:hover .zn-why-bepi-icon{
    background: #2b5629;
    transform: rotateY(180deg);
}

.zn-why-bepi-card:hover .zn-why-bepi-icon i{
    color: #fff;
    transform: rotateY(180deg);
}

/* TITLE */
.zn-why-bepi-card h3{
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

/* TEXT */
.zn-why-bepi-card p{
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 991px){

    .zn-why-bepi-section{
        padding: 80px 0;
    }

    .zn-why-bepi-title{
        font-size: 36px;
    }

    .zn-why-bepi-card{
        padding: 35px 25px;
    }
}

@media (max-width: 576px){

    .zn-why-bepi-title{
        font-size: 28px;
    }

    .zn-why-bepi-subtitle{
        font-size: 14px;
    }

    .zn-why-bepi-card{
        padding: 30px 22px;
    }

    .zn-why-bepi-icon{
        width: 75px;
        height: 75px;
    }

    .zn-why-bepi-icon i{
        font-size: 30px;
    }

    .zn-why-bepi-card h3{
        font-size: 20px;
    }
}


/*  */


/* 
<!-- ==========================================
     ZN TESTIMONIALS CSS
========================================== --> */

/* SECTION */
.zn-testimonials-section{
    padding: 110px 0;
    background: #f7fbf7;
    position: relative;
    overflow: hidden;
}

/* HEADER */
.zn-testimonial-badge{
    display: inline-block;
    background: rgba(43,86,41,0.10);
    color: #2b5629;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.zn-testimonial-title{
    font-size: 48px;
    font-weight: 900;
    color: #111;
    margin-bottom: 18px;
}

.zn-testimonial-subtitle{
    max-width: 720px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* CARD */
.zn-testimonial-card{
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    height: 100%;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* TOP BORDER EFFECT */
.zn-testimonial-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #2b5629;
    transform: scaleX(0);
    transition: 0.4s ease;
}

.zn-testimonial-card:hover::before{
    transform: scaleX(1);
}

.zn-testimonial-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(43,86,41,0.12);
}

/* TOP */
.zn-testimonial-top{
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

/* IMAGE */
.zn-testimonial-img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(43,86,41,0.10);
}

/* NAME */
.zn-testimonial-top h3{
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #111;
}

.zn-testimonial-top span{
    display: block;
    color: #2b5629;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

/* STARS */
.zn-testimonial-stars{
    color: #ffc107;
    font-size: 14px;
}

/* QUOTE */
.zn-testimonial-quote{
    position: absolute;
    top: 25px;
    right: 25px;
    opacity: 0.08;
}

.zn-testimonial-quote i{
    font-size: 70px;
    color: #2b5629;
}

/* TEXT */
.zn-testimonial-card p{
    color: #666;
    line-height: 1.9;
    font-size: 15px;
    margin: 0;
}

/* PAGINATION */
.zn-testimonial-pagination{
    text-align: center;
}

.zn-testimonial-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: rgba(43,86,41,0.25);
    opacity: 1;
    transition: 0.3s ease;
}

.zn-testimonial-pagination .swiper-pagination-bullet-active{
    background: #2b5629;
    width: 28px;
    border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 991px){

    .zn-testimonials-section{
        padding: 80px 0;
    }

    .zn-testimonial-title{
        font-size: 36px;
    }

    .zn-testimonial-card{
        padding: 30px;
    }
}

@media (max-width: 576px){

    .zn-testimonial-title{
        font-size: 28px;
    }

    .zn-testimonial-subtitle{
        font-size: 14px;
    }

    .zn-testimonial-card{
        padding: 25px;
    }

    .zn-testimonial-top{
        flex-direction: column;
        align-items: flex-start;
    }

    .zn-testimonial-img{
        width: 70px;
        height: 70px;
    }

    .zn-testimonial-top h3{
        font-size: 20px;
    }

    .zn-testimonial-card p{
        font-size: 14px;
    }
}


/*  */



/* ========================================= */
/* LCMD MODERN FACILITIES SECTION */
/* ========================================= */

#zn-campus-facilities-wrap{
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* SECTION */
#zn-campus-facilities-wrap .zn-facility-block{
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

#zn-campus-facilities-wrap .zn-facility-alt{
    background: #f7fbf7;
}

/* IMAGE AREA */
#zn-campus-facilities-wrap .zn-facility-image-wrap{
    position: relative;
}

#zn-campus-facilities-wrap .zn-facility-image-card{
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 60px rgba(0,0,0,0.10);
    transition: all 0.45s ease;
}

#zn-campus-facilities-wrap .zn-facility-image-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.18), transparent);
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
}

#zn-campus-facilities-wrap .zn-facility-image-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.16);
}

#zn-campus-facilities-wrap .zn-facility-image-card:hover::before{
    opacity: 1;
}

#zn-campus-facilities-wrap .zn-facility-image-card img{
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

#zn-campus-facilities-wrap .zn-facility-image-card:hover img{
    transform: scale(1.06);
}

/* CONTENT */
#zn-campus-facilities-wrap .zn-facility-content{
    padding: 10px;
}

#zn-campus-facilities-wrap .zn-facility-tag{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(43,175,102,0.10);
    color: #2b5629;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

#zn-campus-facilities-wrap .zn-facility-title{
    font-family: 'Bebas Neue', sans-serif;
    font-size: 62px;
    line-height: 1;
    color: #0b1c39;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

#zn-campus-facilities-wrap .zn-facility-line{
    width: 90px;
    height: 4px;
    border-radius: 50px;
    background: linear-gradient(90deg, #2b5629, #198754);;
    margin-bottom: 28px;
}

#zn-campus-facilities-wrap .zn-facility-text{
    font-size: 19px;
    line-height: 1.9;
    color: #5c6470;
    margin: 0;
    font-weight: 400;
}

/* FLOATING DECOR */
#zn-campus-facilities-wrap .zn-facility-block::after{
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(43,175,102,0.10);
    top: -120px;
    right: -120px;
    z-index: 0;
}

/* RESPONSIVE */
@media (max-width: 1399px){

    #zn-campus-facilities-wrap .zn-facility-title{
        font-size: 54px;
    }

    #zn-campus-facilities-wrap .zn-facility-image-card img{
        height: 420px;
    }
}

@media (max-width: 1199px){

    #zn-campus-facilities-wrap .zn-facility-block{
        padding: 75px 0;
    }

    #zn-campus-facilities-wrap .zn-facility-title{
        font-size: 48px;
    }

    #zn-campus-facilities-wrap .zn-facility-text{
        font-size: 16px;
        line-height: 1.8;
    }

    #zn-campus-facilities-wrap .zn-facility-image-card img{
        height: 380px;
    }
}

@media (max-width: 991px){

    #zn-campus-facilities-wrap .zn-facility-block{
        padding: 65px 0;
    }

    #zn-campus-facilities-wrap .row{
        row-gap: 35px;
    }

    #zn-campus-facilities-wrap .zn-facility-content{
        text-align: center;
        padding: 0;
    }

    #zn-campus-facilities-wrap .zn-facility-line{
        margin-left: auto;
        margin-right: auto;
    }

    #zn-campus-facilities-wrap .zn-facility-title{
        font-size: 42px;
    }

    #zn-campus-facilities-wrap .zn-facility-image-card img{
        height: 340px;
    }
}

@media (max-width: 767px){

    #zn-campus-facilities-wrap .zn-facility-block{
        padding: 55px 0;
    }

    #zn-campus-facilities-wrap .container{
        padding-left: 20px;
        padding-right: 20px;
    }

    #zn-campus-facilities-wrap .zn-facility-title{
        font-size: 34px;
    }

    #zn-campus-facilities-wrap .zn-facility-text{
        font-size: 15px;
        line-height: 1.8;
    }

    #zn-campus-facilities-wrap .zn-facility-image-card{
        border-radius: 22px;
    }

    #zn-campus-facilities-wrap .zn-facility-image-card img{
        height: 280px;
    }
}

@media (max-width: 575px){

    #zn-campus-facilities-wrap .zn-facility-block{
        padding: 45px 0;
    }

    #zn-campus-facilities-wrap .zn-facility-title{
        font-size: 30px;
    }

    #zn-campus-facilities-wrap .zn-facility-tag{
        font-size: 11px;
        padding: 7px 14px;
    }

    #zn-campus-facilities-wrap .zn-facility-image-card img{
        height: 240px;
    }
}

/**/
#bepi-footer {
    background: #2b5629;
    color: #e5e7eb;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  .footer-accent {
    height: 5px;
    background: linear-gradient(to right, #4a8c45, #a3d39c, #4a8c45);
  }

  .footer-main {
    padding: 70px 0 50px;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-col h4 {
    color: #a3d39c;
    margin-bottom: 22px;
    font-size: 1.1rem;
    font-weight: 600;
  }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col a {
    color: #e5e7eb;
    text-decoration: none;
    transition: 0.3s;
  }

  .footer-col a:hover {
    color: #fff;
    padding-left: 8px;
  }

  .social-links a:hover {
    
    padding-left: 0px;
}
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
  }

  .footer-logo img {
    height: 100px;
  }

  #bepi-footer .sitename {
    font-size: 2.1rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #a3d39c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }


  

  /* Social Icons */
  .social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    transition: all 0.4s ease;
  }

  .social-links a:hover {
    background: #4a8c45;
    transform: translateY(-6px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
  }

  /* Bottom Bar */
  .footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    font-size: 0.95rem;
  }

  .copyright, .credits {
    margin: 0;
  }

  .credits a {
    color: #a3d39c;
  }

  .credits a:hover {
    color: white;
  }

  .separator {
    color: rgba(255,255,255,0.4);
  }

  /* Responsive */
  @media (min-width: 768px) {
    .footer-grid {
      grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    .bottom-content {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }
  }


  p.copyright strong.sitename
 {
    font-size: 17px;
}
/*  */


/*  */

/* ====================== MAIN SECTION ====================== */
.unique-feature-section {
    padding: 100px 20px;
    background: #ffffff;
    overflow: hidden;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

/* ====================== LEFT CONTENT ====================== */
.text-content {
    max-width: 520px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(43, 86, 41, 0.1);
    color: #2b5629;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #2b5629;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.main-heading {
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 40px;
}

/* ====================== BUTTONS ====================== */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.btn {
    padding: 16px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #2b5629;
    color: white;
    box-shadow: 0 10px 20px rgba(43, 86, 41, 0.25);
}

.btn-primary:hover {
    background: #244723;
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(43, 86, 41, 0.35);
}

.btn-secondary {
    border: 2px solid #2b5629;
    color: #2b5629;
}

.btn-secondary:hover {
    background: #2b5629;
    color: white;
}

.btn-tertiary {
    color: #4b5563;
    font-weight: 500;
}

.btn-tertiary:hover {
    color: #2b5629;
}

/* ====================== RIGHT IMAGE ====================== */
.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.image-wrapper:hover .feature-image {
    transform: scale(1.08);
}

/* ====================== RESPONSIVE ====================== */
@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    
    .main-heading {
        font-size: 3.8rem;
    }
}

@media (max-width: 640px) {
    .unique-feature-section {
        padding: 70px 15px;
    }
    
    .main-heading {
        font-size: 2.6rem;
    }
    
    .button-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        text-align: center;
        padding: 18px 24px;
    }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}



/* 

<!-- =========================
     ZN MODERN accordians buttons and content SECTION 
========================= --> */

.zn-program-info-section {
    padding: 80px 15px;
    background: #f8f9fa;
}

.zn-container {
    max-width: 1200px;
    margin: 0 auto;
}

.zn-section-header {
    margin-bottom: 50px;
}

.zn-program-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1f2937;
}

/* Tab Buttons */
.zn-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.zn-tab-btn {
    padding: 16px 32px;
    border: 2px solid #2b5629;
    background: white;
    color: #2b5629;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zn-tab-btn:hover {
    background: #2b5629;
    color: white;
    transform: translateY(-4px);
}

.zn-tab-btn.active {
    background: #2b5629;
    color: white;
    box-shadow: 0 10px 25px rgba(43, 86, 41, 0.3);
}

/* Tab Content */
.zn-tab-content {
    display: none;
}

.zn-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.zn-content-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.zn-content-title {
    color: #2b5629;
    font-size: 1.9rem;
    margin-bottom: 30px;
    text-align: center;
}

.zn-admission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zn-admission-list li {
    display: flex;
    align-items: flex-anchor-center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.zn-admission-list li:last-child {
    border-bottom: none;
}

.zn-admission-list i {
    color: #2b5629;
    font-size: 20px;
    margin-top: 0px;
}

.zn-step-content {
    color: #374151;
    line-height: 1.7;
    flex: 1;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .zn-tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    .zn-tab-btn {
        width: 100%;
        max-width: 420px;
    }
}


/*  */



/* <!-- Embedded Custom Responsive Styles --> */

    /* Container & Base Table Styling */
    .bepi-table-container {
        width: 100%;
        overflow-x: auto;
        box-shadow: 0 10px 30px rgba(43, 86, 41, 0.06);
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid rgba(43, 86, 41, 0.1);
        -webkit-overflow-scrolling: touch;
    }
    
    .bepi-fee-table {
        width: 100%;
        border-collapse: collapse;
        margin: 0;
        padding: 0;
        text-align: left;
    }
    
    .bepi-fee-table thead {
        background-color: #2b5629;
        color: #ffffff;
    }
    
    .bepi-fee-table th {
        font-size: 0.95rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 18px 24px;
    }
    
    .bepi-fee-table td {
        padding: 24px;
        border-bottom: 1px solid rgba(43, 86, 41, 0.08);
        vertical-align: middle;
    }
    
    .bepi-fee-table tr:last-child td {
        border-bottom: none;
    }
    
    .bepi-fee-table tr:hover {
        background-color: rgba(43, 86, 41, 0.01);
    }
    
    /* Column Component Styling */
    .bepi-subject-title {
        font-weight: 700;
        color: #1a202c;
        font-size: 1.1rem;
    }
    
    .bepi-subject-desc {
        color: #4a5568;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .bepi-action-cell {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    
    .bepi-price-tag {
        font-size: 1.4rem;
        font-weight: 800;
        color: #1a202c;
    }
    
    .bepi-reg-btn {
        display: inline-block;
        background-color: #2b5629;
        color: #ffffff !important;
        text-decoration: none !important;
        padding: 10px 24px;
        font-size: 0.85rem;
        font-weight: 600;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.2s ease-in-out;
        box-shadow: 0 4px 12px rgba(43, 86, 41, 0.15);
        border: 1px solid transparent;
        width: 100%;
        max-width: 160px;
        box-sizing: border-box;
    }
    
    .bepi-reg-btn:hover {
        background-color: #1e3d1d;
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(43, 86, 41, 0.25);
    }

    /* Smart Mobile Responsiveness (Stacked UI layout for screens below 768px) */
    @media screen and (max-width: 768px) {
        .bepi-table-container {
            border: none;
            box-shadow: none;
            background: transparent;
        }
        
        .bepi-fee-table thead {
            display: none; /* Hide standard headers on small screens */
        }
        
        .bepi-fee-table tr {
            display: block;
            background: #ffffff;
            border: 1px solid rgba(43, 86, 41, 0.12);
            border-radius: 12px;
            margin-bottom: 24px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
            overflow: hidden;
        }
        
        .bepi-fee-table td {
            display: block;
            text-align: right;
            padding: 16px 20px;
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            display: flex;
        text-align: right;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        }
        
        .bepi-fee-table td:last-child {
            border-bottom: none;
            background-color: rgba(43, 86, 41, 0.02);
            padding: 20px;
        }
        
        /* Inject labels dynamically on mobile layout */
        .bepi-fee-table td::before {
            content: attr(data-label);
            float: left;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.75rem;
            color: #718096;
            letter-spacing: 0.5px;
            margin-top: 3px;
        }
        
        .bepi-fee-table td.bepi-subject-title {
            text-align: center;
            color: #2b5629;
            font-size: 1.15rem;
            background-color: rgba(43, 86, 41, 0.04);
            border-bottom: 1px solid rgba(43, 86, 41, 0.08);
        }
        
        .bepi-fee-table td.bepi-subject-desc {
            text-align: left; /* Keep descriptions reading left-to-right */
        }
        
        .bepi-fee-table td.bepi-subject-desc::before {
            display: block;
            float: none;
            margin-bottom: 8px;
            
        }
        
        .bepi-action-cell {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            gap: 0;
        }
        
        .bepi-action-cell::before {
            margin-top: 0;
        }
        
        .bepi-reg-btn {
          margin: 0;
        /* max-width: 140px; */
        max-width: 50%;
        width: 100%;
        text-align: center;
        }
    }

    section#zn-sub-table-section {
    padding: 80px 15px;
    background: #fff;
}

/*  */
/* =========================================
   FACULTY SECTION
========================================= */

.faculty-section {
    background: #f8faf8;
}

/* HEADING */

.faculty-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(43, 86, 41, 0.1);
    color: #2b5629;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.faculty-title {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
}

/* CARD */

.faculty-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;

    transition: 0.4s ease;

    border: 1px solid rgba(43, 86, 41, 0.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);
}

.faculty-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 20px 40px rgba(43, 86, 41, 0.15);
}

/* IMAGE */

.faculty-img-box {
    overflow: hidden;
}

.faculty-img {
    width: 100%;
    height: 320px;
    object-fit: cover;

    transition: 0.5s ease;
}

.faculty-card:hover .faculty-img {
    transform: scale(1.08);
}

/* CONTENT */

.faculty-content {
    padding: 22px;
    text-align: center;
}

.faculty-name {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.faculty-position {
    margin: 0;
    color: #2b5629;
    font-size: 15px;
    font-weight: 600;
}

/* BUTTON */

.faculty-btn {
    background: #2b5629;
    color: #fff;

    border: none;
    border-radius: 60px;

    padding: 14px 34px;

    font-size: 16px;
    font-weight: 700;

    transition: 0.4s ease;
}

.faculty-btn:hover {
    background: #1f421e;
    transform: translateY(-3px);
}

.faculty-btn i {
    margin-right: 8px;
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .faculty-title {
        font-size: 34px;
    }

    .faculty-img {
        height: 280px;
    }

}

@media (max-width: 767px) {

    .faculty-title {
        font-size: 28px;
    }

    .faculty-img {
        height: 250px;
    }

    .faculty-name {
        font-size: 20px;
    }

}




/*  */

ul.zn-course-features.list-unstyled.mb-3 li {
    font-size: 15px;
}

.zn-course-title a {
    color: #222;
    font-size: 20px;    
    pointer-events: none;
}

/*  */

:root {
    --bcl-primary: #2b5629;
    --bcl-primary-hover: #1e3d1c;
    --bcl-primary-light: #eff7ee;
    --bcl-dark: #212529;
    --bcl-text-muted: #55606e;
    --bcl-bg-card: #ffffff;
    --bcl-radius: 20px;
    --bcl-shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
    --bcl-shadow-md: 0 12px 30px rgba(0, 0, 0, 0.08);
    --bcl-transition: all 0.3s ease-in-out;
}

.bcl-wrapper {
    padding: 60px 0;
    background-color: #f7f9fa;
    font-family: system-ui, -apple-system, sans-serif;
}

.bcl-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.bcl-header {
    text-align: center;
    margin-bottom: 35px;
}

.bcl-badge {
    background-color: var(--bcl-primary-light);
    color: var(--bcl-primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    display: inline-block;
}

.bcl-main-title {
    color: var(--bcl-dark);
    font-size: 2.1rem;
    font-weight: 800;
    margin-top: 10px;
}

.bcl-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.bcl-tab-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--bcl-text-muted);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--bcl-transition);
    color: rgb(43, 86, 41);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 16px 32px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(43, 86, 41);
    border-image: initial;
    background: white;
    border-radius: 50px;
    transition: 0.4s;
    gap: 10px;
}

.bcl-tab-btn:hover {
    border-color: var(--bcl-primary);
    color: var(--bcl-primary);
    background-color: var(--bcl-primary-light);
}

.bcl-tab-btn.active {
    background-color: var(--bcl-primary);
    border-color: var(--bcl-primary);
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(43, 86, 41, 0.2);
}

.bcl-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bcl-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.bcl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .bcl-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .bcl-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .bcl-grid { grid-template-columns: repeat(1, 1fr); }
    .bcl-tabs-nav { flex-direction: column; width: 100%; }
    .bcl-tab-btn { width: 100%; text-align: center; }
}

.bcl-card-item {
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease-in-out;
}

/* Card Visual Architecture matching screenshot */
.bcl-card {
    background: var(--bcl-bg-card);
    border: 1px solid #eef1f4;
    border-radius: var(--bcl-radius);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--bcl-shadow-sm);
    transition: var(--bcl-transition);
}

.bcl-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bcl-shadow-md);
}

.bcl-img-holder {
    width: 100%;
    height: 210px;
    background-color: #eaeaea;
    overflow: hidden;
}

.bcl-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--bcl-transition);
}

.bcl-card:hover .bcl-thumb {
    transform: scale(1.03);
}

.bcl-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bcl-card-title {
    font-size: 1.35rem;
    color: var(--bcl-dark);
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.bcl-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.bcl-features li {
    font-size: 0.95rem;
    color: var(--bcl-text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.bcl-features li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #198754;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 900;
    border-radius: 50%;
    flex-shrink: 0;
}

.bcl-meta-info {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--bcl-dark);
    font-weight: 600;
}

.bcl-meta-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bcl-meta-info i {
    color: #6c757d;
    font-size: 1.05rem;
}

.bcl-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background-color: var(--bcl-primary);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--bcl-transition);
    box-shadow: 0 4px 10px rgba(43, 86, 41, 0.15);
}

.bcl-action-btn i {
    font-size: 1.1rem;
    transition: var(--bcl-transition);
}

.bcl-action-btn:hover {
    background-color: var(--bcl-primary-hover);
    box-shadow: 0 6px 15px rgba(43, 86, 41, 0.3);
}

.bcl-action-btn:hover i {
    transform: translateX(4px);
}

.bcl-action-center {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.bcl-toggle-btn {
    background-color: #ffffff;
    border: 1px solid #d0d5dd;
    color: var(--bcl-dark);
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--bcl-transition);
}

.bcl-toggle-btn:hover {
    background-color: var(--bcl-primary-light);
    border-color: var(--bcl-primary);
    color: var(--bcl-primary);
}

/*  */
/* =========================================
   MODERN PILL SECTION
========================================= */

.zn-modern-pill-section {
    background: #f8faf8;
}


/* =========================================
   HEADING
========================================= */

.zn-pill-badge {
    background: rgba(43, 86, 41, 0.1);
    color: #2b5629;

    padding: 10px 18px;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.zn-pill-heading {
    font-size: 42px;
    font-weight: 800;
    color: #111;

    line-height: 1.2;
}

.zn-pill-subheading {
    max-width: 750px;
    margin: 15px auto 0;

    color: #666;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================
   PILL NAVIGATION
========================================= */

.zn-pill-nav-wrapper {
    display: flex;
    justify-content: center;
}

.zn-pill-nav {

    display: flex;
    flex-wrap: wrap;

    justify-content: center;
    gap: 18px;

    max-width: 1100px;
}


/* =========================================
   PILL BUTTON
========================================= */

.zn-pill {

    width: 190px;
    min-height: 95px;

    border: none;
    border-radius: 24px;

    background: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 10px;

    transition: all 0.3s ease;

    cursor: pointer;

    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.zn-pill i {
    font-size: 34px;
    color: #2b5629;
    transition: 0.3s ease;
}

.zn-pill span {
    font-size: 15px;
    font-weight: 700;
    color: #222;
}


/* Hover */

.zn-pill:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(43, 86, 41, 0.12);
}


/* Active */

.zn-pill.active {
    background: #2b5629;
}

.zn-pill.active i,
.zn-pill.active span {
    color: #fff;
}


/* =========================================
   CONTENT AREA
========================================= */

.zn-pill-content-area {
    position: relative;
}

.zn-pill-content {

    display: none;

    background: #fff;

    padding: 40px;
    border-radius: 24px;

    box-shadow: 0 10px 40px rgba(0,0,0,0.05);

    animation: znFade 0.35s ease;
}

.zn-pill-content.active {
    display: block;
}


/* =========================================
   ANIMATION
========================================= */

@keyframes znFade {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .zn-pill-heading {
        font-size: 34px;
    }

    .zn-pill {
        width: 170px;
        min-height: 90px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .zn-pill-heading {
        font-size: 28px;
    }

    .zn-pill-subheading {
        font-size: 15px;
    }

    .zn-pill-nav {
        gap: 12px;
    }

    .zn-pill {

        width: calc(50% - 10px);
        min-height: 85px;

        border-radius: 20px;
    }

    .zn-pill i {
        font-size: 28px;
    }

    .zn-pill span {
        font-size: 14px;
    }

    .zn-pill-content {
        padding: 25px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .zn-pill {
        width: 100%;
    }

}



/* =========================================
   PILL NAVIGATION
========================================= */

.zn-pill-nav-wrapper {
    display: flex;
    justify-content: center;
}

.zn-pill-nav {

    display: flex;
    flex-wrap: wrap;

    justify-content: center;
    gap: 16px;

    width: 100%;
}


/* =========================================
   HORIZONTAL PILL BUTTON
========================================= */

.zn-pill {

    min-width: 260px;
    max-width: 340px;
    width: auto;

    min-height: 72px;

    padding: 16px 26px;

    border: none;
    border-radius: 18px;

    background: #fff;

    display: flex;
    flex-direction: row;

    align-items: center;
    justify-content: flex-start;

    gap: 16px;

    transition: all 0.3s ease;

    cursor: pointer;

    box-shadow: 0 5px 20px rgba(0,0,0,0.05);

    text-align: left;
}


/* ICON */

.zn-pill i {

    font-size: 28px;
    color: #2b5629;

    flex-shrink: 0;

    transition: 0.3s ease;
}


/* TEXT */

.zn-pill span {

    font-size: 15px;
    font-weight: 700;

    color: #222;

    line-height: 1.4;
}


/* HOVER */

.zn-pill:hover {

    transform: translateY(-4px);

    box-shadow: 0 12px 30px rgba(43, 86, 41, 0.12);
}


/* ACTIVE */

.zn-pill.active {
    background: #2b5629;
}

.zn-pill.active i,
.zn-pill.active span {
    color: #fff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .zn-pill {

        min-width: 230px;
        padding: 15px 20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .zn-pill-nav {
        gap: 12px;
    }

    .zn-pill {

        width: 100%;
        max-width: 100%;

        min-width: unset;

        min-height: 68px;

        padding: 14px 18px;

        border-radius: 16px;
    }

    .zn-pill i {
        font-size: 24px;
    }

    .zn-pill span {
        font-size: 14px;
    }

}
/*  */

.past-paper-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(43, 86, 41, 0.09);
    transition: all 0.35s ease;
    cursor: pointer;
    overflow: hidden;
    height: 100%;
}

.past-paper-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(43, 86, 41, 0.18);
}

.card-inner {
    height: 100%;
}

.icon-wrapper {
    width: 55px;
    height: 55px;
    background-color: rgba(43, 86, 41, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b5629;
    flex-shrink: 0;
}

.subject-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
    margin-bottom: 0;
}

.arrow {
    color: #2b5629;
    transition: transform 0.3s ease;
}

.past-paper-card:hover .arrow {
    transform: translateX(10px);
}
/*  */

.pdf-download-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(43, 86, 41, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.pdf-download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(43, 86, 41, 0.2);
}

.pdf-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: #2c3e50;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(43, 86, 41, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b5629;
}

.download-icon {
    color: #2b5629;
    transition: all 0.3s ease;
}

.download-btn:hover .download-icon {
    transform: translate(6px, -6px);
}

/* */

.zn-member-card-modern {
    background: white;
    padding: 30px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.zn-member-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(43, 86, 41, 0.12);
}

.zn-member-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border: 6px solid #2b5629;
    border-radius: 16px;
}

.director-quote p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.zn-member-card-modern {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .zn-member-card-modern {
        padding: 40px 35px;
    }
}

.zn-member-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(43, 86, 41, 0.12);
}

.zn-member-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border: 5px solid #2b5629;
    border-radius: 16px;
}

@media (min-width: 768px) {
    .zn-member-image {
        height: 380px;
    }
}

.director-quote p {
    font-size: 1rem;
    line-height: 1.75;
    text-align: justify;
}

@media (max-width: 576px) {
    .director-quote p {
        font-size: 0.95rem;
    }
    
    .zn-member-card-modern {
        padding: 20px;
    }
}


/*  */

/* --- Floating Widget Layout --- */
.social {
  position: fixed;
    top: 50%;
    transform: translateY(-25%);
    z-index: 9999;
    left: 0;
    width: 60px;
}

.social ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.social ul li {
  display: block;
  margin: 8px 0;
  background-color: rgba(0, 0, 0, 0.7); /* Slightly darker for better readability */
  width: 160px; /* Reduced width so it doesn't span too far across your page content */
  padding: 8px 12px;
  border-radius: 0 30px 30px 0;
  
  /* Crucial Fix: Shift the block left so exactly only the icon is showing */
  transform: translateX(-108px); 
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* --- Hover / Slide Effect --- */
.social ul li:hover {
  transform: translateX(0); /* Slides out smoothly to show text */
}

.social ul li a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Pushes text to left, icon to right */
  font-weight: 600;
  font-size: 14px;
  width: 100%;
}

/* --- Icon Formatting --- */
.social ul li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
  background-color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  transition: transform 0.5s ease;
  /* Keeps icon stable on the right end of the tab */
  flex-shrink: 0; 
}

.social ul li:hover i {
  transform: rotate(360deg);
}

/* --- Brand Color Themes --- */
.social ul li.phone:hover { background-color: #007bb6; }
.social ul li.whatsapp:hover { background-color: #25D366; }
.social ul li.linkedin:hover { background-color: #0077B5; }
.social ul li.youtube:hover { background-color: #FF0000; }
.social ul li.twitter:hover { background-color: #1DA1F2; } 
.social ul li.facebook:hover { background-color: #1877F2; }
.social ul li.instagram:hover { background-color: #E4405F; }
.social ul li.tiktok:hover { background-color: #010101; }


/* --- Responsive Mobile Queries --- */
@media screen and (max-width: 768px) {
  .social {
    top: auto;
    bottom: 30%; 
    transform: none;
  }
  
  .social ul li {
    width: 48px;
    padding: 6px;
    transform: translateX(0); 
    border-radius: 0 8px 8px 0;
    margin: 5px 0;
  }
  
  .social ul li a {
    justify-content: center;
  }
  
  /* Completely hides text string on mobile devices safely */
  .social ul li a text, 
  .social ul li a {
    font-size: 0;
    color: transparent;
  }
  
  .social ul li i {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  
  /* Kept vibrant backgrounds active on tap-screens */
  .social ul li.phone { background-color: #007bb6; }
  .social ul li.whatsapp { background-color: #25D366; }
  .social ul li.linkedin { background-color: #0077B5; }
  .social ul li.youtube { background-color: #FF0000; }
  .social ul li.twitter { background-color: #1DA1F2; }
  .social ul li.facebook { background-color: #1877F2; }
  .social ul li.instagram { background-color: #E4405F; }
    .social ul li.tiktok { background-color: #010101; }

}


