/* ========================================================= */
/* --- NAV BAR, LINKS, ICONS, & DROPDOWNS --- */
/* ========================================================= */

.navbar-brand img {
  height: 80px;
  margin-left: 60px;
  animation: logoJiggle 0.5s ease-in-out 0.5s 1 forwards;
}

.nav-link {
  color: black !important;
  margin-right: 15px;
  font-weight: 500;
  opacity: 0;
  animation: navSlideDown 0.5s ease-out forwards;
}

/* Nav link staggered delays */
.nav-link:nth-child(1) { animation-delay: 0.8s; }
.nav-link:nth-child(2) { animation-delay: 0.9s; }
.nav-link:nth-child(3) { animation-delay: 1.0s; }
.nav-link:nth-child(4) { animation-delay: 1.1s; }
.nav-link:nth-child(5) { animation-delay: 1.2s; }
.nav-link:nth-child(6) { animation-delay: 1.3s; }
.nav-link:nth-child(7) { animation-delay: 1.4s; }

.nav-link:hover {
  color: #0056b3 !important;
}

/* Icon Buttons (Search, Translate) */
.icon-btn {
  background: none;
  border: none;
  margin-left: 12px;
  font-size: 1.2rem;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
}

.icon-btn:hover {
  color: #007bff;
  transform: scale(1.1);
}

.icon-btn:hover i {
  color: #0056b3;
}

/* Google Translate Widget Container Styles */
/* Google Translate Widget Container Styles */
#google_translate_element {
  position: fixed;
  top: 70px;
  right: 20px;
  z-index: 99999;
  background: white;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: none;
}

#google_translate_element .goog-te-gadget {
  font-size: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

#google_translate_element .goog-te-gadget span {
  font-size: 11px !important;
  display: inline !important;
  color: #555 !important;
}

#google_translate_element .goog-te-gadget span a {
  font-size: 11px !important;
  color: #1a73e8 !important;
  text-decoration: none !important;
}

#google_translate_element .goog-te-gadget span a:hover {
  text-decoration: underline !important;
}

#google_translate_element .goog-te-combo {
  font-size: 13px !important;
  padding: 4px 8px !important;
  border: 1px solid #dadce0 !important;
  border-radius: 4px !important;
  color: #333 !important;
  cursor: pointer !important;
  height: 30px !important;
}

#google_translate_element .goog-te-combo:hover {
  border-color: #1a73e8 !important;
}

@media (max-width: 991.98px) {
  #google_translate_element {
    top: 60px;
    right: 10px;
  }
}
/* #google_translate_element {
  position: absolute;
  top: 80px;
  right: 20px;
  z-index: 9999;
  background-color: white;
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
} */

.goog-te-spinner-pos {
  display: none !important;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
  visibility: hidden !important;
}

/* --- Dropdown Fixes & Mega-Menu Specific Styles --- */
.nav-item.dropdown-hover {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Animation Keyframes (Nav links) */
@keyframes navSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Re-declared staggered delays */
.nav-link:nth-child(1) { animation-delay: 0.1s; }
.nav-link:nth-child(2) { animation-delay: 0.2s; }
.nav-link:nth-child(3) { animation-delay: 0.3s; }
.nav-link:nth-child(4) { animation-delay: 0.4s; }
.nav-link:nth-child(5) { animation-delay: 0.5s; }
.nav-link:nth-child(6) { animation-delay: 0.6s; }
.nav-link:nth-child(7) { animation-delay: 0.7s; }

/* Re-declared .nav-link styles */
.nav-link {
  color: black !important;
  margin-right: 15px;
  font-weight: 400;
  opacity: 1;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0056b3 !important;
}

.navbar .nav-link {
  font-weight: 500;
  color: #222 !important;
  padding: 10px 15px;
  transition: color 0.3s;
}

.navbar .nav-link:hover {
  color: #007bff !important;
}

.dropdown-hover:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* Gallery dropdown links */
.dropdown-menu a {
  text-decoration: none;
  color: #000 !important;
  transition: color 0.3s ease;
}

.dropdown-menu a:hover {
  color: #007bff !important;
  text-decoration: none;
}


/* ========================================================= */
/* --- SCROLL BUTTON STYLES --- */
/* ========================================================= */

#scroll-toggle-btn {
  position: fixed;
  z-index: 1000;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: rgb(19, 17, 17);
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
}

