/* ===================================
   Custom Typography & Styles
   =================================== */

:root {
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Inter', sans-serif;
}

/* Base Typography */
body {
  font-family: var(--body-font) !important;
  font-weight: 400;
  line-height: 1.6;
}

/* Headings & Subheadings */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: var(--heading-font);
  font-weight: 800;
}

/* Body Content */
body,
p,
span,
div,
a,
li,
td,
th,
input,
textarea,
select,
.btn,
.form-control,
.form-select {
  font-family: var(--body-font) !important;
}

/* Navigation */
.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
}

.navbar-nav-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.main-header .navbar-nav {
  gap: 1.5rem;
}

/* Cards */
.card-title {
  font-family: var(--heading-font);
  font-weight: 600;
}

/* Footer */
.footer-widget h4 {
  font-family: var(--heading-font);
  font-weight: 600;
}

/* Logo Styles */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 130px;
  height: 103px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.brand-name {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: -0.5px;
}

.brand-subtitle {
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 600;
  color: #6c757d;
  margin-top: 0;
}

.brand-tagline {
  font-family: var(--heading-font);
  font-size: 8px;
  font-weight: 400;
  color: #6c757d;
  margin-top: 2px;
}

/* ===================================
   Custom Utility Classes
   =================================== */

/* Text utilities */
.text-heading {
  font-family: var(--heading-font);
}

.text-body {
  font-family: var(--body-font);
}

/* ===================================
   Header Styles
   =================================== */

/* Top Bar */
.top-bar {
  height: 3px;
  background: #2c3e50;
  width: 100%;
}

.main-header {
  position: relative;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #dee2e6;
}

/* Ensure header doesn't overlap with hero section */
main {
  position: relative;
  z-index: 1;
}

/* Navigation Links */
.main-header .nav-link {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  color: #495057;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.main-header .nav-link:hover,
.main-header .nav-link:focus {
  color: #3173b4;
  background-color: transparent;
  transform: translateY(-1px);
}

.main-header .nav-link.active {
  color: #3173b4;
  background-color: transparent;
  font-weight: 600;
}

/* Get in Touch Button */
.header-cta {
  margin-left: 1.5rem;
}

.btn-contact {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  padding: 0.8rem 1.5rem;
  background: #3173b4;
  border: 1px solid #3173b4;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(49, 115, 180, 0.2);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-contact:hover {
  background: #2563a7;
  border-color: #2563a7;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(49, 115, 180, 0.3);
  text-decoration: none;
}

.btn-contact:focus {
  outline: 2px solid #3173b4;
  outline-offset: 2px;
  color: #ffffff;
}

.btn-contact:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(49, 115, 180, 0.2);
}

/* Mobile Navigation Offcanvas */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  margin-bottom: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.8rem 1rem;
  color: #495057;
  text-decoration: none;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  color: #3173b4;
  background-color: rgba(49, 115, 180, 0.1);
}

.mobile-nav-link.active {
  color: #3173b4;
  background-color: rgba(49, 115, 180, 0.1);
}

.nav-divider {
  height: 1px;
  background-color: #dee2e6;
  margin: 0.5rem 0;
}

.btn-mobile-contact {
  margin-top: 1rem;
  width: 100%;
}

/* ===================================
   Component Overrides
   =================================== */

/* Override any conflicting styles from other CSS files */
body {
  /* Ensure our body font takes precedence */
  font-family: var(--body-font) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* Ensure heading fonts take precedence */
  font-family: var(--heading-font) !important;
}

/* ===================================
   Legacy Utilities (Existing CSS)
   =================================== */

a {
  background-color: transparent;
  color: #3173b4;
}

a.hover {
  color: #3173b4;
}

body input[type=submit],
body button[type=submit] {
  background: #3173b4;
}

.active {
  color: #1278df !important;
}

.modal-popup-inner .form_content p i {
  color: #3173b4;
}

.modal_popup .modal-popup-inner .close-modal {
  background: #3173b4;
}

.preloader-wrap {
  background-color: #fff;
}

.fixed-header .get_sticky_header {
  padding: 0px;
}

.top_bar .top_inner .common_css .contntent i {
  color: #f5f5f5;
}

.floating_menu_box ul .close:hover {
  background: #3173b4;
}

.floating_menu_box ul .close {
  background: #3173b4;
}

.floating_menu_box ul li.active a,
.floating_menu_box ul li:hover a {
  background: #3173b4;
}

.header,
.default_sickty_heaad {
  background: #ffffff;
  padding: 0px;
}

.header .header_content_collapse .navigation_menu .navbar_nav li a.nav-link:hover,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li a.nav-link:hover {
  color: #3173b4;
}

