/**
* Template Name: Mentor - FEBI IAIN Langsa
* Cleaned and Optimized CSS
*/

/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
:root {
  /* Fonts */
  --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;

  /* Colors */
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #37423b;
  --accent-color: #5fcf80;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --fakultas-color: #f1ed18;
  --text-color: #f1ed18;
  --transparancy-color: #f1ed184f;

  /* Navigation Colors */
  --nav-color: #272828;
  --nav-hover-color: #5fcf80;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #272828;
  --nav-dropdown-hover-color: #e94408;
  --nav-hover-fakultas-color: #e94408;
}

/* Color Presets */
.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;
}

/*--------------------------------------------------------------
# Base Styles
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

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
--------------------------------------------------------------*/
.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: loading-spin 1s linear infinite;
}

@keyframes loading-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background-color: #f1ed18;
  padding: 25px 0;
  transition: all 0.5s;
}

.header.scrolled {
  background-color: #f1ed18;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  transition: all 0.3s ease;
}

.header.scrolled:hover {
  background-color: #e5dc10;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  padding: 12px 0;
}

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

.header .logo img {
  max-height: 36px;
  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%);
}

.header .navmenu a {
  color: #000;
  transition: color 0.3s;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Navigation Menu - FIXED FOR CLICK DROPDOWN
--------------------------------------------------------------*/
@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: 700;
    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;
  }

  /* Hover effect for menu items */
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-fakultas-color);
  }

  /* Dropdown styles */
  .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: all 0.3s ease;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    /* IMPORTANT: Prevent hover interaction when hidden */
  }

  .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:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  /* Show dropdown when active class is added (via click) */
  .navmenu .dropdown.active>ul {
    opacity: 1 !important;
    top: 100% !important;
    visibility: visible !important;
    pointer-events: auto !important;
    /* IMPORTANT: Enable interaction when active */
  }

  /* Rotate icon when dropdown is active */
  .navmenu .dropdown.active>a i {
    transform: rotate(180deg);
  }

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

  .navmenu .dropdown .dropdown.active>ul {
    opacity: 1 !important;
    top: 0 !important;
    left: -100% !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* CRITICAL: Completely disable hover behavior */
  .navmenu .dropdown:hover>ul:not(.navmenu .dropdown.active > ul) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .navmenu .dropdown .dropdown:hover>ul:not(.navmenu .dropdown.active > ul) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* Mobile Navigation - Keep existing functionality */
@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:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  /* Mobile dropdown */
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

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

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

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

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

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

/* Mobile Navigation - Keep existing functionality */
@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:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  /* Mobile dropdown */
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

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

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

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

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

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


/* Header Responsive */
@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;
  }
}

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

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

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

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

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

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

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

.footer .social-links a:hover {
  color: var(--fakultas-color);
  border-color: var(--fakultas-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 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(--fakultas-color);
}

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

/*--------------------------------------------------------------
# Utility Components
------------*/
#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: preloader-spin 1.5s linear infinite;
}

@keyframes preloader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--fakultas-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(--fakultas-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Page Layout
--------------------------------------------------------------*/
.page-title {
  --default-color: var(--contrast-color);
  --background-color: var(--background-color);
  --heading-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  padding-top: calc(80px + 1rem);
}

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

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 900px;
  overflow: clip;
}

.section-title {
  padding-bottom: 10px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  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(--fakultas-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: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

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

/* Carousel */
#heroCarousel {
  overflow: hidden;
}

#heroCarousel .carousel-item {
  height: 100vh;
  position: relative;
}

#heroCarousel .carousel-item img {
  height: 100vh;
  object-fit: cover;
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}

.carousel-caption h5 {
  font-size: 48px;
  font-weight: 800;
  color: #f1ed18;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.carousel-caption p {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.6);
  background-size: 60% 60%;
  border-radius: 50%;
  padding: 20px;
  filter: invert(100%);
}

.carousel-control-prev,
.carousel-control-next {
  width: 7%;
}

/*--------------------------------------------------------------
# Modern Hero Slider
--------------------------------------------------------------*/
.modern-hero-slider {
  position: relative;
  height: calc(100vh - 51px);
  /* 100vh dikurangi tinggi header */
  margin-top: 51px;
  /* Ruang untuk header */
  overflow: hidden;
  background: #000000;
  transition: all 0.3s ease;
}

body.scrolled .modern-hero-slider {
  height: calc(100vh - 66px);
  margin-top: 66px;
}



.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 130%;
  height: 130%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(--bg-image);
  z-index: 0;
  animation: panRight 15s linear infinite;
}

.hero-slide.pan-left::before {
  animation: panLeft 18s linear infinite;
}

.hero-slide.pan-up-down::before {
  animation: panUpDown 20s linear infinite;
}

@keyframes panRight {
  0% {
    transform: translateX(-10%) scale(1.1);
  }

  50% {
    transform: translateX(0%) scale(1.15);
  }

  100% {
    transform: translateX(10%) scale(1.1);
  }
}