#scroll-toggle-btn:hover {
  background-color: #7e99d3;
  transform: scale(1.1);
}


/* ========================================================= */
/* --- FOOTER STYLES --- */
/* ========================================================= */

:root {
  --footer-bg: #000000;
  --text-light: #ffffff;
}

.site-footer {
  background-color: var(--footer-bg);
  color: var(--text-light);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 350px;
}

.site-footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.9rem;
}

/* Row padding for consistent layout across all pages */
.site-footer .row {
  padding-left: 2rem;
  padding-right: 2rem;
}

.site-footer .row > div {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Custom Padding Classes */
.logo-padding-left {
  padding-left: 0;
}

.footer-padding-right {
  padding-right: 0;
}

/* Headings Style */
.footer-heading {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

/* Tight List Item Spacing */
.list-unstyled li {
  margin-bottom: 0.2rem;
  padding: 0;
}

.contact-list {
  margin-bottom: 0.5rem;
}

/* Column 1: Logo Elements */
.logo-circle {
  width: 30px;
  height: 30px;
  background-color: var(--text-light);
  border-radius: 50%;
  margin-right: 8px;
}

.logo-line {
  width: 2px;
  height: 30px;
  background-color: var(--text-light);
}

.mission-text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: -10px;
  text-align: left;
}

/* Button Style */
.book-meeting-btn {
  color: var(--text-light);
  border-color: var(--text-light);
  background-color: transparent;
  padding: 8px 15px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border-width: 1px;
  margin-top: 0.5rem;
  transition: background-color 0.3s, color 0.3s;
}

.book-meeting-btn:hover {
  color: var(--footer-bg);
  background-color: gray;
}

/* Footer Submenu Toggle Styles */
.footer-link-toggle {
  font-weight: 600;
  cursor: pointer;
  display: block;
}

.footer-submenu {
  margin-left: 15px;
  margin-top: 5px;
  list-style: none;
  padding-left: 0;
}

.footer-submenu a {
  font-size: 0.95rem;
  text-decoration: none;
}


/* ========================================================= */
/* --- RESPONSIVE STYLES (NAVBAR, FOOTER, SCROLL) --- */
/* ========================================================= */

/* Small Desktop (992px to 1200px) */
@media (min-width: 992px) and (max-width: 1200px) {
  .navbar-brand img {
    margin-left: 20px;
    height: 45px;
  }

  .nav-link {
    margin-right: 10px;
    font-size: 0.95rem;
  }

  .icon-btn {
    margin-left: 5px;
    font-size: 1.1rem;
  }

  .dropdown-menu {
    min-width: 350px;
    max-width: 70vw;
    min-height: 300px;
  }
}

/* Desktop Hover Functionality (min-width: 992px) */
@media (min-width: 992px) {
  .dropdown-hover:hover > .dropdown-menu {
    display: block;
  }

  .nav-item.dropdown-hover > .dropdown-menu:not(.show) {
    display: none;
  }

  .dropdown-menu {
    min-width: 500px;
    max-width: 650px;
    min-height: 150px;
    padding: 20px 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .dropdown-menu .row .dropdown-section:not(:first-child) {
    border-left: 1px solid #eee;
  }

  .dropdown-menu-custom-3 {
    min-width: 450px;
    padding: 25px;
    left: unset;
    transform: unset;
    background-color: white;
    border-radius: 12px;
    border: 1px solid #cce0ff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
  }

  .dropdown-hover:hover .dropdown-menu-custom-3 {
    transform: translateY(5px);
    opacity: 1;
  }

  .dropdown-menu-custom-3 .dropdown-section {
    padding: 10px 20px;
    text-align: left;
  }

  .dropdown-menu-custom-3 h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 10px;
    position: relative;
  }

  .dropdown-menu-custom-3 h6::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #000;
    margin-top: 6px;
    border-radius: 2px;
  }

  .dropdown-menu-custom-3 a {
    display: inline-block;
    color: #000;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease-in-out;
  }

  .dropdown-menu-custom-3 a:hover {
    color: #0056b3;
    transform: translateX(3px);
  }

  .dropdown-menu-custom-3 p {
    color: #222;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
  }

  .dropdown-menu.about-us-menu {
    min-width: 420px;
  }

  .dropdown-menu .dropdown-section {
    padding: 0 35px;
    text-align: center;
  }

  .dropdown-menu h6 {
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: capitalize;
    font-size: 1.1rem;
    color: #333;
  }

  .dropdown-menu h6 a {
    font-weight: bold !important;
    color: #333 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
  }

  .dropdown-menu h6 a:hover {
    color: #0056b3 !important;
  }

  /* .dropdown-menu h6 {
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: capitalize;
    font-size: 1.1rem;
    color: #333;
  } */

  .dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
  }

  .dropdown-menu ul li {
    margin-bottom: 2px;
  }

  .dropdown-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    display: block;
    padding: 2px 0;
    line-height: 1.2;
    text-transform: capitalize;
    transition: all 0.3s ease;
  }

  .dropdown-menu ul li a:hover {
    color: #0056b3;
    background-color: #f8f9fa;
    text-decoration: none;
  }
}

