﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.hover-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;  optional: aligns better with toggle 
}

.dropdown-menu a.active {
    font-weight: bold;
    background-color: #f8f9fa;
}
.card-body {
    background-color: rgba(255, 255, 255, 0.9); /* Soft white background */
    padding: 15px;
    border-radius: 0 0 10px 10px;
}

.card-text {
    color: #4E342E; /* Rich dark brown for better contrast */
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7); /* optional glow */
}
.dropdown-menu .dropdown-item:hover {
    background-color: #343a40; /* Slightly lighter dark */
    color: #fff !important;
}
.modal-content {
    border-radius: 1rem;
    background: url('/Images/modal-bg.jpg') center center no-repeat;
    background-size: cover;
    color: #fff;
}

.modal-header {
    border-bottom: none;
}

.modal-body .btn {
    font-weight: 600;
}
background: url('/Images/Header2.jpg') center center no-repeat;

.logo-header {
    padding: 10px 0;
    background-color: #fff;
}

.text-highlight {
    background: linear-gradient(90deg, #fff8e1, #ffe082);
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.logo-header .location-text {
    font-size: 1rem;
    color: #555;
}
.logo-img {
    height: 150px;
    width: auto;
    max-width: 100%;
}

/* Logo Header Background */
.logo-header {
    background: url('/Images/HeaderBG.jpg') center center no-repeat;
    background-size: cover;
    padding: 20px 0;
    position: relative;
}

    .logo-header .logo-img {
        height: 150px;
        width: auto;
    }

/* Reduced Navbar Height */
.navbar-custom {
    background: url('/Images/Header2.jpg') center center no-repeat;
    background-size: cover;
    height: 60px !important; /* 🔥 Force it */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex;
    align-items: center; /* ✅ Vertically center contents */
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

    .navbar-custom .nav-link {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
        font-size: 0.95rem;
    }



    .navbar-custom .navbar-brand img {
        height: 40px;
    }


.navbar-content {
    position: relative;
    z-index: 1;
}

/* Hero Banner Styles */
.about-hero {
    background: url('/Images/Aboutus-bg.jpg') center center no-repeat;
    background-size: cover;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

    .about-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 0;
    }

    .about-hero h1 {
        position: relative;
        z-index: 1;
        font-size: 3rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
        margin-bottom: 0;
    }

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
}
.text-bg-wrapper {
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto 2rem;
}

