.navbar {
    background-color: rgb(189, 210, 230);
}


.nav-link-btn a{
    color: rgb(56, 82, 106);
    text-decoration: none;
}

.nav-link-btn:hover,
.nav-link-btn:focus{
    color: #7d2c2c;
    text-decoration: none;
}

/* menu background (optional) /
.dropdown-menu.bg-nav-custom {
    background-color: rgb(74, 104, 133);
}

/ item background + text /
.dropdown-menu.bg-nav-custom .dropdown-item {
    background-color: rgb(74, 104, 133); / your custom item bg /
    color: #fff;
}

/ hover / focus */
.dropdown-menu.bg-nav-custom .dropdown-item:hover,
.dropdown-menu.bg-nav-custom .dropdown-item:focus {
    background-color: rgb(56, 82, 106);
    color: #fff;
}

.btn-login {
    background: linear-gradient(135deg, #7d2c2c, #a76464);
    color: rgb(255, 255, 255); 
    font-weight: 600; 
    border: none;
    border-radius: 25px;
    padding: 8px 20px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-login:hover {
    background: linear-gradient(135deg, #a76464, #7d2c2c); 
    box-shadow: 0 6px 12px rgb(255, 255, 255); 
    color: #fff;
}


.btn-custom {
    background: linear-gradient(135deg, rgb(56, 82, 106), rgb(119, 174, 225));
    color: white; 
    font-weight: 600; 
    border: none;
    border-radius: 25px;
    padding: 8px 20px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-custom:hover {
    background: linear-gradient(135deg, rgb(119, 174, 225), rgb(56, 82, 106)); 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); 
}

.bell-icon {
    width: 23px;
    height: 23px;
}

.firstContent {
    text-align: center;
    background-color: rgb(234, 240, 247);
    padding: 100px 20px;
}


.carousel-img{
    height: 550px;
    object-fit: cover;
    object-position: 50% 30%;
}


.aboutSec2{
    text-align: center;
    padding: 100px 20px;
    background-color: rgb(234, 240, 247);
}


.searchBar {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}


.stat-card {
  background:#fff;
  border-radius:12px;
  padding:15px;
  text-align:center;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.report-box {
  background:#fff;
  border-radius:16px;
  padding:25px;
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
}


/* Hero Section */
.hero-section {
    background:rgb(56, 82, 106);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
}

.cms-custom {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-title {
  font-weight: 600;
}

.card-text {
  letter-spacing: 0.3px;
}

.aboutSec .card-img-top {
  height: 230px;
  object-fit: cover;
}

/* Floating Chat Button */
#chatBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    background-color: #7d2c2c; /* custom color */
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#chatBtn:hover {
    transform: scale(1.1);
    background-color: #a03a3a;
}

/* Chat Modal Custom Animation */
.modal.fade .modal-dialog {
    transform: translateY(100%); /* start below screen */
    transition: transform 0.3s ease-out;
}

.modal.fade.show .modal-dialog {
    transform: translateY(0); /* slide up */
}

/* Modal Custom Width */
.chat-modal {
    width: 350px;
    max-width: 90vw;
}

/* Header & Send Button Colors */
.bg-custom {
    background-color: #7d2c2c;
}

.btn-custom {
    background-color: #7d2c2c;
    color: #fff;
    border: none;
    transition: background-color 0.2s;
}

.btn-custom:hover {
    background-color: #a03a3a;
}

/* Route status update */

#map {
    height: 400px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.card-title {
    font-weight: 600;
    font-size: 1rem;
}
.card-text {
    font-size: 0.9rem;
}
#statusFilter {
    min-width: 180px;
}
.card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
     cursor: pointer;
}