/* Mobile Styling (max-width: 991.98px) */
@media (max-width: 991.98px) {

  .navbar-brand img {
    margin-left: 10px;
    height: 40px;
  }

  #google_translate_element {
    top: 60px;
    right: 10px;
  }

  .icon-btn {
    display: inline-block;
    margin: 5px 15px 5px 0;
    font-size: 1.3rem;
  }

  .navbar-collapse:not(.show) {
    display: none !important;
  }

  .navbar-collapse.show {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
  }

  .nav-link {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    padding-left: 20px;
  }

  .navbar-nav {
    margin-top: 5px;
  }

  .dropdown-menu {
    position: static !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 10px 10px 25px !important;
    min-width: auto !important;
    transform: none !important;
    display: none;
  }

  .dropdown-menu.show {
    display: block !important;
  }

  .dropdown-menu .row .dropdown-section:not(:first-child) {
    border-left: none;
    margin-top: 15px;
  }

  .dropdown-menu .dropdown-section {
    padding: 0 10px;
    width: 100%;
    text-align: left;
  }

  .dropdown-menu .row,
  .dropdown-menu-custom-3 .row {
    display: block;
  }

  .dropdown-menu-custom-3 {
    min-width: auto;
    padding: 0;
    border: none;
    box-shadow: none;
    background: #ffffff;
  }

  .dropdown-menu-custom-3 .dropdown-section {
    padding: 8px 0;
  }

  .dropdown-menu a,
  .dropdown-menu-custom-3 a {
    padding: 5px 0;
  }

  .dropdown-hover .dropdown-menu {
    display: none !important;
  }

  .dropdown-hover .dropdown-menu.show {
    display: block !important;
  }

  /* Footer mobile */
  .site-footer .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-footer .row > div {
    margin-bottom: 30px;
  }
}

/* Footer tablet */
@media (min-width: 769px) and (max-width: 991px) {
  .site-footer .row > div {
    margin-bottom: 25px;
  }
}

/* Scroll Button */
@media (min-width: 577px) {
  #scroll-toggle-btn {
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    background-color: hsl(180, 9%, 98%);
  }
}

@media (max-width: 576px) {
  #scroll-toggle-btn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    background-color: hsl(180, 9%, 98%);
    color: #000;
  }
}


/* ========================================================= */
/* --- SEARCH SUGGESTIONS --- */
/* ========================================================= */

.search-suggestions {
  list-style: none;
  margin-top: 10px;
  padding: 0;
  background: #fff;
  border-radius: 6px;
  max-width: 600px;
}

.search-suggestions li {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.search-suggestions li:hover {
  background: #f1f1f1;
}

mark {
  background: yellow;
  padding: 2px;
}