/*

TemplateMo 590 topic listing

https://templatemo.com/tm-590-topic-listing

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #13547a;
  --secondary-color:              #80d0c7;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #80d0c7;
  --custom-btn-bg-hover-color:    #13547a;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #13547a;

  --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:                  20px;
  --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;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  opacity: 1;
  transition: opacity 0.1s ease-in-out;
}

/* Mobile Dropdown Menu Reset */
@media screen and (max-width: 991.98px) {
  .navbar {
    position: relative !important;
  }
  
  .navbar-nav {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .navbar-nav .nav-item {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .navbar-nav .dropdown-menu {
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: rgba(248, 249, 250, 0.95) !important;
    display: none !important;
  }
  
  .navbar-nav .dropdown-menu.show {
    display: block !important;
  }
  
  .navbar-nav .dropdown-item {
    display: block !important;
    width: 100% !important;
    padding: 12px 20px 12px 30px !important;
    margin: 0 !important;
    clear: both !important;
    font-weight: 400 !important;
    color: #495057 !important;
    text-align: inherit !important;
    white-space: normal !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  }
  
  .navbar-nav .dropdown-item:hover,
  .navbar-nav .dropdown-item:focus {
    background: rgba(19, 84, 122, 0.1) !important;
    color: #13547a !important;
    padding-left: 35px !important;
  }
  
  .navbar-nav .dropdown-item.active {
    background: rgba(19, 84, 122, 0.15) !important;
    color: #13547a !important;
    font-weight: 600 !important;
    padding-left: 35px !important;
  }
  
  .navbar-nav .dropdown-item:last-child {
    border-bottom: none !important;
  }
}

body:not(.loaded) {
  opacity: 0;
}

/* Prevent dropdown flicker on page load */
.dropdown-menu {
  display: none;
}

.dropdown-menu.show {
  display: block;
}


/*---------------------------------------
  MOBILE FIRST OVERRIDES               
-----------------------------------------*/

/* Critical dropdown fixes - HIGHEST PRIORITY */
@media screen and (max-width: 991.98px) {
  /* Ensure dropdown containers work */
  .dropdown-menu {
    display: none !important;
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06) !important;
    background: rgba(248, 249, 250, 0.95) !important;
    z-index: 1000 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
  }
  
  /* SHOW dropdown when class is added */
  .dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Ensure parent dropdowns show their menus */
  .dropdown.show .dropdown-menu,
  .dropdown-submenu.show .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .navbar-nav .nav-link {
    color: #212529 !important;
    font-weight: 500 !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
  }
  
  .navbar-nav .nav-link:hover {
    background: linear-gradient(90deg, rgba(19, 84, 122, 0.1) 0%, rgba(128, 208, 199, 0.1) 100%) !important;
    color: #13547a !important;
    padding-left: 25px !important;
  }
  
  .navbar-nav .nav-link.active {
    background: linear-gradient(90deg, rgba(19, 84, 122, 0.15) 0%, rgba(128, 208, 199, 0.15) 100%) !important;
    color: #13547a !important;
    font-weight: 600 !important;
    padding-left: 25px !important;
  }
}

/* Force dropdown visibility with inline styles */
.dropdown-menu[style*="display: block"] {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* CRITICAL: Make dropdowns visible no matter what */
.dropdown-menu.show {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: static !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: rgba(248, 249, 250, 0.98) !important;
  box-shadow: none !important;
  z-index: 9999 !important;
  transform: none !important;
}

/* Show dropdown when parent has show class */
.dropdown.show .dropdown-menu,
.dropdown-submenu.show .dropdown-menu {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Override absolutely everything */
@media screen and (max-width: 991.98px) {
  .dropdown-menu {
    display: none !important;
  }
  
  .dropdown-menu.show {
    display: block !important;
    position: static !important;
    width: 100% !important;
    background: #f8f9fa !important;
    border-left: 3px solid #13547a !important;
    margin-left: 10px !important;
    padding: 10px 0 !important;
  }
  
  .dropdown-item {
    display: block !important;
    width: 100% !important;
    padding: 12px 25px !important;
    color: #495057 !important;
    font-size: 15px !important;
    background: transparent !important;
    border-bottom: 1px solid #dee2e6 !important;
  }
  
  .dropdown-item:hover {
    background: rgba(19, 84, 122, 0.1) !important;
    color: #13547a !important;
    padding-left: 30px !important;
  }
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family); 
  font-weight: var(--font-weight-semibold);
}

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 {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

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);
}


/*---------------------------------------
  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;
}

.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;
  transition: all 0.3s;
}

.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);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.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;
  transition: all 0.3s;
  padding: 10px 20px;
}

.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);
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 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);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.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: 9;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
}

.navbar-brand span {
  font-family: var(--title-font-family);
}

.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;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  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;
  color: var(--p-bg-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;
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  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;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  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-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;
  transition: all 0.3s ease;
}

.navbar-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.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 {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  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);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 150px;
}

.hero-section .input-group {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 10px 15px;
}

.hero-section .input-group-text {
  background-color: transparent;
  border: 0;
}

.hero-section input[type="search"] {
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 0;
}

.hero-section button[type="submit"] {
  background-color: var(--primary-color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
  color: var(--white-color);
  max-width: 150px;
}


/*---------------------------------------
  TOPICS              
-----------------------------------------*/
.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;
}