.header .header_content_collapse .navigation_menu .navbar_nav li.active a.nav-link,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li.active a.nav-link {
  color: #3173b4 !important;
}

.header .header_logo_box img,
.default_sickty_heaad .header_logo_box img {
  display: block;
  width: 130px;
  height: auto;
  margin-bottom: 0px;
}

.slider.style_four .slide-item-content .slider_content h6 {
  border: 2px solid #3173b4;
}

.theme-btn.one,
.theme-btn.three,
.theme-btn.five {
  background: #3173b4;
}

.title_all_box.style_one .title_sections .before_title,
.title_all_box.style_two .title_sections .before_title {
  color: #3173b4;
}

.icon_box_all.style_one .icon_content .icon span {
  color: #3173b4;
}

.icon_box_all.style_three .icon_content .icon span {
  color: #3173b4;
}

.service_post.style_one .service_content .icon_box {
  background: #3173b4;
}

.service_post.style_one .service_content a.read_more {
  background: #3173b4;
}

.team_box.style_one .team_box_outer .about_member .share_media ul {
  background: #3173b4;
}

.bg_dark_1 {
  background: #3173b4 !important;
}

.footer_widgets .fo_wid_title:before {
  background: #3173b4;
}

.social_media_v_one ul li a:hover {
  background-color: #3173b4;
}

/* .slider.style_four .slide-item-content .slider_content {
  position: relative;
  padding: 150px 0px 100px;
  z-index: 11;
} */
/* Home */
.slider.style_four .slide-item-content .slider_content h1 {
  font-size: 50px;
  line-height: 74px;
}

.team_box.style_one .team_box_outer .about_member .authour_details span {
  text-transform: none;
  margin-top: 10px;
}

/* .title_all_box.style_two .title_sections p {
  text-align: justify;
} */


/* About */
.tabs_all_box.type_one .tabs_header ul li a.active {
  color: #3173b4;
}

.tabs_all_box.type_one .tabs_header ul li:hover a {
  color: #3173b4;
}

.tabs_all_box.type_one .tabs_header .toll_free {
  background: #3173b4;
}

.icon_box_all.style_three .icon_content .txt_content ul li::before {
  border: 2px solid #000;
}

/* Contact */
.contact_box_content.style_one .contact_box_inner.icon_yes .icon_bx {
  background: #3173b4;
}

body button[type=submit] {
  background: #3173b4;
}

.social_media_v_one.style_two ul li a {
  color: #808080;
}

/* Service */
.service_post.style_four h2 a {
  position: relative;
  font-size: 20px;
  line-height: 30px;
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--heading-dark);
  font-family: var(--creote-family-one);
  margin-top: 0;
}

/* Weather */
/* Basic Styling for the Full Page */
.weather-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #3173b4, #6f4075);
  padding: 70px;
}

.weather-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
}

@media (min-width: 640px) {
  .weather-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .weather-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.weather-card {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.weather-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}

.location-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
}

.country-flag {
  padding: 5px 5px 10px 0px;
}

.time {
  font-size: 2rem;
  font-family: monospace;
  color: white;
  margin-bottom: 15px;
}

.weather-details {
  color: white;
}

.weather-details p {
  font-size: 1.25rem;
}

.weather-details p img {
  width: 50px;
}

.weather-unavailable {
  color: white;
  font-size: 1.25rem;
}

.loading-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #f1f5f9;
}

.loading-text {
  font-size: 1.5rem;
  color: #555555;
}

.modal_popup .modal-popup-inner .about_company_inner {
  position: relative;
  border-radius: 10px;
  padding: 20px 30px 30px 30px;
  overflow: hidden;
}

.modal_popup .modal-popup-inner .about_company_inner .text {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--border-color-dark);
}

.slider.style_four .slide-item-content .slider_content p {
  color: #fff;
  font-weight: 600;
}

.image_boxes.style_seven .experience {
  background: #3173b4;
}

.image_boxes.style_seven .video_inner a {
  background: #3173b4;
}

.icon_box_all.style_three {
  text-align: center;
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.icon_box_all.style_five .icon_content h2 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #053888;
  margin-bottom: 10px;
}

.icon_box_all.style_five:hover .icon_content {
  border-color: #053888;
  background: #f5f5f5;
}

.image_boxes.style_seven .experience::before {
  position: absolute;
  content: "";
  border-left: 50px solid transparent;
  border-top: 50px solid transparent;
  border-right: 50px solid #3173b4;
  border-bottom: 50px solid transparent;
  left: -50px;
  z-index: -1;
  opacity: 0.9;
}

.page_header_default::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--primary-color-two);
  opacity: 0.7;
  z-index: 1;
}