@keyframes panLeft {
  0% {
    transform: translateX(10%) scale(1.1);
  }

  50% {
    transform: translateX(0%) scale(1.15);
  }

  100% {
    transform: translateX(-10%) scale(1.1);
  }
}

@keyframes panUpDown {
  0% {
    transform: translateY(-5%) scale(1.1);
  }

  25% {
    transform: translateY(0%) translateX(3%) scale(1.12);
  }

  50% {
    transform: translateY(5%) scale(1.15);
  }

  75% {
    transform: translateY(0%) translateX(-3%) scale(1.12);
  }

  100% {
    transform: translateY(-5%) scale(1.1);
  }
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(102, 126, 234, 0.5) 50%, rgba(255, 193, 7, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-gradient {
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary-modern {
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.5);
  color: #333;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  transform: translateY(-50%);
}

.nav-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-btn:hover {
  background: rgba(255, 193, 7, 0.8);
  border-color: #ffc107;
  color: #333;
  transform: scale(1.1);
}

.slider-pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 15px;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ffc107;
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# 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 .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:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

/*--------------------------------------------------------------
# Features & Counts Section
--------------------------------------------------------------*/
.features.section {
    background-color: #e9ecef;
    padding: 80px 0;
}
.features .row {
    display: flex;
    flex-wrap: wrap;
}

/* .features .col-lg-3,
.features .col-md-4 {
  display: flex;
  margin-bottom: 30px;
} */

.features .section-title h2 {
    color: #343a40;
    font-size: 36px;
    font-weight: 700;
}

.features .section-title p {
    color: #6c757d;
    font-size: 18px;
    margin-top: 10px;
}

.features-item {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    /* Fixed height untuk semua card */
    min-height: 200px;
    position: relative;
}

.features-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.features-item i {
    font-size: 36px;
    margin-bottom: 15px;
    display: inline-block;
}

.features-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #343a40;
  line-height: 1.3;
  text-align: center;
}

.features-item h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.features-item:hover h3 a {
  color: #ffc107;
}

.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(--fakultas-color);
  padding: 30px;
}

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

.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(--fakultas-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--fakultas-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:hover i {
  color: var(--contrast-color);
  background: var(--fakultas-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: 10px;
  transition: 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.courses .course-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.course-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.courses .course-content {
  padding: 15px 20px;
}

.courses .course-content h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 8px 0;
}

.courses .course-content h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: 0.3s;
}

.courses .course-content h3 a:hover {
  color: var(--accent-color);
}

.courses .course-content .category {
  background: var(--fakultas-color);
  color: var(--contrast-color);
  font-size: 12.5px;
  padding: 4px 10px;
  margin: 0;
  border-radius: 5px;
  font-weight: 500;
}

.courses .course-content .description {
  font-size: 13.5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-top: 10px;
  line-height: 1.5;
  min-height: 55px;
}

.courses .trainer {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.courses .trainer .trainer-profile {
  display: flex;
  align-items: center;
}

.courses .trainer .trainer-profile img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}

/*--------------------------------------------------------------
# Trainers Section
--------------------------------------------------------------*/
.card-pejabat {
  border: 2px solid #ffe600;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.card-pejabat:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.foto-pejabat {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
  border-bottom: 2px solid #ffe600;
  transition: all 0.3s ease;
}

.card-pejabat:hover h5,
.card-pejabat:hover h6 {
  font-size: 1.5rem;
  color: #000;
  transition: font-size 0.3s ease, color 0.3s ease;
}

#trainers-index {
  position: relative;
  background: linear-gradient(135deg, #f4e7adee 30%, #f1ed18 30%, #ffc107 35%, #f4e7adee 35%),
    linear-gradient(225deg, #f4e7adee 60%, #f1ed18 60%, #ffc107 65%, #fff 65%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 80px 0;
  z-index: 0;
}

/*--------------------------------------------------------------
# Profile Components
--------------------------------------------------------------*/
.profile-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffc107;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.profile-banner-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  transform: translateY(2px);
  transition: transform 0.3s ease-in-out;
}

.profile-banner-img:hover {
  transform: translateY(2px) scale(1.04);
}

/*--------------------------------------------------------------
# Video Section
--------------------------------------------------------------*/
.video-section .card {
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.video-section .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.video-section h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 1rem;
  color: var(--heading-color);
  border-bottom: 2px solid var(--fakultas-color);
  padding-bottom: 6px;
}

.video-section-modern {
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.video-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modern-video-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 280px;
  /* Fixed height untuk konsistensi */
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.modern-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  position: relative;
  height: 160px;
  /* Fixed height untuk thumbnail */
  overflow: hidden;
  flex-shrink: 0;
}

.video-thumbnail iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.video-info {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #2b2b2b;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 34px;
  /* Fixed height untuk 2 lines */
}

.video-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
}

.video-meta span {
  font-size: 11px;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 4px;
}

.video-meta i {
  font-size: 10px;
  color: #ffc107;
}

