/* bootstrap strat */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--sec-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  /* all: unset; */
  font-weight: unset;
  line-height: inherit;
}

button {
  outline: none;
  background: none;
  background-color: none;
  border: none;
  color: inherit;
  font-size: inherit;
  transition: all 0.3s ease-in-out;
}

body {
	  line-height:1.2 !important;
  }

input:hover,
input:focus,
textarea:hover,
textarea:focus,
input,
textarea {
  outline: none;
  /* border: none; */
}

dl,
ol,
ul {
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 0;
}

p {
  margin-bottom: 0;
}

a:hover {
  text-decoration: none !important;
}

a {
  text-decoration: none ;
}

.upper {
  text-transform: uppercase;
}

.mt-50px {
  margin-top: 50px;
}

.mx-80px {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mx-20px {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mb-50px {
  margin-bottom: 50px;
}

.mb-80px {
  margin-bottom: 80px;
}

.mb-20px {
  margin-bottom: 20px;
}

.px-15px {
  padding-left: 15px;
  padding-right: 15px;

}



p a:visited {
  color: unset;
}

.banner-title {
  font-size: 80px;
  color: var(--p-color);
}

a:focus {
  outline: none !important;
}

.w-80 {
  width: 80%;
}

.w-60 {
  width: 60%;

}

.align-center {
  align-items: center;
}

.img-wp img {
  width: 100%;
}

.img-wp {
  width: 100%;

}

.mt-80px {
  margin-top: 80px;
}

.mt-30px {
  margin-top: 30px;
}

.mt-60px {
  margin-top: 60px;
}

.mb-30px {
  margin-bottom: 30px;
}

.pb-10px {
  padding-bottom: 10px;
}

.pb-20px {
  padding-bottom: 20px;
}

img {
  height: auto;
}

/* bootstrap end */

/* fonts */


@font-face {
  font-family: 'tenor-reg';
  src: url('../font/tenorite/tenorite.ttf');
}



:root {
  --reg: 'tenor-reg', sans-serif;
  --p-color: #fff;
  --sec-color:#184ba1;
  --gray: #555555;
}


html,
body {
  font-family: var(--reg);
  max-width: 100%;
  overflow-x: hidden;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  padding-right: 0 !important;
	line-height:1.2 !important;
}

.fixed-top {
  padding-right: 0 !important;
}

.site-header {
    z-index: 9999;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
}

/* LOGO STYLING */
.header-logo img {
    max-height: 60px;
    height: auto;
    width: auto;
}

.phone-icon {
    font-size: clamp(16px,25px,35px);
    color: #114ebd; 
    margin-right: 8px;
}

.ph_details a{
  color: #184ba1;
  font-size: clamp(14px, 17px, 20px);
}
.ph_details a:hover{
  color: #021f52 !important;
}

/* PHONE LINKS */
.header-phone a {
    font-size: 14px;
    font-weight: 500;
    color: #114ebd; /* Your blue color */
}

.header-phone a:hover {
    text-decoration: underline;
    color: #0d3b8c;
}

/* NAVBAR MENU (DESKTOP) */
.site-header .navbar-nav .nav-link {
    color: #114ebd;
    font-size: 13px;
    padding: 8px 12px;
    transition: color 0.2s ease;
}

.site-header .navbar-nav .nav-link:hover {
    color: #0d3b8c;
    text-decoration: underline;
}

/* MOBILE TOGGLER ICON */
.navbar-toggler {
    font-size: 1.25rem;
    color: #114ebd;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* MOBILE MENU */
#mobileMenu .nav-link {
    padding: 10px;
    border-bottom: 1px solid #eee;
    color: #114ebd;
}

#mobileMenu .nav-link:hover {
    background-color: #f7f7f7;
}

/* OPTIONAL: Center logo properly when it's smaller */
.header-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-hamburger {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Align bars to the right */
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
}

.custom-hamburger .bar {
  height: 3px;
  background-color: #1e40af; /* Blue color */
  border-radius: 2px;
}

.custom-hamburger .bar.top {
  width: 40%;
}

.custom-hamburger .bar.middle {
  width: 100%;
}

.custom-hamburger .bar.bottom {
  width: 70%;
}

.custom-close-btn {
  background-color: #184ba1;
  border: none;
  border-radius: 6px;
  color: white;
  padding: 0.5rem 0.7rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main menu link with submenu */
.mobile-menu li.menu-item-has-children > a,.mobile-menu li.menu-item-has-children > a:visited {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  text-decoration: none;
  color: #184ba1;
}

.mobile-menu li.menu-item-has-children .dropdown-toggler {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.2rem;
  margin-left: 0.5rem;
  cursor: pointer;
  pointer-events: auto;
  display: inline-block;
  transition: transform 0.3s ease;
}

.mobile-menu li.open .dropdown-toggler {
  transform: rotate(180deg);
}
.dropdown-toggle::after{
  content: "" !important;
}

/* Submenu styling */
.mobile-menu .sub-menu {
  display: none;
  list-style: none;
  padding-left: 2rem;
  margin-top: 0.5rem;
  margin-left: 0;
  background-color: #f5f8fe;
}

/* Show submenu when open */
.mobile-menu li.open > .sub-menu {
  display: block;
}

/* Submenu links */
.mobile-menu .sub-menu li a {
  font-weight: 400;
  color: #003366;
  padding: 0.25rem 0;
  display: block;
  text-decoration: none;
}

.mobile-menu a {
  font-weight: 400;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block; 
  color: #184ba1;
  font-size: clamp(16px, 3.5vw, 20px);
}

.mobile-menu a:hover,
.mobile-menu a[aria-current="page"],
.mobile-menu .current-menu-item > a {
  font-weight: 600; 
  color: #003366;
}

.mobile-menu > li {
  border-bottom: 1px solid #c7c7c7;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.site-search-form {
  border-radius: 4px;
  overflow: hidden;
  max-width: 100%;
  background-color: #fff;
}

.search-input {
  flex: 1;
 padding: 0.6rem !important;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: #184ba1;
  border: 1px solid #79a3ec !important;
  border-radius: 8px 0px 0px 8px !important;
}

.search-input::placeholder {
  color: #184ba1;
  opacity: 0.8;
  font-size: clamp(14px, 3.5vw, 18px);
}

.search-input:focus {
  background-color: #f5f9ff;
  color: #184ba1;
  box-shadow: 0 0 8px 2px rgba(24, 75, 161, 0.7);
  outline: none; 
}

.search-btn {
 background-color: #184ba1;
  border: none;
  padding: 0.85rem;
  color: #fff;
  border-radius: 0px 8px 8px 0px !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.search-btn:hover {
  background-color: #184ba1;
  color: #fff;
}


/* Home page design */

.heroimg {
  border-radius: 12px;
  box-shadow: 0 0.25rem 0.5rem rgba(24, 75, 161, 0.5); /* blue shadow */
}

.mayo-paragraph{
  font-weight: 600 !important;
  color: #184ba1 !important;
  font-size: clamp(15px,3vw,18px);
}

.mayo-profile ul{
  margin-left: 0.9rem;
}

.mayo-profile li::marker{
  color: #184ba1;
  font-size: clamp(10px,3.5vw,22px);
}


.mayo-profile li{
  color: #555555;
  font-weight: 600;
  font-size: clamp(13px,3vw,18px);
   margin-bottom: 0px; 
}

.mayo-button {
  position: relative;
  overflow: hidden;
  background-color: #184b81;
  color: #fff;
  border-radius: 20px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  font-size: clamp(14px, 16px, 20px);
  transition: background-color 0.1s ease;
  
}

.mayo-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: skewX(-20deg);
}
.mayo-button:hover{color: #fff;}

.mayo-button:hover::before {
  animation: shine 0.8s ease-in-out forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}


.starter{
  padding-top: 92px;
}

.breadcrumb-header{
background-color: #184ba1;
}

.page-title{
  color: #fff;
  font-weight: normal;
  font-size: clamp(17px,3vw,34px);
	margin:0;
}
.breadcrumb{margin-left: 0;}

.breadcrumb span, .breadcrumb a{
  color: #fff;
   font-size: clamp(16px,3vw,18px);
}
.breadcrumb a:hover{
  color: #f5b332;
}

.page .entry-title {
  display: none;
}

.search-results .page .entry-title {
  display: block !important;
}



.mediation-left-content {
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.2;
}

.mediation-image-container {
  padding: 1rem;
}



.mediation-image-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: end;
  text-align: center;
  padding: 1rem;
  padding-bottom: 6rem;
  border-radius: 8px;
  font-size:clamp(25px,3.5vw,36px);
  font-weight: bold;
  z-index: 2;
  pointer-events: none;
}



.entry-content h3 {
  color: #184ba1;
  font-size: clamp(15px, 3vw, 18px);
  font-weight: 600;
	margin-bottom:6px;
}

.entry-content p {
  margin-top: 0px;
  color: #555555;
  font-size: clamp(15px, 3vw, 18px);
	margin-bottom:10px;
}

.entry-content ul {
  margin-left: 1.5rem;
	margin-bottom:0;
}

.entry-content li::marker {
  color: #184ba1;
  font-size: clamp(16px, 3.5vw, 25px);
}

.entry-content li {
  color: #555555;
  font-size: clamp(16px, 3.5vw, 18px);
}


.accordion-button::before {
  content: "\f111"; /* Unicode for fa-circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  margin-right: 10px;
  color: #184ba1;
  font-size: clamp(1px, 2vw, 10px);
}

.accordion-button{
  color:#184ba1;
  font-size: clamp(15px, 3vw, 18px);
  font-weight: 600;
}

.accordion-body{
  color: #555555;
  font-size: clamp(16px, 3.5vw, 18px);
}

.accordion-body p{
  margin: 0;
}

.search-page h1{
  color: #184ba1;
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 600;
}

.search-page p{
  color: #555555;
  font-size: clamp(16px, 3.5vw, 18px);
}

.accordion-body ul{
  margin-left: 2.5rem;
}
.accordion-body li{
  text-decoration: none;
}

.close_btn{
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #184ba1;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
}
.close_btn i{
  font-size: clamp(16px, 3.5vw, 18px);
}
.close_btn:hover{
  background-color: #000;
  color: #fff;
  font-weight: 600;
}
.modal-body{
  border-radius: 20px !important;
  height: 58vh;
}
.mediation-image-container2 {
	display: flex;
  justify-content: center;
  align-items: center;
  }

  .mediation-image-container2 img {
	  
    object-fit: cover;
	  object-position: center bottom;
  }

.mediation-top-image{
	border-radius:8px;
}

.attorney-image {
  max-height: 537px;
  width: 100%;
  object-fit: cover;
  border-radius:30px;
}

.dre-no{
	color: #555555;
  font-size: clamp(16px, 3.5vw, 18px);
	font-weight:600;
}

.modal-body h2 {
  color: #184ba1;
  font-size: clamp(22px, 2.5vw, 28px); 
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 0.5rem;
}

.modal-body p {
  color: #555555;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

.modal-body ul {
  margin-left: 2rem;
  padding-left: 1rem;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.5;
  color: #555555;
}

.modal-body li {
  list-style-type: disc;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.modal-body li::marker{
  color: #184ba1;
  font-size: clamp(16px,20px,25px);
}

::-webkit-scrollbar {
  width: 10px;
  border-radius: 10px;
}
.modal-content {
  border-radius: 30px;
  overflow: hidden;
}

/* WebKit scrollbar styling */
::-webkit-scrollbar {
  width: 16px;
}

::-webkit-scrollbar-track {
  background: rgba(240, 240, 240, 0.5);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #184ba1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #0f3471;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #184ba1 rgba(240, 240, 240, 0.5);
}

/* Optional: prevent overlay on content */
.scrollable-content {
  padding-right: 1rem;
}








/* Footer design */

.footer-wrapper {
  background-color: #184ba1 !important;
}

/* Left: Logo and Name */
.footer-logo {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.footer-law {
  font-size: 0.875rem;
  font-weight: 400;
  display: block;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #ccc;
  margin-bottom: 0;
}

/* Middle: Contact */
.footer-office-label {
  font-size: clamp(17px, 20px, 25px);
  font-weight: 600;
  color: #fff;
  font-style:normal;
  margin-bottom: 0.75rem;
}
.footer-icon a {
  display: flex;
  align-items: center;
  gap: 8px; 
  text-decoration: none; 
  color: inherit; 
}
.footer-icon a:hover {
  color: #f5b332 !important;
  font-weight: normal !important;
}


.footer-icon i {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 17px;
  margin-right: 0.5rem;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff; 
}
.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
	margin-top:0;
}
.footer-map-iframe{
  border: none;
  border-radius: 0.8rem;
}
.footer-contact a{
  color: #fff;
}
.footer-contact a:hover{
  color: #184ba1;
  font-weight: 600;
}

.footer-address,
.footer-phone,
.footer-consulation{
  font-size: clamp(14px, 17px, 18px);
  margin-bottom: 0.05rem;
  color: #fff;
  font-weight:500;
}

/* Map */
.footer-map {
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}

.custom-map-frame {
  height:200px !important;
  width: 100%;
  height: auto;
  display: block;
}


/* Right: Images */
.footer-image {
	max-height: 350px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}

/* Bottom: Copyright */
.footer-bottom {
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.copyright ,.copyright a, .footer-bottom a{ 
  color: #4b4b4b;
  font-size: clamp(14px, 3.5vw, 18px);
  transition: all 0.3s ease-in-out;
}
.copyright a:hover, .footer-bottom a:hover{  
  color: #184ba1;
} 

.footer-link {
  color: #fff;
  text-decoration: none;
  margin: 0 0.25rem;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.footer-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.image-overlay-container {
  position: relative;
  display: inline-block;
}

.image-overlay-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7); /* white with opacity */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* let hover pass through when invisible */
  z-index: 10;
  border-radius: 1rem;
}

.image-overlay-container:hover .overlay {
  opacity: 1;
  pointer-events: auto; /* enable overlay interaction */
}

.overlay-logo {
  max-width: 50%;
  max-height: 50%;
  object-fit: contain;
}

.footer-image-desktop {
  display: block;
}

.footer-image-mobile {
  display: none;
}

/* On screens smaller than 480px, swap images */
@media (max-width: 480px) {
  .footer-image-desktop {
    display: none;
  }

  .footer-image-mobile {
    display: block;
  }
}


/* New */

.entry-content .para p {
  margin-top: 0px;
  color: #555555;
  font-size: clamp(15px, 3vw, 18px);
	margin-bottom:10px;
	line-height: 1.2;
}
.entry-content .para h3 {
  margin-top: 10px;
}
