/*

TemplateMo 590 topic listing
Customized for LP MOK

*/

/*---------------------------------------
  ROOT / VARIABLES
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #13547a;
  --secondary-color: #7f8c8d;
  --section-bg-color: #f0f8ff;
  --custom-btn-bg-color: #7f8c8d;
  --custom-btn-bg-hover-color: #13547a;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #d9ece9;
  --link-hover-color: #08b0e7;

  --body-font-family: 'Open Sans', sans-serif;
  --title-font-family: 'Montserrat', sans-serif;

  --h1-font-size: 58px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --menu-font-size: 14px;
  --btn-font-size: 18px;
  --copyright-font-size: 16px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 1.5rem 3rem rgba(0, 0, 0, 0.18);
}

/*---------------------------------------
  BASE
-----------------------------------------*/
body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s ease;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family);
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
  color: var(--primary-color);
}

p,
ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  line-height: 1.8;
}

/*---------------------------------------
  SECTION
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay + .container {
  position: relative;
}

/*---------------------------------------
  BUTTONS
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  padding: 10px 22px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

/*---------------------------------------
  NAVBAR
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--secondary-color);
}

.navbar {
  background: transparent;
  border-bottom: 1px solid rgba(128, 208, 199, 0.35);
  z-index: 99;
}

.navbar-brand,
.navbar-brand:hover {
  display: block;
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand img {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #08b0e7;
}

.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  font-size: var(--h5-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.navbar-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  color: var(--p-color);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active,
.navbar .dropdown-item:focus {
  background: transparent;
  color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  line-height: 1;
  vertical-align: -.125em;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
  transition: background 10ms 300ms ease;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
}

/*---------------------------------------
  HERO
-----------------------------------------*/
.hero-section {
  background-image: linear-gradient(15deg, #6cabd0 0%, #58827d 100%);
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 150px;
}

.hero-text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section h6.text-white {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: var(--font-weight-medium);
}

.hero-section .custom-btn.custom-border-btn.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.hero-section .custom-btn.custom-border-btn.custom-btn-bg-white:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

/*---------------------------------------
  SITE HEADER
-----------------------------------------*/
.site-header,
.about-header {
  background-image: linear-gradient(15deg, #6cabd0 0%, #58827d 100%);
  padding-top: 150px;
  padding-bottom: 80px;
}

.site-header .container {
  height: 100%;
}

.breadcrumb-item + .breadcrumb-item::before,
.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: var(--white-color);
}

.site-header .custom-icon {
  color: var(--white-color);
  font-size: var(--h4-font-size);
}

.site-header .custom-icon:hover {
  color: var(--secondary-color);
}

.about-header p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 700px;
}

/*---------------------------------------
  TABS
-----------------------------------------*/
.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
}

.nav-tabs {
  border-bottom: 1px solid #ecf3f2;
  margin-bottom: 40px;
  justify-content: center;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
}

.nav-tabs .nav-link:first-child {
  margin-right: 20px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
}

/*---------------------------------------
  CARDS / BLOCKS
-----------------------------------------*/
.custom-block {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow-light);
  transition: all 0.35s ease;
}

.custom-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.15);
  background-color: var(--white-color);
}

.custom-block > a {
  width: 100%;
}

.custom-block h3,
.custom-block h5 {
  color: var(--primary-color);
}

.custom-block p strong {
  color: var(--dark-color);
}

.custom-block:hover h5,
.custom-block:hover p,
.custom-block:hover .custom-service-item h3,
.custom-block:hover .custom-service-item h5,
.custom-block:hover .custom-service-item p strong {
  color: var(--p-color);
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 35px;
}

.custom-block .rounded-pill {
  border-radius: 5px !important;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 20px;
}

.custom-block-overlay {
  height: 100%;
  min-height: 350px;
  padding: 0;
}

.custom-block-overlay > a {
  height: 100%;
}

.custom-block-overlay .custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  height: 100%;
  margin-top: 0;
}

.custom-block-overlay-text {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  padding: 30px;
}

.custom-service-item {
  padding: 15px;
  border-radius: var(--border-radius-medium);
  transition: all 0.3s ease;
  align-items: flex-start;
}

.custom-block:hover .custom-service-item {
  background-color: rgba(255, 255, 255, 0.08);
}

