:root{
  --ch-blue: #1F497D;
  --ch-navy: #16325C;
  --ch-skyblue: #4A6FA5;
  --ch-darkgray: #333333;
  --ch-mediumgray: #666666;
  --ch-lightgray: #F1F1F1;
  --ch-silver: #E0E0E0;
  --ch-brickred: #8E0000;
  --ch-deepred: #B71C1C;
}

/* ==================== TEXT COLORS ==================== */
.text-blue {
  color: var(--ch-blue) !important;
}
.text-navy {
  color: var(--ch-navy) !important;
} 
.text-skyblue {
  color: var(--ch-skyblue) !important;
}
.text-darkgray {
  color: var(--ch-darkgray) !important;
}
.text-mediumgray {
  color: var(--ch-mediumgray) !important;
}
.text-lightgray {
  color: var(--ch-lightgray) !important;
}
.text-silver {
  color: var(--ch-silver) !important;
}

/* ==================== BACKGROUND COLORS ==================== */
.bg-blue {
  background-color: var(--ch-blue) !important;
} 
.bg-navy {
  background-color: var(--ch-navy) !important;
}
.bg-skyblue {
  background-color: var(--ch-skyblue) !important;
}
.bg-darkgray {
  background-color: var(--ch-darkgray) !important;
}
.bg-mediumgray {
  background-color: var(--ch-mediumgray) !important;
}
.bg-lightgray {
  background-color: var(--ch-lightgray) !important;
}
.bg-silver {
  background-color: var(--ch-silver)!important;
}

/* ==================== PLACEHOLDERS ==================== */
.lazy-portrait {
  background: url('../images/placeholder.jpg') center center no-repeat;
  background-size: cover;  
  min-width: 180px; 
  min-height: 180px;   
}

/* ==================== FONTS ==================== */
@font-face {
  font-family: 'ch-font-bold';
  src: url('../fonts/LeagueSpartan-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ch-font-regular';
  src: url('../fonts/LeagueSpartan-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.ch-font1 {
  font-family: 'ch-font-bold', serif;
}

.ch-font2 {
  font-family: 'ch-font-regular', serif;
}

/* ==================== NavBar ==================== */
.custom-toggler {
  border: none;
  outline: none;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar .nav-link {
  position: relative;
  color: #fff !important;
  padding-bottom: 2px; 
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #E0E0E0; 
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after,
.navbar .nav-link.active::after {
  width: 100%;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: #E0E0E0 !important;
}

.logo {
  width: 120px;
  height: auto;
  margin-left: 32px; 
  margin-top: 3px;
  display: block;
}

/* ==================== Hero ==================== */

.hero-section {
  position: relative;
  height: 90vh;
  color: #fff;
  overflow: hidden;
  display: flex;
  z-index: 1;
}

.hero-section img.hero-img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  object-position: center;
}

.hero-section1 {
  position: relative;
  height: 65vh;
  width: 100vw;              
  max-width: 100% !important;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: block;            
  color: #fff;
  z-index: 1;
}

.hero-section1 img.hero-img1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;            
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); 
  z-index: 1;
}

/* ==================== Buttons ==================== */

.ch-btn {
  background-color: #B71C1C;  
  color: #fff;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.ch-btn:hover {
  background-color: #8E0000; 
}

/* ==================== Services Section ==================== */

.service-block .card {
  border-radius: 0.75rem;
  background-color: var(--ch-lightgray);
}

.service-img {
  min-height: 260px;
  object-fit: cover;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 22px;
}

.service-check-icon {
  width: 26px;
  height: 26px;
  margin-top: 2px;
  flex-shrink: 0;
}


@media (max-width: 767.98px) {
  .service-img {
    min-height: 200px;
  }
}

/* ==================== Contact Cards ==================== */
.contact-card {
  padding: 1.75rem 1.5rem;
  border-radius: 0.75rem;
  background-color: #fff; 
}

.contact-card h5 {
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.contact-card p {
  font-size: 0.96rem;
  line-height: 1.5;
}

.contact-label {
  font-weight: 600;
}


.btn-custom {
  --bs-btn-color: #fff;
  --bs-btn-bg: #B71C1C;
  --bs-btn-border-color: #B71C1C;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #B71C1C;
  --bs-btn-hover-border-color: #B71C1C;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #B71C1C;
  --bs-btn-active-bg: #B71C1C;
  --bs-btn-active-border-color: #B71C1C;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #B71C1C;
  --bs-btn-disabled-border-color: #B71C1C;
}
.text-red {
  color: #cc0000;
}
.myday {
  width: calc(100% / 7);
  border: 0px solid #CCCCCC;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  transform: scale(0.95);
}
.mydaydisable {
  width: calc(100% / 7);
  border: 0px solid #CCCCCC;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  transform: scale(0.95);
  background-color: #E9EAEB;
}