.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.custom-block:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.custom-block > a {
  width: 100%;
}

.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;
}

.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);
}

.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;
}

.bg-medical {
  background-color: #00695C;
}

.bg-service {
  background-color: #1976D2;
}

.bg-facility {
  background-color: #7B1FA2;
}

.bg-edukasi {
  background-color: #F57C00;
}

.bg-promo {
  background-color: #D32F2F;
}

/*---------------------------------------
  DOCTOR TAB STYLING              
-----------------------------------------*/
.team-avatar {
  position: relative;
  display: inline-block;
}

.doctor-avatar {
  width: 200px;
  height: 240px;
  object-fit: contain;
  object-position: center;
  border-radius: var(--border-radius-medium);
  box-shadow: 0 8px 25px rgba(19, 84, 122, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #f8f9fa;
  padding: 4px;
}

.custom-block:hover .doctor-avatar {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(19, 84, 122, 0.25);
}

/* Additional styling for natural look */
.doctor-avatar {
  background: #ffffff;
  border: 1px solid #e9ecef;
}

.doctor-info {
  padding: 20px 15px;
}

.doctor-name {
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  margin-bottom: 5px;
}

.doctor-specialty {
  font-size: 14px;
  margin-bottom: 15px;
}

/*---------------------------------------
  SERVICE TAB STYLING              
-----------------------------------------*/
.service-card {
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-icon i {
  font-size: 28px;
  color: var(--white-color);
}

.custom-block:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  font-size: 20px;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  margin-bottom: 10px;
}

.service-description {
  font-size: 14px;
  color: var(--p-color);
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-details {
  margin-top: auto;
}

.service-details .d-flex {
  font-size: 13px;
  color: var(--p-color);
  line-height: 1.4;
}

.service-details .d-flex i {
  font-size: 16px;
  flex-shrink: 0;
}

/*---------------------------------------
  RESPONSIVE FOR DOCTOR & SERVICE TABS              
-----------------------------------------*/
@media screen and (max-width: 991px) {
  /* Mobile Navigation Improvements */
  .navbar {
    padding: 10px 0;
    background: rgba(19, 84, 122, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-brand {
    padding: 8px 0;
  }
  
  .navbar-brand img {
    height: 40px !important;
  }
  
  .navbar-toggler {
    border: 2px solid #ffffff !important;
    border-radius: 8px;
    padding: 4px 8px;
    margin-right: 15px;
  }
  
  .navbar-toggler .navbar-toggler-icon {
    background: #ffffff !important;
    width: 22px;
    height: 2px;
  }
  
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    background: #ffffff !important;
    width: 22px;
    height: 2px;
  }
  
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  .navbar-nav {
    padding: 15px 0;
  }
  
  .navbar-nav .nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin: 0;
  }
  
  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }
  
  .navbar-nav .nav-link {
    color: #212529 !important;
    font-weight: 500;
    padding: 15px 20px !important;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 0;
  }
  
  .navbar-nav .nav-link:hover {
    background: linear-gradient(90deg, rgba(19, 84, 122, 0.1) 0%, rgba(128, 208, 199, 0.1) 100%);
    color: #13547a !important;
    padding-left: 25px !important;
  }
  
  .navbar-nav .nav-link.active {
    background: linear-gradient(90deg, rgba(19, 84, 122, 0.15) 0%, rgba(128, 208, 199, 0.15) 100%);
    color: #13547a !important;
    font-weight: 600;
    padding-left: 25px !important;
  }
  
  /* Mobile Dropdown Menu Fixes */
  .navbar-nav .dropdown-menu {
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: rgba(248, 249, 250, 0.95) !important;
    backdrop-filter: blur(5px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  }
  
  .navbar-nav .dropdown-menu.show {
    display: block !important;
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .navbar-nav .dropdown-item {
    color: #495057 !important;
    padding: 12px 20px 12px 30px !important;
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: transparent !important;
  }
  
  .navbar-nav .dropdown-item:last-child {
    border-bottom: none;
  }
  
  .navbar-nav .dropdown-item:hover {
    background: rgba(19, 84, 122, 0.1) !important;
    color: #13547a !important;
    padding-left: 35px !important;
  }
  
  .navbar-nav .dropdown-item.active {
    background: rgba(19, 84, 122, 0.15) !important;
    color: #13547a !important;
    font-weight: 600;
    padding-left: 35px !important;
  }
  
  /* Mobile Submenu Fixes */
  .dropdown-submenu .dropdown-menu {
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: rgba(240, 248, 255, 0.95) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
  }
  
  .dropdown-submenu .dropdown-item {
    color: #495057 !important;
    padding: 12px 20px 12px 40px !important;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    background: transparent !important;
  }
  
  .dropdown-submenu .dropdown-item:hover {
    background: rgba(19, 84, 122, 0.08) !important;
    color: #13547a !important;
    padding-left: 45px !important;
  }
  
  .dropdown-submenu .dropdown-toggle {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    position: relative;
  }
  
  .dropdown-submenu .dropdown-toggle::after {
    content: "▼" !important;
    border: none !important;
    font-size: 12px;
    color: #6c757d;
    transition: transform 0.3s ease;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .dropdown-submenu.show .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
    color: #13547a;
  }
  
  .dropdown-submenu.show .dropdown-toggle {
    background-color: #e9ecef !important;
    font-weight: 500;
  }
  
  .dropdown-submenu .dropdown-toggle i.bx-chevron-right {
    display: none !important;
  }
  
  /* Fix dropdown z-index issues */
  .navbar-collapse {
    z-index: 1050;
  }
  
  .dropdown-menu {
    z-index: 1060 !important;
  }
  
  /* Fix backdrop */
  .navbar-collapse.show {
    background: rgba(255, 255, 255, 0.98) !important;
  }
  
  /* Prevent horizontal scroll on mobile */
  body {
    overflow-x: hidden;
  }
  
  html {
    overflow-x: hidden;
  }
  
  /* Additional dropdown fixes */
  .dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: dropdownFadeIn 0.3s ease;
  }
  
  @keyframes dropdownFadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Fix mobile menu scroll */
  .navbar-collapse.collapsing {
    height: auto !important;
    transition: none !important;
  }
  
  .navbar-collapse.show {
    height: auto !important;
    max-height: calc(100vh - 80px) !important;
    overflow-y: auto !important;
  }
  
  /* Prevent dropdown items from being too wide */
  .dropdown-item {
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  /* Better touch targets */
  .nav-link, .dropdown-item {
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
  }
  
  /* Force dropdown visibility on mobile */
  .navbar-nav .dropdown-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
  }
  
  .navbar-nav .dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    transform: none !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06) !important;
    background: rgba(248, 249, 250, 0.95) !important;
    z-index: 1000 !important;
  }
  
  /* Ensure dropdown containers are visible */
  .dropdown.show .dropdown-menu,
  .dropdown-submenu.show .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Override any conflicting styles */
  @media screen and (max-width: 991.98px) {
    .dropdown-menu {
      position: static !important;
      display: none !important;
    }
    
    .dropdown-menu.show {
      display: block !important;
    }
  }
  
  /* Hide desktop-only elements */
  .d-none.d-lg-block {
    display: none !important;
  }
  
  .d-lg-none.ms-auto.me-4 {
    display: flex !important;
    margin-left: auto !important;
    margin-right: 15px !important;
  }
  
  .navbar-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-left: 10px;
  }
  
  .navbar-icon:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
  }

  .doctor-avatar {
    width: 160px;
    height: 190px;
  }
  
  .doctor-name {
    font-size: 16px;
  }
  
  .doctor-specialty {
    font-size: 13px;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .service-icon i {
    font-size: 24px;
  }
  
  .service-title {
    font-size: 18px;
  }
  
  .service-description {
    font-size: 13px;
  }
  
  .service-details .d-flex {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  /* Small Mobile Navigation Improvements */
  .navbar {
    padding: 8px 0;
  }
  
  .navbar-brand img {
    height: 35px !important;
  }
  
  .navbar-toggler {
    border: 1.5px solid #ffffff !important;
    padding: 3px 6px;
    margin-right: 10px;
  }
  
  .navbar-toggler .navbar-toggler-icon {
    width: 18px;
    height: 1.5px;
  }
  
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    width: 18px;
    height: 1.5px;
  }
  
  .navbar-nav .nav-link {
    padding: 12px 15px !important;
    font-size: 15px;
  }
  
  .navbar-nav .nav-link:hover {
    padding-left: 20px !important;
  }
  
  .navbar-nav .nav-link.active {
    padding-left: 20px !important;
  }
  
  .navbar-nav .dropdown-item {
    padding: 10px 15px 10px 25px !important;
    font-size: 14px;
  }
  
  .navbar-nav .dropdown-item:hover {
    padding-left: 30px !important;
  }
  
  .dropdown-submenu .dropdown-item {
    padding: 10px 15px 10px 35px !important;
    font-size: 13px;
  }
  
  .dropdown-submenu .dropdown-item:hover {
    padding-left: 40px !important;
  }
  
  .dropdown-submenu .dropdown-toggle::after {
    right: 15px;
    font-size: 10px;
  }

  .doctor-avatar {
    width: 140px;
    height: 170px;
  }
  
  .doctor-name {
    font-size: 15px;
  }
  
  .doctor-specialty {
    font-size: 12px;
  }
  
  .service-card {
    padding: 15px;
  }
  
  .service-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
  }
  
  .service-icon i {
    font-size: 20px;
  }
  
  .service-title {
    font-size: 16px;
  }
  
  .service-description {
    font-size: 12px;
    margin-bottom: 15px;
  }
  
  .service-details .d-flex {
    font-size: 11px;
  }
}