/* Button Styles */
.btn-modern-outline {
  border: 2px solid #ffc107;
  color: #333;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-modern-outline:hover {
  background: #ffc107;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .modern-video-card {
    height: 260px;
    min-height: 260px;
  }

  .video-thumbnail {
    height: 140px;
  }

  .video-title {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .video-section-modern {
    margin-top: 30px;
    padding: 15px;
  }

  .modern-video-card {
    height: 240px;
    min-height: 240px;
  }

  .video-thumbnail {
    height: 130px;
  }

  .video-info {
    padding: 12px;
  }

  .video-title {
    font-size: 12px;
    height: 30px;
  }

  .video-meta span {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  .video-section-modern {
    margin-top: 20px;
    padding: 12px;
  }

  .modern-video-card {
    height: 220px;
    min-height: 220px;
    margin-bottom: 15px;
  }

  .video-thumbnail {
    height: 120px;
  }

  .video-info {
    padding: 10px;
  }

  .video-title {
    font-size: 11px;
    height: 28px;
  }

  .btn-modern-outline {
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .video-section-modern {
    padding: 10px;
  }

  .modern-video-card {
    height: 200px;
    min-height: 200px;
  }

  .video-thumbnail {
    height: 110px;
  }

  .video-info {
    padding: 8px;
  }

  .video-title {
    font-size: 10px;
    height: 26px;
  }

  .video-meta span {
    font-size: 9px;
  }
}

/* Empty state styling */
.text-center.py-4 {
  padding: 40px 20px !important;
}

.text-center.py-4 i {
  margin-bottom: 15px;
  opacity: 0.5;
}

.text-center.py-4 p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 8px;
  padding-bottom: 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 .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 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%);
}

/*--------------------------------------------------------------
# Modern News & Video Cards
--------------------------------------------------------------*/
.modern-news-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.modern-news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.modern-news-card:hover .news-image {
  transform: scale(1.1);
}

.news-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-category {
  background: rgba(255, 193, 7, 0.9);
  color: #333;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.news-date {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.news-content {
  padding: 25px;
}

.news-title a {
  color: #2b2b2b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.news-title a:hover {
  color: #ffc107;
}

.read-more-btn {
  color: #ffc107;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  color: #ff8c00;
  gap: 10px;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

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

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

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

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-modern,
  .btn-play,
  .btn-outline-modern {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .slider-nav {
    padding: 0 15px;
  }

  .nav-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .video-section h5 {
    font-size: 16px;
  }

  .course-content h3 {
    font-size: 16px;
  }

  .modern-news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
  }

  .modern-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  /* Video Card Specific Styles */
  .modern-video-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
  }

  .modern-video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .video-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    cursor: pointer;
  }

  .video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .modern-video-card:hover .video-image {
    transform: scale(1.1);
  }

  .video-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .video-category {
    background: rgba(255, 193, 7, 0.9);
    color: #333;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
  }

  .video-date {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    backdrop-filter: blur(10px);
  }

  .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 193, 7, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
  }

  .play-overlay:hover {
    background: rgba(255, 193, 7, 1);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }

  .play-overlay i {
    font-size: 32px;
    color: #333;
    margin-left: 5px;
  }

  .news-image-container,
  .video-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
  }

  .news-image,
  .video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .modern-news-card:hover .news-image,
  .modern-video-card:hover .video-image {
    transform: scale(1.1);
  }

  .news-overlay,
  .video-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .news-category,
  .video-category {
    background: rgba(255, 193, 7, 0.9);
    color: #333;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
  }

  .news-date,
  .video-date {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    backdrop-filter: blur(10px);
  }

  .news-content,
  .video-content {
    padding: 25px;
  }

  .news-title a,
  .video-title a {
    color: #2b2b2b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .news-title a:hover,
  .video-title a:hover {
    color: #ffc107;
  }

  .read-more-btn,
  .watch-btn {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
  }

  .read-more-btn:hover,
  .watch-btn:hover {
    color: #ff8c00;
    gap: 10px;
  }

  /* Modern Button Styles */
  .btn-modern-primary {
    background: linear-gradient(45deg, #ffc107, #ff8c00);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    font-size: 16px;
    text-transform: none;
  }

  .btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.5);
    color: #333;
    text-decoration: none;
  }

  .btn-modern-primary i {
    font-size: 18px;
  }

  .news-content {
    padding: 20px;
  }

  .news-image-container {
    height: 180px;
  }

  .hero-slide::before {
    width: 120%;
    height: 120%;
    top: -5%;
    left: -5%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .btn-primary-modern,
  .btn-play,
  .btn-outline-modern {
    padding: 12px 25px;
    font-size: 14px;
  }

  .view-toggle {
    display: none;
  }

  .section-header {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 12px;
    padding: 6px 15px;
  }
}

/*--------------------------------------------------------------
# Animation Keyframes
--------------------------------------------------------------*/
@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
  }

  to {
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.6);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Print Styles
--------------------------------------------------------------*/
@media print {

  .header,
  .footer,
  .scroll-top,
  .slider-nav,
  .slider-pagination {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .modern-hero-slider {
    height: auto;
    page-break-inside: avoid;
  }
}