.image_boxes.style_seven .experience {
  position: absolute;
  padding: 20px;
  top: 20px;
  left: -10px;
}

/* Responsive */
@media (max-width: 550px) {
  .theme-btn.five {
    height: 46px;
    line-height: 48px !important;
    min-height: 46px;
    font-size: 12px;
    margin-bottom: 20px;
    padding: 0px 25px;
    min-width: auto;
  }
}


/* Admin Login page css */
/* Login.css */

.login {
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.login-box {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.login-header {
  margin-bottom: 1.5rem;
}

.login-logo {
  width: 100px;
}

h2 {
  color: #333;
  font-size: 1.5rem;
}

.input-group {
  margin-bottom: 1rem;
  text-align: left;
}

.input-group label {
  display: block;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.3rem;
}

.input-group input {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

/* Password Field */
.password-group {
  position: relative;
}

.password-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}

.password-wrapper input {
  flex: 1;
  padding: 0.7rem;
  border: none;
  font-size: 1rem;
  outline: none;
}

.toggle-password {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 10px;
  display: flex;
  align-items: center;
}

.toggle-password svg {
  color: #555;
}

.toggle-password:hover svg {
  color: #007bff;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 5px;
}

.forgot-password {
  color: #007bff;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

.login-button {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.login-button:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 480px) {
  .login-box {
    padding: 1.5rem;
    margin: 1.5rem;
  }

  .input-group input {
    padding: 0.6rem;
  }

  .login-button {
    padding: 0.7rem;
  }
}

.error-message {
  color: #d32f2f;
  /* Red for errors */
  font-size: 0.85rem;
  margin-top: 5px;
  text-align: left;
}



/* Admin Layout css */


.admin-container {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: 250px;
  background-color: #2c3e50;
  color: white;
  padding: 15px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
}

.sidebar .sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar .sidebar-logo img {
  max-width: 100px;
  height: auto;
}

.sidebar .close-menu {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.sidebar nav ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.sidebar nav ul li {
  margin-bottom: 5px;
}

.sidebar nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 10px;
  transition: background 0.3s;
}

.sidebar nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.active {
  background-color: rgba(255, 255, 255, 0.67);
  border-radius: 5px;
}

.slider {
  background: #F0F3F9;
}

.main-content {
  flex-grow: 1;
  margin-left: 250px;
  transition: margin-left 0.3s ease-in-out;
  width: calc(100% - 250px);
}

.content {
  padding: 15px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px 10px;
  background-color: #34495e;
  color: #fff;
}

.admin-header h3 {
  color: #fff;
}

.menu-toggle {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }
}


/* Contact List css */
.contact {
  padding: 20px;
}

.table-container {
  overflow-x: auto;
  margin-top: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  white-space: nowrap;
}

th {
  background-color: #f4f4f4;
  font-weight: bold;
}

tbody tr:hover {
  background-color: #f1f1f1;
}

/* Delete Button */
.delete-btn {
  padding: 6px 12px;
  border: none;
  background-color: #d9534f;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.delete-btn:hover {
  background-color: #c9302c;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.pagination button {
  padding: 8px 12px;
  border: none;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.pagination button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.pagination button:hover:not(:disabled) {
  background-color: #0056b3;
}

.pagination span {
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .logo-icon {
    width: 110px;
    height: 87px;
  }
}

@media (max-width: 992px) {
  .logo-icon {
    width: 90px;
    height: 71px;
  }
}

@media (max-width: 768px) {
  .logo-icon {
    width: 75px;
    height: 60px;
  }

  th,
  td {
    padding: 8px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .logo-icon {
    width: 60px;
    height: 48px;
  }

  .main-header .navbar {
    padding: 0.5rem 0;
  }

  .logo-container {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    width: 80px;
    height: 80px;
  }

  th,
  td {
    display: block;
    text-align: right;
    padding: 10px;
    position: relative;
  }

  th::before {
    content: attr(data-label);
    font-weight: bold;
    text-align: left;
    float: left;
  }

  td::before {
    content: attr(data-label);
    font-weight: bold;
    text-align: left;
    float: left;
  }

}

.message-cell {
  cursor: pointer;
  text-decoration: underline;
  color: rgb(95, 95, 232);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.modal-content p {
  margin-bottom: 20px;
}

.modal-content button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
}

.modal-content button:hover {
  background: #0056b3;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.hero-swiper {
  height: 100%;
  width: 100%;
}

.swiper-slide {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-wrapper {
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.swiper-caption {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
  text-align: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 30px;
}

.swiper-caption h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.swiper-caption p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.swiper-caption .btn-primary {
  background-color: #0056b3;
  border-color: #0056b3;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.swiper-caption .btn-primary:hover {
  background-color: #004494;
  border-color: #004494;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

/* Swiper Navigation */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  opacity: 0.8;
  transition: all 0.3s ease;
  color: #000;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  opacity: 1;
  background-color: #ffffff;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 24px;
  color: #000;
}

/* Swiper Pagination */
.hero-swiper .swiper-pagination {
  bottom: 30px;
}

.hero-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
  background-color: #ffffff;
  transform: scale(1.2);
}

/* Reset Password */

/* ResetPassword.css */

.container-reset {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4;
}

.box {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.password-wrapper1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.password-input {
  position: relative;
}

.password-input input {
  padding-right: 40px;
  /* Space for the eye icon */
}

.toggle-password1 {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.reset-btn {
  width: 100%;
  padding: 10px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.reset-btn:hover {
  background: #0056b3;
}

.reset-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

@media (max-width: 500px) {
  .box {
    width: 90%;
    padding: 1.5rem;
  }

  .password-input input {
    font-size: 14px;
    padding: 8px;
  }

  .reset-btn {
    font-size: 14px;
    padding: 8px;
  }
}

.logout-container {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  text-align: center;
}

.admin-footer {
  text-align: left;
  padding: 0px 10px 0px;
}

/* Footer Widget Title Underlines */
.footer-widget h5 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.footer-widget h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #0056b3;
  border-radius: 2px;
}

.footer-widget h5.text-white {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Responsive Hero Slider */
.hero-section {
  position: relative;
  height: 75vh;
  min-height: 450px;
  max-height: 700px;
  width: 100%;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  max-width: 860px;
  padding: 0 30px;
  width: 100%;
  margin: 0;
}

.hero-text.text-center {
  margin: 0 auto;
}

.hero-text.text-end {
  margin-left: auto;
  margin-right: 0;
}

.hero-text.text-start {
  margin-left: 0;
  margin-right: auto;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out;
}

.hero-title-subline {
  display: inline-block;
  white-space: nowrap;
}

.hero-description {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out 0.2s;
}

.hero-buttons {
  animation: fadeInUp 1s ease-out 0.4s;
}

.btn-hero {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  padding: 0.8rem 1.5rem;
  background: #3173b4;
  border: 1px solid #3173b4;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(49, 115, 180, 0.2);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-hero:hover {
  background: #2563a7;
  border-color: #2563a7;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(49, 115, 180, 0.3);
  text-decoration: none;
}

.btn-hero:focus {
  outline: 2px solid #3173b4;
  outline-offset: 2px;
  color: #ffffff;
}

.btn-hero:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(49, 115, 180, 0.2);
}

.about-hero-section {
  padding: 80px 0 60px;
  background: #f0f3f9;
}

.about-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
  background: transparent;
  border-radius: 25px;
  overflow: hidden;
  align-items: center;
}

.about-hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.about-hero-image img {
  width: 96%;
  max-width: 96%;
  aspect-ratio: 4 / 5;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: 25px;
  display: block;
}

.about-hero-content {
  padding: 55px 45px;
}

.about-hero-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #3173b4;
  font-weight: 700;
}

.about-hero-title {
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #282f3b;
}

.about-hero-text {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 32px;
}

.about-hero-card .btn-hero {
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
}

/* Expertise Section */
.expertise-section {
  padding: 80px 0 60px;
  background: #ffffff;
}

.expertise-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 30px;
}

.expertise-title-group {
  flex: 1;
}

.expertise-title {
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #282f3b;
}

.expertise-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #4b5563;
  max-width: 600px;
}

.btn-expertise {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  padding: 0.8rem 1.5rem;
  background: #3173b4;
  border: 1px solid #3173b4;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(49, 115, 180, 0.2);
  display: inline-block;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-expertise:hover {
  background: #2563a7;
  border-color: #2563a7;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(49, 115, 180, 0.3);
  text-decoration: none;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.expertise-card {
  position: relative;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  group: "card";
}

.expertise-card-image {
  height: 100%;
  overflow: hidden;
}

.expertise-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.expertise-card:hover .expertise-card-image img {
  transform: scale(1.08);
}

.expertise-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  padding: 24px;
  color: #ffffff;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-end;
  min-height: 140px;
}

.expertise-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
}

/* Global Offices Section */
.offices-section {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #1f3d7a 0%, #5b67a7 60%, #7c68b8 100%);
}

.offices-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 50px;
  color: #ffffff;
  text-align: center;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.office-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 28px;
  color: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.office-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.office-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.office-flag {
  font-size: 1.8rem;
}

.office-location {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.office-time {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  font-family: 'Courier New', monospace;
}

.office-weather {
  font-size: 1.1rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.weather-icon {
  font-size: 1.3rem;
}

.office-condition {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.95;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
  pointer-events: none;
}

.nav-btn {
  background-color: transparent;
  /* background-color: rgba(255, 255, 255, 0.9); */
  border: 1px solid #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  color: #000;
  font-size: 18px;
}

.nav-btn:hover {
  background-color: #3173b4;
  opacity: 1;
}

/* Slider Pagination */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.dot {
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
}

.dot.active {
  background-color: #ffffff;
  transform: scale(1.2);
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-section {
    height: 70vh;
    min-height: 400px;
    max-height: 650px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .hero-section {
    height: 65vh;
    min-height: 380px;
    max-height: 600px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-title-subline {
    white-space: normal;
  }

  .hero-description {
    font-size: 1rem;
  }

  .nav-btn {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .about-hero-card {
    grid-template-columns: 1fr;
  }

  .about-hero-content {
    padding: 40px 30px;
  }

  .about-hero-image {
    aspect-ratio: 4 / 5;
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .btn-hero {
    padding: 10px 25px;
    font-size: 1rem;
  }

  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }

  .slider-nav {
    padding: 0 15px;
  }

  .slider-dots {
    bottom: 20px;
    gap: 10px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .hero-text {
    max-width: 100%;
    padding: 0 30px;
  }

  .about-hero-content {
    padding: 35px 25px;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .expertise-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-card {
    height: 250px;
  }

  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 0.8rem;
  }

  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .btn-hero {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .slider-nav {
    padding: 0 10px;
  }

  .hero-text {
    padding: 0 15px;
  }

  .expertise-title {
    font-size: 1.75rem;
  }

  .expertise-description {
    font-size: 0.9rem;
  }

  .btn-expertise {
    font-size: 14px;
    padding: 0.65rem 1.2rem;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-card {
    height: 200px;
  }

  .offices-title {
    font-size: 1.75rem;
  }

  .offices-grid {
    grid-template-columns: 1fr;
  }

  .office-time {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .btn-hero {
    padding: 6px 18px;
    font-size: 0.85rem;
  }

  .slider-dots {
    bottom: 15px;
    gap: 8px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .nav-btn {
    width: 35px;
    height: 35px;
    font-size: 10px;
  }

  .offices-section {
    padding: 60px 0 40px;
  }

  .offices-title {
    font-size: 1.5rem;
    margin-bottom: 35px;
  }

  .office-card {
    padding: 20px;
  }

  .office-time {
    font-size: 1.25rem;
  }

  .office-location {
    font-size: 1rem;
  }
}

/* ===================================
   Breadcrumb Styles
   =================================== */

.breadcrumb-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.breadcrumb-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumbs {
  position: relative;
  display: inline-block;
}

.breadcrumbs ul {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.breadcrumbs ul li {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  color: #fff;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

.breadcrumbs ul li a {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.breadcrumbs ul li a:hover {
  color: #fff;
}

.breadcrumbs ul li:not(:last-child)::after {
  content: "\f105";
  font-family: "FontAwesome";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.breadcrumbs ul li:last-child {
  margin-right: 0;
  color: #fff;
  font-weight: 600;
}

/* ===================================
   About Page Styles
   =================================== */

.about-content-section {
  background: #f8f9fa;
  min-height: 60vh;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
}

.about-page-content .lead {
  font-size: 1.25rem;
  color: #5a6c7d;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-page-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.about-feature {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.about-feature h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.about-feature p {
  margin-bottom: 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===================================
   About Page Responsive Styles
   =================================== */

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .about-page-content .lead {
    font-size: 1.1rem;
  }

  .about-feature {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .page-title {
    font-size: 1.75rem;
  }

  .about-page-content .lead {
    font-size: 1rem;
  }

  .about-page-content p {
    font-size: 1rem;
  }

  .about-feature {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }

  .about-feature h3 {
    font-size: 1.25rem;
  }
}

/* ===================================
   Breadcrumb Responsive Styles
   =================================== */

@media (max-width: 992px) {
  .breadcrumb-title {
    font-size: 2.8rem;
    letter-spacing: 1.5px;
  }

  .breadcrumb-section {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .breadcrumb-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
  }

  .breadcrumb-section {
    min-height: 350px;
  }

  .breadcrumbs ul li {
    font-size: 12px;
    margin-right: 6px;
  }

  .breadcrumbs ul li a {
    font-size: 12px;
  }

  .breadcrumbs ul li:not(:last-child)::after {
    margin-left: 6px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .breadcrumb-title {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
  }

  .breadcrumb-section {
    min-height: 300px;
  }

  .breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .breadcrumbs ul li {
    display: inline-flex;
    font-size: 11px;
    margin-right: 5px;
    margin-bottom: 5px;
  }

  .breadcrumbs ul li a {
    font-size: 11px;
  }

  .breadcrumbs ul li:not(:last-child)::after {
    margin-left: 5px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .breadcrumb-title {
    font-size: 1.5rem;
    letter-spacing: 0;
  }

  .breadcrumb-section {
    min-height: 280px;
  }

  .breadcrumbs ul li {
    font-size: 10px;
    margin-right: 4px;
  }

  .breadcrumbs ul li a {
    font-size: 10px;
  }

  .breadcrumbs ul li:not(:last-child)::after {
    margin-left: 4px;
    font-size: 10px;
  }
}

/* ===================================
   Defining Standard Section Styles
   =================================== */

.standard-section {
  background: #f0f4f8;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 3rem;
  font-family: var(--heading-font);
  position: relative;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}

/* .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #007bff;
  border-radius: 2px;
} */

.standard-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 123, 255, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.standard-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 123, 255, 0.2);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #0056b3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.icon-wrapper::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #0056b3);
  opacity: 0.1;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.standard-card:hover .icon-wrapper {
  transform: scale(1.1);
}

.standard-card:hover .icon-wrapper::before {
  opacity: 0.2;
}

.icon-wrapper i {
  color: #fff;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.standard-card:hover .icon-wrapper i {
  transform: scale(1.1);
}

.standard-card .card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  transition: color 0.3s ease;
}

.standard-card:hover .card-title {
  color: #282f3b;
}

.standard-card .card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #6c757d;
  margin-bottom: 0;
  flex-grow: 1;
}

/* ===================================
   Defining Standard Responsive Styles
   =================================== */

@media (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }

  .standard-card {
    padding: 1.8rem;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .icon-wrapper i {
    font-size: 1.8rem;
  }

  .standard-card .card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .standard-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 1.2rem;
  }

  .icon-wrapper i {
    font-size: 1.5rem;
  }

  .standard-card .card-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .standard-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
  }

  .section-title::after {
    width: 50px;
    height: 2px;
    bottom: -12px;
  }

  .standard-card {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }

  .icon-wrapper i {
    font-size: 1.3rem;
  }

  .standard-card .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }

  .standard-card .card-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }

  .standard-card {
    padding: 1rem;
  }

  .icon-wrapper {
    width: 45px;
    height: 45px;
  }

  .icon-wrapper i {
    font-size: 1.2rem;
  }

  .standard-card .card-title {
    font-size: 1rem;
  }

  .standard-card .card-text {
    font-size: 0.85rem;
  }
}

/* ===================================
   Navigation Dropdown Styles
   =================================== */

/* Desktop Dropdown Styles */
.navbar-nav .nav-item.dropdown {
  position: relative;
}

.navbar-nav .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.3s ease;
}

.navbar-nav .dropdown-toggle:hover {
  color: #007bff;
}

.navbar-nav .dropdown-toggle i {
  transition: transform 0.3s ease;
  font-size: 0.75rem;
}

.navbar-nav .dropdown-toggle:hover i {
  transform: rotate(180deg);
}

.navbar-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-nav .dropdown-menu .dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-family: var(--body-font);
}

.navbar-nav .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
  background: #f8f9fa;
  color: #007bff;
  padding-left: 1.25rem;
}

.navbar-nav .dropdown-menu .dropdown-item:first-child:hover {
  border-radius: 8px 8px 0 0;
}

.navbar-nav .dropdown-menu .dropdown-item:last-child:hover {
  border-radius: 0 0 8px 8px;
}

/* Mobile Submenu Styles */
.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border-left: 3px solid #007bff;
}

.mobile-submenu.collapse {
  transition: height 0.3s ease;
  overflow: hidden;
}

.mobile-submenu.collapsing {
  height: 0 !important;
  overflow: hidden;
}

.mobile-submenu.show {
  height: auto;
  overflow: visible;
}

.mobile-nav-item:has(.mobile-submenu) .mobile-nav-link {
  font-weight: 600;
  color: #3173b4;
}

.mobile-nav-item:has(.mobile-submenu) .mobile-nav-link::after {
  content: '+';
  margin-left: 0.5rem;
  font-size: 0.8rem;
}

.mobile-nav-item:has(.mobile-submenu):hover .mobile-submenu {
  display: block;
}

.mobile-submenu-link {
  display: block;
  padding: 0.5rem 1rem;
  /* color: rgba(255,255,255,0.8); */
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--body-font);
}

.mobile-submenu-link:last-child {
  border-bottom: none;
}

.mobile-submenu-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #3173b4;
  padding-left: 1.25rem;
}

/* Responsive Dropdown Styles */
@media (max-width: 992px) {
  .navbar-nav .dropdown-menu {
    min-width: 250px;
  }

  .navbar-nav .dropdown-menu .dropdown-item {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .navbar-nav .dropdown-menu {
    min-width: 220px;
  }

  .navbar-nav .dropdown-menu .dropdown-item {
    padding: 0.5rem 0.7rem;
    font-size: 0.8rem;
  }

  .mobile-submenu {
    margin: 0.4rem 0 0 0.8rem;
  }

  .mobile-submenu-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* ===================================
   Accessibility Improvements
   =================================== */

/* Mobile Submenu Keyboard Navigation */
.mobile-submenu-link:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

.mobile-submenu-link:focus-visible {
  background: rgba(0, 123, 255, 0.1);
  color: #fff;
}

/* Enhanced Mobile Submenu Styling */
.mobile-submenu {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 123, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-submenu-link {
  font-weight: 500;
  border-radius: 4px;
  margin-bottom: 2px;
  transition: all 0.2s ease;
}

/* Mobile Submenu Item Hover States */
.mobile-submenu-link:hover {
  background: #007bff;
  color: #fff;
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.mobile-submenu-link:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

/* Mobile Submenu Active State */
.mobile-submenu-link.active {
  background: #007bff;
  color: #fff;
  font-weight: 600;
}

/* ===================================
   AML/CFT Compliance Page Styles
   =================================== */

.aml-compliance-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.compliance-content {
  text-align: center;
}

.compliance-overview {
  margin-bottom: 4rem;
}

.overview-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.overview-card:hover .card-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.card-icon i {
  color: #fff;
  font-size: 1.8rem;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6c757d;
  margin: 0;
  font-family: var(--body-font);
  flex-grow: 1;
}

.card-footer {
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.learn-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: #667eea;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.learn-more:hover {
  color: #764ba2;
  transform: translateX(5px);
}

.learn-more i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.learn-more:hover i {
  transform: translateX(3px);
}

.compliance-services {
  margin-bottom: 4rem;
}

.subsection-title {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 3rem;
  font-family: var(--heading-font);
  position: relative;
}

.subsection-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #007bff;
  border-radius: 2px;
}

.service-item {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  text-align: left;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-item-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.service-item-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 0;
  font-family: var(--body-font);
}

.compliance-benefits {
  margin-bottom: 3rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.benefit-icon i {
  font-size: 1.5rem;
}

.benefit-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.benefit-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 0;
  font-family: var(--body-font);
}

/* AML/CFT Compliance Responsive Styles */
@media (max-width: 768px) {
  .aml-compliance-section {
    padding: 60px 0;
  }

  .overview-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.2rem;
  }

  .card-icon i {
    font-size: 1.5rem;
  }

  .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .card-description {
    font-size: 0.9rem;
  }

  .subsection-title {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }

  .service-item {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .service-item-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .service-item-description {
    font-size: 0.85rem;
  }

  .benefit-item {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .benefit-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .benefit-title {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .benefit-description {
    font-size: 0.85rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .aml-compliance-section {
    padding: 40px 0;
  }

  .overview-card {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }

  .card-icon i {
    font-size: 1.3rem;
  }

  .card-title {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .card-description {
    font-size: 0.85rem;
  }

  .subsection-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .service-item {
    padding: 1rem;
    margin-bottom: 1.25rem;
  }

  .service-item-title {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .service-item-description {
    font-size: 0.8rem;
  }

  .benefit-item {
    padding: 1rem;
    margin-bottom: 1.25rem;
  }

  .benefit-icon {
    margin-bottom: 0.8rem;
  }

  .benefit-icon i {
    font-size: 1.3rem;
  }

  .benefit-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .benefit-description {
    font-size: 0.8rem;
  }
}

/* Services */
.service-card {
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  border-radius: 10px;
}

.service-card:hover {
  border: 3px solid #2D3888;
  transition: all 0.3s ease-out;
}

.service-index {
  font-size: 2.8rem;
  font-weight: 800;
  color: #e3e9f3;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2D3888;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.section-description {
  font-size: 1rem;
  color: #737373;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Team Section Styles */
.team-section {
  background: #f0f3f9;
  padding: 80px 0;
}

.team-content {
  /* max-width: 800px; */
  margin: 0 auto;
}

.team-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.team-overlay {
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), transparent);
  transition: all 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.team-card:hover .team-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.8), transparent);
}

.team-content {
  color: #fff;
  text-align: left;
  position: relative;
  z-index: 2;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
  color: #fff;
}

.team-qualifications {
  font-size: 0.7rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
  font-family: var(--body-font);
  letter-spacing: 1px;
}

.team-message {
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
  font-family: var(--body-font);
  color: rgba(255, 255, 255, 0.9);
}

/* Social Media Links */
.social-links {
  text-align: left;
}

.social-links h4 {
  color: #2D3888;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #b9bec4;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-icon:hover {
  background: #3173B4;
  color: #fff;
  transform: translateY(-3px);
  text-decoration: none;
}

.social-icon i {
  color: #fff;
}

/* Map Section Styles */
.map-section {
  padding: 80px 0;
  margin: 0;
  background: #f8f9fa;
}

.map-container {
  width: 100%;
  overflow: hidden;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  background: #e9ecef;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Navigation Active States */
.navbar-nav .nav-link.active,
.mobile-nav-link.active {
  color: #3173B4 !important;
  font-weight: 600;
  position: relative;
}

.navbar-nav .nav-link.active::after,
.mobile-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #3173B4;
  border-radius: 1px;
}

/* Dropdown active states */
.dropdown-menu .dropdown-item.active,
.mobile-submenu-link.active {
  color: #3173B4 !important;
  font-weight: 600;
  background-color: rgba(49, 115, 180, 0.1);
}

.dropdown-toggle.active,
.mobile-dropdown-toggle.active {
  color: #3173B4 !important;
  font-weight: 600;
}

/* Map Section Responsive Styles */
@media (max-width: 768px) {
  .map-wrapper {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .map-wrapper {
    height: 300px;
  }
}

/* Team Section Responsive Styles */
@media (max-width: 768px) {
  .team-section {
    padding: 60px 0;
  }

  .team-card {
    min-height: 350px !important;
  }

  .team-overlay {
    padding: 1.5rem;
  }

  .team-name {
    font-size: 1.3rem;
  }

  .team-qualifications {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .team-message {
    font-size: 0.9rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .social-links h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .team-section {
    padding: 40px 0;
  }

  .team-card {
    min-height: 300px !important;
  }

  .team-overlay {
    padding: 1.2rem;
  }

  .team-name {
    font-size: 1.2rem;
  }

  .team-qualifications {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
  }

  .team-message {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .social-links h4 {
    font-size: 1rem;
  }
}

/* ===================================
   Get In Touch Slide-down Modal Styles
   =================================== */

/* Modal Backdrop Overlay */
.touch-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.touch-modal-backdrop.show {
  opacity: 1;
  visibility: visible;
}

/* Modal Card Container */
.touch-modal-container {
  width: 92%;
  max-width: 1100px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  display: flex;
  flex-direction: column;
}

.touch-modal-backdrop.show .touch-modal-container {
  transform: translateY(0);
  opacity: 1;
}

/* Left & Right Columns */
.touch-modal-form-col {
  background: #ffffff;
  max-height: 90vh;
  overflow-y: auto;
}

.touch-modal-info-col {
  background: #f8f9fa;
  border-left: 1px solid #eef1f5;
  max-height: 90vh;
  overflow-y: auto;
}

/* Form Styles */
.touch-modal-form-col .form-label {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 6px;
  text-transform: capitalize;
}

.touch-modal-form-col .form-control {
  border: 1px solid #ced4da;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 15px;
  color: #495057;
  background-color: #ffffff;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.touch-modal-form-col .form-control:focus {
  border-color: #3173b4;
  box-shadow: 0 0 0 0.2rem rgba(49, 115, 180, 0.15);
  outline: 0;
}

.btn-modal-send {
  background-color: #3173b4;
  color: #ffffff;
  border: none;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 36px;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-modal-send:hover {
  background-color: #2563a7;
  transform: translateY(-1px);
}

/* Close Button styling */
.touch-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #3173b4;
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.touch-modal-close:hover {
  background: #2563a7;
  transform: scale(1.08);
}

/* Modal Right Column Content Typography */
.modal-desc-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
}

.modal-footer-text p {
  font-size: 12px;
  color: #718096;
  margin: 0;
}

.modal-footer-text a {
  color: #3173b4;
  text-decoration: none;
  font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
  .touch-modal-container {
    max-height: 95vh;
    overflow-y: auto;
  }

  .touch-modal-info-col {
    border-left: none;
    border-top: 1px solid #eef1f5;
  }

  .touch-modal-form-col,
  .touch-modal-info-col {
    padding: 30px !important;
  }
}

/* ===================================
   Site Preloader
   =================================== */

.site-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-gif {
  width: 500px;
  height: auto;
}