/*---------------------------------------
  TOPICS               
-----------------------------------------*/
.topics-detail-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.topics-detail-block-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

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;
}

.custom-block-topics-listing-info {
  margin: 30px 20px 20px 30px;
}

.custom-block-topics-listing {
  height: inherit;
}

.custom-block-topics-listing .custom-block-image {
  width: 200px;
}


/*---------------------------------------
  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 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 40px;
}

.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 {
  background-color: var(--primary-color);
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: var(--primary-color);
}


/*---------------------------------------
  FAQs              
-----------------------------------------*/
.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 {
  border-radius: var(--border-radius-large);
}

.faq-section .accordion-button:not(.collapsed) {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--primary-color);
}

.faq-section .accordion-body {
  color: var(--p-color);
  font-size: var(--btn-font-size);
  line-height: 40px;
}

/*---------------------------------------
  NEWSLETTER               
-----------------------------------------*/
.newsletter-image {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}


/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
  padding: 50px;
}

.subscribe-form {
  width: 95%;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.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);
  transition: all 0.3s;
  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;
}


/*---------------------------------------
  PROMO SLIDER              
-----------------------------------------*/
.promo-slider {
  padding: 80px 0 120px;
  position: relative;
}

.promo-slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-medium);
  box-shadow: 0 20px 40px rgba(19, 84, 122, 0.15);
}