.service-icon {
  min-width: 50px;
  width: 50px;
  height: 50px;
  background: var(--section-bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.custom-block:hover .service-icon {
  background: var(--primary-color);
  color: var(--white-color);
  transform: scale(1.08);
}

.custom-block:hover .badge {
  background-color: var(--primary-color) !important;
}

.custom-block-topics-listing {
  height: inherit;
}

.custom-block-topics-listing .custom-block-image {
  width: 200px;
}

.custom-block-topics-listing-info {
  margin: 30px 20px 20px 30px;
}

/*---------------------------------------
  FEATURED SECTION
-----------------------------------------*/
.featured-section {
  background-color: var(--secondary-color);
  border-radius: 0 0 100px 100px;
  padding-bottom: 100px;
}

.featured-section .row {
  position: relative;
  bottom: 100px;
  margin-bottom: -100px;
}

/*---------------------------------------
  SOCIAL
-----------------------------------------*/
.social-share {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 20px 35px;
}

.social-share .bi-bookmark {
  color: var(--white-color);
  font-size: var(--h5-font-size);
}

.social-share .bi-bookmark:hover {
  color: var(--secondary-color);
}

.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/*---------------------------------------
  BADGES
-----------------------------------------*/
.bg-design {
  background-color: #00B0FF;
}

.bg-graphic {
  background-color: #00BFA6;
}

.bg-advertising {
  background-color: #F50057;
}

.bg-finance {
  background-color: #536DFE;
}

.bg-music {
  background-color: #F9A826;
}

.bg-education {
  background-color: #00BFA6;
}

/*---------------------------------------
  TOPICS DETAIL / BLOCKQUOTE
-----------------------------------------*/
.topics-detail-block,
.topics-detail-block-image {
  border-radius: var(--border-radius-medium);
}

.topics-detail-block {
  position: relative;
  overflow: hidden;
}

blockquote {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-family: var(--title-font-family);
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  text-align: center;
  margin: 30px;
  padding: 40px;
}

.topics-listing-page .site-header {
  padding-bottom: 65px;
}

/*---------------------------------------
  PAGINATION
-----------------------------------------*/
.pagination {
  margin-top: 40px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
}

.active > .page-link,
.page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/*---------------------------------------
  TIMELINE
-----------------------------------------*/
.timeline-section {
  background-image: url('../images/colleagues-working-cozy-office-medium-shot.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 87%;
  background-color: var(--primary-color);
  position: absolute;
  left: 52px;
  top: 0;
  overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--secondary-color);
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 20px 0 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 1.9;
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 80px;
  height: 80px;
  border: 4px solid #fff;
  position: absolute;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 25px;
  color: var(--white-color);
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  background-color: transparent;
  left: 52px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder,
.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: var(--primary-color);
}

/*---------------------------------------
  FAQ
-----------------------------------------*/
.faq-section .accordion-item {
  border: 0;
}

.faq-section .accordion-button {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-semibold);
}

.faq-section .accordion-item:first-of-type .accordion-button,
.faq-section .accordion-button:not(.collapsed) {
  border-radius: var(--border-radius-large);
}

.faq-section .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--primary-color);
}

.faq-section .accordion-body {
  color: var(--p-color);
  font-size: var(--btn-font-size);
  line-height: 1.9;
}

/*---------------------------------------
  NEWSLETTER / IMAGES
-----------------------------------------*/
.newsletter-image {
  border-radius: var(--border-radius-medium);
}

/*---------------------------------------
  CONTACT
-----------------------------------------*/
.google-map,
.contact-section .google-map {
  border-radius: var(--border-radius-medium);
}

.contact-section .google-map {
  min-height: 320px;
}

.contact-section .custom-block {
  padding: 30px;
}

.contact-section h4 {
  color: var(--primary-color);
}

.contact-section .site-footer-link {
  word-break: break-word;
}

.contact-form .form-floating > textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}

/*---------------------------------------
  FORMS
-----------------------------------------*/
.subscribe-form-wrap {
  padding: 50px;
}

.subscribe-form {
  width: 95%;
}

.custom-form .form-control {
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 20px;
  outline: none;
}

.form-floating > label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

/*---------------------------------------
  FOOTER
-----------------------------------------*/
.site-footer {
  border-bottom: 10px solid var(--secondary-color);
  position: relative;
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent var(--secondary-color) transparent;
  pointer-events: none;
}

.site-footer-title {
  color: var(--primary-color);
}

.site-footer .dropdown-menu {
  padding: 0;
}

.site-footer .dropdown-item {
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding: 4px 18px;
}

.site-footer .dropdown-item:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.site-footer .dropdown-menu li:first-child .dropdown-item {
  padding-top: 10px;
}

.site-footer .dropdown-menu li:last-child .dropdown-item {
  padding-bottom: 12px;
}

