/* ==========================================
   FRONT PAGE STYLES (front-page.css)
   ========================================== */

/* Hero Slider Options */
.hero-slider-item {
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.4));
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
}

/* Feature Icon Cards Section */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

/* ==========================================
   QUICK INFO STRIP STYLES (front-page.css)
   ========================================== */

.quick-info-strip {
    z-index: 10;
}

/* Rounded Icon Box Container */
.info-icon-box {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Border dividers between columns on large desktop screens */
@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid #e2e8f0 !important;
    }
}

/* Optional: Overlap Slider Effect (Pull bar slightly over the hero slider) */
@media (min-width: 768px) {
    .quick-info-strip {
        margin-top: -30px;
        border-radius: 0.75rem;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
}
/* ==========================================
   FRONT PAGE INTRO SECTION STYLES
   ========================================== */

.intro-check-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.experience-badge {
    bottom: -20px !important;
    border: 4px solid #ffffff;
}

.tracking-wider {
    letter-spacing: 0.08em;
}

/* ==========================================
   BOOTSTRAP CAROUSEL NOTICES (front-page.css)
   ========================================== */

/* Notice Item Hover Effects */
#noticeCarousel .list-group-item {
    transition: background-color 0.2s ease;
}

#noticeCarousel .list-group-item:hover {
    background-color: #f8f9fa;
}

#noticeCarousel .notice-title {
    transition: color 0.2s ease;
}

#noticeCarousel .list-group-item:hover .notice-title {
    color: #0d6efd !important;
}

/* ==========================================
   PRINCIPAL MESSAGE SECTION (front-page.css)
   ========================================== */

.principal-message-section {
    z-index: 1;
}

/* Image Wrapper & Offset Frame Effect */
.principal-img-wrapper {
    max-width: 440px;
}

.principal-img-wrapper img {
    max-height: 500px;
}

.principal-img-frame {
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Decorative Large Quote Icon */
.quote-icon {
    font-size: 3.5rem;
    line-height: 1;
}

/* Signature Styling Placeholder */
.font-signature {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    color: #0d6efd;
}

.leading-relaxed {
    line-height: 1.7;
}

/* Responsive adjustment for image frame */
@media (max-width: 767.98px) {
    .principal-img-frame {
        top: -10px;
        left: -10px;
    }
}
/* ==========================================
   EVENTS SECTION STYLES (front-page.css)
   ========================================== */

/* Card Container & Lift Hover Effect */
.event-card {
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1) !important;
}

/* Image Zoom & Aspect Ratio */
.event-img-wrapper {
  height: 220px;
}

.event-card-img {
  height: 100%;
  transition: transform 0.4s ease;
}

.event-card:hover .event-card-img {
  transform: scale(1.05);
}

/* Date Badge Styles */
.event-date-badge {
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.leading-none {
  line-height: 1;
}

.extra-small {
  font-size: 0.7rem;
  line-height: 1;
}

/* Title Hover Link Color */
.event-title-link {
  transition: color 0.2s ease;
}

.event-card:hover .event-title-link {
  color: #0d6efd !important;
}

/* 3-Line Text Truncation */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
/* ==========================================
   STATS SECTION STYLES (front-page.css)
   ========================================== */

.stats-section {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

/* Glassmorphism Card Effect */
.stat-card {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.18) !important;
}

/* Icon Container Animation */
.stat-icon-wrapper {
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon-wrapper {
  transform: scale(1.1);
}

/* Typography Utilities */
.leading-none {
  line-height: 1;
}

.extra-small {
  font-size: 0.725rem;
  letter-spacing: 0.5px;
}
/* ==========================================
   REACH US SECTION STYLES (front-page.css)
   ========================================== */

/* Map Box Height Control */
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* Contact Icon Box */
.contact-icon {
  width: 46px;
  height: 46px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-info-card:hover .contact-icon {
  transform: scale(1.05);
}

/* Interactive Phone/Email Links */
.contact-link {
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #0d6efd !important;
  text-decoration: underline !important;
}

/* Responsive adjustment for iframe height on mobile */
@media (max-width: 991.98px) {
  .map-wrapper iframe {
    min-height: 300px;
  }
}
/* ==========================================
   FACILITIES SECTION STYLES (front-page.css)
   ========================================== */

.facility-card {
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
              border-color 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Hover Lift & Color Shift */
.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(13, 110, 253, 0.08) !important;
  border-color: rgba(13, 110, 253, 0.2) !important;
}

/* Icon Box Transition */
.facility-icon-box {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.facility-card:hover .facility-icon-box {
  background-color: #0d6efd !important;
  color: #ffffff !important;
  transform: scale(1.05);
}