.promo-slide {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-medium);
  min-height: 300px;
  max-height: 500px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  aspect-ratio: auto;
}

.promo-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  min-height: 300px;
  padding: 20px;
}

.promo-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s ease, filter 0.6s ease;
  display: block;
  border-radius: var(--border-radius-medium);
  box-shadow: 0 10px 30px rgba(19, 84, 122, 0.15);
  padding: 8px;
  background: var(--white-color);
}

.promo-slide:hover .promo-image {
  transform: scale(1.05);
  filter: brightness(0.95);
  box-shadow: 0 15px 40px rgba(19, 84, 122, 0.25);
  border: 3px solid var(--secondary-color);
}

/* Duplicate rules removed - consolidated above */

.promo-slide:hover .promo-image-wrapper .promo-image {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(19, 84, 122, 0.85) 0%, 
    rgba(128, 208, 199, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  transition: background 0.4s ease;
}

.promo-slide:hover .promo-overlay {
  background: linear-gradient(135deg, 
    rgba(19, 84, 122, 0.9) 0%, 
    rgba(128, 208, 199, 0.8) 100%);
}

.promo-content {
  text-align: center;
  color: var(--white-color);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.promo-slide:hover .promo-content {
  transform: translateY(-5px);
}

.promo-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

.promo-description {
  font-size: var(--p-font-size);
  margin-bottom: 25px;
  opacity: 0.95;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.promo-btn {
  display: inline-block;
  background: var(--white-color);
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: var(--border-radius-large);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.promo-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Swiper Custom Styles */
.promoSwiper {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.promoSwiper .swiper-button-next,
.promoSwiper .swiper-button-prev {
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  margin-top: -25px;
}

.promoSwiper .swiper-button-next::after,
.promoSwiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.promoSwiper .swiper-button-next:hover,
.promoSwiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.promoSwiper .swiper-pagination {
  bottom: 20px;
}

.promoSwiper .swiper-pagination-bullet {
  background: var(--white-color);
  opacity: 0.6;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.promoSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--white-color);
  transform: scale(1.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Additional image centering options */
.promo-slide img {
  object-position: center center;
  object-fit: contain;
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  border-radius: var(--border-radius-medium);
  box-shadow: 0 10px 30px rgba(19, 84, 122, 0.15);
  padding: 8px;
  background: var(--white-color);
}

/* Perfect centering for all image ratios */
.promo-image-wrapper {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Alternative for portrait images */
.promo-slide .promo-image.portrait {
  object-fit: contain;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Ensure image is always centered regardless of aspect ratio */
.promo-image {
  position: relative !important;
  transition: transform 0.6s ease, filter 0.6s ease !important;
  object-fit: contain !important;
  max-width: 100% !important;
  max-height: 500px !important;
  width: auto !important;
  height: auto !important;
  border-radius: var(--border-radius-medium) !important;
  box-shadow: 0 10px 30px rgba(19, 84, 122, 0.15) !important;
  padding: 8px !important;
  background: var(--white-color) !important;
}

.promo-slide:hover .promo-image {
  transform: scale(1.05) !important;
  filter: brightness(0.95) !important;
  box-shadow: 0 15px 40px rgba(19, 84, 122, 0.25) !important;
  border: 3px solid var(--secondary-color) !important;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .promo-slider {
    padding: 60px 0 80px;
  }
  
  .promo-slide {
    min-height: 250px;
    max-height: 400px;
  }
  
  .promo-title {
    font-size: var(--h4-font-size);
  }
  
  .promo-description {
    font-size: 18px;
  }
  
  .promo-content {
    padding: 30px;
  }
  
  .promoSwiper .swiper-button-next,
  .promoSwiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  
  .promoSwiper .swiper-button-next::after,
  .promoSwiper .swiper-button-prev::after {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .promo-slider {
    padding: 40px 0 60px;
  }
  
  .promo-slide {
    min-height: 200px;
    max-height: 350px;
  }
  
  .promo-overlay {
    padding: 20px;
  }
  
  .promo-title {
    font-size: var(--h5-font-size);
    margin-bottom: 10px;
  }
  
  .promo-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .promo-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
  
  .promoSwiper .swiper-button-next,
  .promoSwiper .swiper-button-prev {
    display: none;
  }
  
  .promoSwiper .swiper-pagination {
    bottom: 15px;
  }
}

@media screen and (max-width: 480px) {
  /* Very Small Mobile Navigation Improvements */
  .navbar {
    padding: 6px 0;
  }
  
  .navbar-brand img {
    height: 30px !important;
  }
  
  .navbar-toggler {
    border: 1px solid #ffffff !important;
    padding: 2px 5px;
    margin-right: 8px;
  }
  
  .navbar-toggler .navbar-toggler-icon {
    width: 16px;
    height: 1.5px;
  }
  
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    width: 16px;
    height: 1.5px;
  }
  
  .navbar-nav {
    padding: 10px 0;
  }
  
  .navbar-nav .nav-link {
    padding: 10px 12px !important;
    font-size: 14px;
  }
  
  .navbar-nav .nav-link:hover {
    padding-left: 15px !important;
  }
  
  .navbar-nav .nav-link.active {
    padding-left: 15px !important;
  }
  
  .navbar-nav .dropdown-item {
    padding: 8px 12px 8px 20px !important;
    font-size: 13px;
  }
  
  .navbar-nav .dropdown-item:hover {
    padding-left: 25px !important;
  }
  
  .dropdown-submenu .dropdown-item {
    padding: 8px 12px 8px 30px !important;
    font-size: 12px;
  }
  
  .dropdown-submenu .dropdown-item:hover {
    padding-left: 35px !important;
  }
  
  .dropdown-submenu .dropdown-toggle::after {
    right: 12px;
    font-size: 9px;
  }
  
  .navbar-icon {
    width: 35px !important;
    height: 35px !important;
    line-height: 35px !important;
    font-size: 16px !important;
    margin-left: 5px;
  }

  .promo-slide {
    min-height: 180px;
    max-height: 300px;
  }
  
  .promo-title {
    font-size: 20px;
  }
  
  .promo-description {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .promo-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/*---------------------------------------
  ABOUT SECTION              
-----------------------------------------*/
.about-image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-medium);
  box-shadow: 0 15px 35px rgba(19, 84, 122, 0.1);
}

.about-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.about-image-container:hover .about-image {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.about-image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
}

.about-image-badge {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 8px 15px;
  border-radius: var(--border-radius-large);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  box-shadow: 0 4px 15px rgba(19, 84, 122, 0.3);
  animation: pulse 2s infinite;
}

.about-image-badge i {
  font-size: 18px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.about-content {
  padding-left: 30px;
}

.about-title {
  color: var(--primary-color);
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--p-color);
  margin-bottom: 30px;
}

.about-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(19, 84, 122, 0.15);
  background: linear-gradient(135deg, rgba(19, 84, 122, 0.05), rgba(128, 208, 199, 0.05));
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon i {
  color: var(--white-color);
  font-size: 24px;
}

.feature-content {
  flex-grow: 1;
}

.feature-title {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-description {
  color: var(--p-color);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.about-stats {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius-medium);
  padding: 25px;
  box-shadow: 0 10px 25px rgba(19, 84, 122, 0.2);
}

.stat-item {
  padding: 10px;
}

.stat-number {
  color: var(--white-color);
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Styles for About Section */
@media screen and (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 30px;
  }
  
  .about-title {
    font-size: var(--h5-font-size);
  }
  
  .about-description {
    font-size: 15px;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon i {
    font-size: 20px;
  }
  
  .feature-title {
    font-size: 16px;
  }
  
  .feature-description {
    font-size: 13px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .stat-label {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .about-image {
    height: 350px;
  }
  
  .about-image-overlay {
    top: 15px;
    right: 15px;
  }
  
  .about-image-badge {
    padding: 6px 12px;
    font-size: 13px;
  }
  
  .about-image-badge i {
    font-size: 16px;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .about-stats {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 22px;
  }
  
  .stat-label {
    font-size: 11px;
  }
}

@media screen and (max-width: 480px) {
  .about-image {
    height: 280px;
  }
  
  .about-title {
    font-size: 20px;
  }
  
  .about-description {
    font-size: 14px;
  }
  
  .feature-item {
    padding: 15px 10px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-icon i {
    font-size: 18px;
  }
  
  .feature-title {
    font-size: 15px;
  }
  
  .feature-description {
    font-size: 12px;
  }
}

/*---------------------------------------
  TESTIMONIAL SECTION              
-----------------------------------------*/
.testimonial-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.testimonial-card {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(19, 84, 122, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  margin-right: 15px;
  border: 3px solid var(--secondary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  flex-grow: 1;
}

.testimonial-name {
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  margin-bottom: 5px;
  line-height: 1.2;
}

.testimonial-role {
  font-size: 14px;
  color: var(--p-color);
  margin: 0;
  line-height: 1.4;
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  margin-top: 8px;
}

.testimonial-rating i {
  font-size: 16px;
}

.testimonial-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--p-color);
  font-style: italic;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  color: var(--secondary-color);
  font-family: Georgia, serif;
}

.testimonial-icon {
  align-self: flex-end;
  margin-top: auto;
  color: var(--secondary-color);
  opacity: 0.3;
  font-size: 32px;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .testimonial-card {
    padding: 25px;
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
  }
  
  .testimonial-name {
    font-size: 16px;
  }
  
  .testimonial-role {
    font-size: 13px;
  }
  
  .testimonial-quote {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .testimonial-section {
    padding: 60px 0;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .testimonial-header {
    flex-direction: column;
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  
  .testimonial-avatar {
    width: 80px;
    height: 80px;
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .testimonial-rating {
    justify-content: center;
  }
  
  .testimonial-quote {
    font-size: 14px;
    text-align: center;
    padding-left: 0;
    padding-top: 15px;
  }
  
  .testimonial-quote::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .testimonial-icon {
    align-self: center;
    font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .testimonial-card {
    padding: 15px;
  }
  
  .testimonial-avatar {
    width: 70px;
    height: 70px;
  }
  
  .testimonial-name {
    font-size: 15px;
  }
  
  .testimonial-role {
    font-size: 12px;
  }
  
  .testimonial-quote {
    font-size: 13px;
  }
  
  .testimonial-rating i {
    font-size: 14px;
  }
  
  .testimonial-icon {
    font-size: 24px;
  }
}

/*---------------------------------------
  GOOGLE REVIEW SECTION              
-----------------------------------------*/
.google-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-rating-summary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score-number {
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
}

.rating-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 5px;
}

.rating-stars i {
  font-size: 20px;
}

.total-reviews {
  font-size: 14px;
  color: var(--p-color);
  margin: 0;
  text-align: center;
}

.google-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius-medium);
  transition: all 0.3s ease;
}

.google-logo:hover {
  border-color: #4285f4;
  background: #f8f9fa;
}

.google-logo i {
  font-size: 24px;
  color: #4285f4;
}

.google-logo span {
  font-weight: var(--font-weight-semibold);
  color: #4285f4;
}

/* Loading State */
#reviews-loading {
  padding: 60px 0;
}

.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.loading-spinner i {
  font-size: 48px;
  color: var(--primary-color);
  animation: spin 1s linear infinite;
}

.loading-spinner p {
  font-size: 16px;
  color: var(--p-color);
  margin: 0;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Enhanced Testimonial Cards for Google Reviews */
.testimonial-card .testimonial-body .testimonial-icon i.bxl-google {
  color: #4285f4;
  opacity: 0.8;
}

.testimonial-card .testimonial-avatar {
  border-color: #4285f4;
}

/* Google Badge */
.google-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #4285f4;
  color: white;
  padding: 5px 10px;
  border-radius: var(--border-radius-small);
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  display: flex;
  align-items: center;
  gap: 5px;
}

.google-badge i {
  font-size: 14px;
}

/* Responsive for Google Review */
@media screen and (max-width: 991px) {
  .google-rating-summary {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }
  
  .score-number {
    font-size: 40px;
  }
  
  .rating-stars i {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .google-rating-summary {
    padding: 12px;
    gap: 15px;
  }
  
  .score-number {
    font-size: 36px;
  }
  
  .rating-stars i {
    font-size: 16px;
  }
  
  .google-logo {
    padding: 8px 16px;
  }
  
  .google-logo i {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .score-number {
    font-size: 32px;
  }
  
  .rating-stars i {
    font-size: 14px;
  }
  
  .total-reviews {
    font-size: 12px;
  }
  
  .google-logo {
    padding: 6px 12px;
  }
  
  .google-logo i {
    font-size: 18px;
  }
  
  .google-logo span {
    font-size: 14px;
  }
}

/*---------------------------------------
  ONLINE REGISTRATION SECTION              
-----------------------------------------*/
.online-registration-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.registration-promo {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 50px 40px;
  box-shadow: 0 20px 40px rgba(19, 84, 122, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.registration-promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.registration-promo:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(19, 84, 122, 0.15);
}

.promo-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: transform 0.3s ease;
}

.registration-promo:hover .promo-icon {
  transform: scale(1.1) rotate(5deg);
}

.promo-icon i {
  font-size: 36px;
  color: var(--white-color);
}

.promo-title {
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.promo-description {
  font-size: 16px;
  color: var(--p-color);
  margin-bottom: 30px;
  line-height: 1.6;
}

.promo-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.promo-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: rgba(19, 84, 122, 0.05);
  border-radius: var(--border-radius-medium);
  transition: all 0.3s ease;
}

.promo-features .feature-item:hover {
  background: rgba(19, 84, 122, 0.1);
  transform: translateX(5px);
}

.promo-features .feature-item i {
  font-size: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.promo-features .feature-item span {
  font-size: 15px;
  font-weight: var(--font-weight-medium);
  color: var(--dark-color);
}

/* Contact Info Section */
.contact-info-section {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 20px;
  background: #f8f9fa;
  border-radius: var(--border-radius-medium);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  background: linear-gradient(135deg, rgba(19, 84, 122, 0.05), rgba(128, 208, 199, 0.05));
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(19, 84, 122, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-icon i {
  font-size: 28px;
  color: var(--white-color);
}

.contact-details {
  flex-grow: 1;
}

.contact-title {
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  margin-bottom: 5px;
  line-height: 1.2;
}

.contact-value {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  margin: 0;
  line-height: 1.4;
}

/* Modal Styles for Registration Form */
.modal-dialog.modal-xl {
  max-width: 900px;
}

.modal-content {
  border-radius: var(--border-radius-large);
  border: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
  border: none;
}

.modal-title {
  font-weight: var(--font-weight-semibold);
}

.modal-body {
  padding: 40px;
  max-height: 70vh;
  overflow-y: auto;
}

.modal-footer {
  border-top: 1px solid #e0e0e0;
  padding: 20px 40px;
}

/* Quick Actions */
.quick-actions {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  border-radius: var(--border-radius-medium);
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 100px;
  gap: 10px;
}

.quick-action-btn i {
  font-size: 32px;
  margin-bottom: 5px;
}

.quick-action-btn span {
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  text-align: center;
}

.whatsapp-btn {
  background: #25d366;
  color: var(--white-color);
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.phone-btn {
  background: #007bff;
  color: var(--white-color);
}

.phone-btn:hover {
  background: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.email-btn {
  background: #dc3545;
  color: var(--white-color);
}

.email-btn:hover {
  background: #c82333;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

.location-btn {
  background: #28a745;
  color: var(--white-color);
}

.location-btn:hover {
  background: #218838;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

/* Modal Styles */
.modal-content {
  border-radius: var(--border-radius-large);
  border: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
  border: none;
}

.modal-title {
  font-weight: var(--font-weight-semibold);
}

.modal-body {
  padding: 30px;
}

.modal-footer {
  border-top: 1px solid #e0e0e0;
  padding: 20px 30px;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .registration-promo {
    padding: 40px 30px;
  }
  
  .promo-icon {
    width: 70px;
    height: 70px;
  }
  
  .promo-icon i {
    font-size: 32px;
  }
  
  .promo-title {
    font-size: 24px;
  }
  
  .promo-description {
    font-size: 15px;
  }
  
  .contact-info-section {
    padding: 30px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
  }
  
  .contact-icon i {
    font-size: 24px;
  }
  
  .contact-title {
    font-size: 16px;
  }
  
  .contact-value {
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  .registration-promo {
    padding: 30px 20px;
  }
  
  .promo-icon {
    width: 60px;
    height: 60px;
  }
  
  .promo-icon i {
    font-size: 28px;
  }
  
  .promo-title {
    font-size: 22px;
  }
  
  .promo-description {
    font-size: 14px;
  }
  
  .promo-features {
    gap: 10px;
  }
  
  .promo-features .feature-item {
    padding: 8px 12px;
  }
  
  .promo-features .feature-item i {
    font-size: 18px;
  }
  
  .promo-features .feature-item span {
    font-size: 14px;
  }
  
  .contact-info-section {
    padding: 25px;
  }
  
  .contact-info-card {
    padding: 20px 15px;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
  }
  
  .contact-icon i {
    font-size: 20px;
  }
  
  .contact-title {
    font-size: 16px;
  }
  
  .contact-value {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .registration-promo {
    padding: 25px 15px;
  }
  
  .promo-icon {
    width: 50px;
    height: 50px;
  }
  
  .promo-icon i {
    font-size: 24px;
  }
  
  .promo-title {
    font-size: 20px;
  }
  
  .promo-description {
    font-size: 13px;
  }
  
  .promo-features {
    gap: 8px;
  }
  
  .promo-features .feature-item {
    padding: 6px 10px;
  }
  
  .promo-features .feature-item i {
    font-size: 16px;
  }
  
  .promo-features .feature-item span {
    font-size: 13px;
  }
  
  .contact-info-section {
    padding: 20px;
  }
  
  .contact-info-card {
    padding: 15px 10px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-icon i {
    font-size: 18px;
  }
  
  .contact-title {
    font-size: 15px;
  }
  
  .contact-value {
    font-size: 13px;
  }
}

/*---------------------------------------
  SITE 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);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.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;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--secondary-color);
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    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;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