.site-footer .dropdown-toggle {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.site-footer .dropdown-toggle:hover {
  background-color: var(--primary-color);
  border-color: transparent;
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  display: block;
  list-style: none;
  line-height: normal;
}

.site-footer-link {
  color: var(--secondary-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}

/*---------------------------------------
  ABOUT / DIRECTOR
-----------------------------------------*/
.about-card,
.director-card {
  overflow: hidden;
}

.director-card {
  transition: all 0.3s ease;
}

.director-card:hover {
  transform: translateY(-8px);
}

.director-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: 4px solid var(--primary-color);
}

/*---------------------------------------
  ANIMATION
-----------------------------------------*/
.fade-up {
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*---------------------------------------
  FLOATING WHATSAPP
-----------------------------------------*/
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #13547a 0%, #80d0c7 100%);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
  color: var(--white-color);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(19, 84, 122, 0.45);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(19, 84, 122, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(19, 84, 122, 0);
  }
}

/*---------------------------------------
  RESPONSIVE - TABLET
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-header p {
    font-size: 16px;
  }

  .navbar {
    background-color: var(--secondary-color);
  }

  .navbar-brand img {
    height: 56px;
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 180px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
  }

  .featured-section {
    border-radius: 0 0 80px 80px;
    padding-bottom: 50px;
  }

  .custom-block-topics-listing .custom-block-image {
    width: auto;
  }

  .custom-block-topics-listing > .d-flex,
  .custom-block-topics-listing-info,
  .custom-block-topics-listing a {
    flex-direction: column;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    height: 75%;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding-left: 135px;
  }

  .subscribe-form-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }
}

/*---------------------------------------
  RESPONSIVE - MOBILE
-----------------------------------------*/
@media screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 1.25;
  }

  h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  h3 {
    font-size: 22px;
    line-height: 1.35;
  }

  h4 {
    font-size: 20px;
    line-height: 1.4;
  }

  h5 {
    font-size: 18px;
    line-height: 1.4;
  }

  h6 {
    font-size: 16px;
    line-height: 1.4;
  }

  p,
  ul li {
    font-size: 15px;
    line-height: 1.7;
  }

  .section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-section {
    padding-top: 110px;
    padding-bottom: 90px;
  }

  .site-header {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .custom-block {
    padding: 20px;
  }

  .custom-block-image {
    height: auto;
    max-height: 220px;
    object-fit: contain;
    margin-top: 20px;
  }

  .custom-block-overlay .custom-block-image {
    min-height: 240px;
    object-fit: cover;
  }

  .custom-service-item,
  .custom-block-topics-listing-info,
  .custom-block-topics-listing > .d-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .service-icon {
    margin-bottom: 15px;
  }

  .custom-block .badge,
  .custom-service-item .badge {
    margin-top: 15px;
    margin-left: 0 !important;
  }

  .contact-section .custom-block {
    padding: 20px;
  }

  .contact-section .google-map {
    min-height: 250px;
  }

  .contact-section p.d-flex {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .contact-section p.d-flex span {
    margin-bottom: 4px;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    left: 32px;
    width: 6px;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding: 10px 0 40px 90px;
  }

  .timeline-container .vertical-scrollable-timeline li::before {
    left: 32px;
    width: 6px;
  }

  .timeline-container .vertical-scrollable-timeline li .icon-holder {
    width: 64px;
    height: 64px;
  }

  .timeline-container .vertical-scrollable-timeline li .icon-holder::before {
    width: 50px;
    height: 50px;
  }

  .director-image {
    width: 140px;
    height: 140px;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
    font-size: 22px;
  }
}

/*---------------------------------------
  RESPONSIVE - SMALL MOBILE
-----------------------------------------*/
@media screen and (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  .navbar-brand img {
    height: 48px;
  }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
    right: 12px;
    bottom: 12px;
    font-size: 20px;
  }
}

/*---------------------------------------
  ABOUT US EFFECTS
-----------------------------------------*/
/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal-left.reveal-active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal-right.reveal-active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal-zoom.reveal-active {
  opacity: 1;
  transform: scale(1);
}

.our-fleet {
    background-color: #f8f9fa;
}

.our-fleet h2 {
    font-weight: 700;
    color: #000;
}

.fleet-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.fleet-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.fleet-item:hover img {
    transform: scale(1.08);
}

@media screen and (max-width: 991px) {
    .fleet-item img {
        height: 220px;
    }
}

@media screen and (max-width: 575px) {
    .fleet-item img {
        height: 200px;
    }
}